:root {
  --blue: #34349b;
  --blue-dark: #20206d;
  --blue-soft: #eeefff;
  --green: #009d52;
  --green-dark: #00783f;
  --green-soft: #eaf8f1;
  --wood: #b97a3d;
  --wood-light: #e3b476;
  --ink: #22242a;
  --muted: #62656f;
  --line: #e7e8ec;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --shadow-sm: 0 10px 30px rgba(26, 29, 57, 0.08);
  --shadow-md: 0 20px 60px rgba(20, 24, 61, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.12;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(52, 52, 155, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(26, 29, 57, 0.1);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 245px;
  height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #3a3d47;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 99px;
  background: var(--green);
  content: "";
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 8px 20px rgba(0, 157, 82, 0.22);
}

.nav-cta:hover {
  background: var(--green-dark);
}

.nav-cta svg {
  width: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin-block: 4px;
  border-radius: 99px;
  background: var(--blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(22, 24, 54, 0.96) 0%, rgba(31, 32, 81, 0.83) 45%, rgba(31, 32, 81, 0.36) 100%),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=88");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.12), transparent 21%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 16px);
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(15, 17, 48, 0.42));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: 72px;
  padding-block: 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.hero .eyebrow,
.products .eyebrow,
.steps .eyebrow {
  color: #7ef0af;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero-copy h1 strong {
  position: relative;
  color: #8cf2b8;
  font-weight: 800;
}

.hero-copy h1 strong::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 8px;
  opacity: 0.75;
  border-radius: 99px;
  background: var(--green);
  content: "";
}

.hero-copy > p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 157, 82, 0.28);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 35px rgba(0, 157, 82, 0.32);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-accent {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(52, 52, 155, 0.25);
}

.button-accent:hover {
  background: var(--blue-dark);
}

.button-full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  list-style: none;
}

.hero-trust li {
  display: flex;
  max-width: 180px;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  line-height: 1.3;
}

.hero-trust svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #7ef0af;
}

.hero-trust b {
  display: block;
  color: var(--white);
}

.quote-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.quote-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.quote-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
}

.quote-icon svg {
  width: 26px;
}

.quote-card-head span:not(.quote-icon) {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card h2 {
  margin-top: 2px;
  font-size: 1.65rem;
}

.quote-card form {
  display: grid;
  gap: 16px;
}

.quote-card label {
  color: #363942;
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-card input,
.quote-card select {
  width: 100%;
  height: 52px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid #dfe1e8;
  outline: 0;
  border-radius: 12px;
  color: var(--ink);
  background: #fafbfc;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quote-card input:focus,
.quote-card select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(52, 52, 155, 0.1);
}

.quote-card small {
  color: var(--muted);
  text-align: center;
}

section {
  position: relative;
}

.section-light {
  padding-block: 100px;
  background: var(--off-white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--white);
}

.section-heading-light p {
  opacity: 0.75;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 157, 82, 0.4);
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  color: var(--green);
  background: var(--green-soft);
}

.icon-box svg {
  width: 29px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.products {
  overflow: hidden;
  padding-block: 105px;
  background:
    radial-gradient(circle at 90% 5%, rgba(0, 157, 82, 0.22), transparent 25%),
    radial-gradient(circle at 0% 100%, rgba(52, 52, 155, 0.25), transparent 25%),
    var(--blue-dark);
}

.products::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 28px);
  content: "";
}

.products .container {
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.24);
}

.product-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #d9d9d9;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-content {
  min-height: 170px;
  padding: 22px;
  background: var(--white);
}

.product-content h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1rem;
}

.product-content p {
  color: var(--muted);
  font-size: 0.87rem;
}

.product-content h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1rem;
}

.product-content p {
  color: var(--muted);
  font-size: 0.87rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.dream {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.dream-photo {
  min-height: 620px;
  background-image:
    linear-gradient(0deg, rgba(17, 25, 55, 0.1), rgba(17, 25, 55, 0.1)),
    url("https://images.unsplash.com/photo-1517581177682-a085bb7ffb15?auto=format&fit=crop&w=1400&q=88");
  background-position: center;
  background-size: cover;
}

.dream-copy {
  display: flex;
  align-items: center;
  padding: 70px 7vw;
}

.dream-copy-inner {
  max-width: 580px;
}

.dream h2 {
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
}

.dream p {
  margin-bottom: 16px;
  color: var(--muted);
}

.dream .button {
  margin-top: 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.why-item {
  position: relative;
  min-height: 300px;
  padding: 32px;
  background: var(--white);
}

.why-item > span {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(52, 52, 155, 0.08);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.why-item > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--green);
}

.why-item h3 {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  overflow: hidden;
  padding-block: 105px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0,157,82,0.12), transparent 45%),
    var(--blue);
}

.steps::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 75px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  content: "";
}

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 290px;
  padding: 32px 26px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #8cf2b8;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.step-card > svg {
  width: 44px;
  height: 44px;
  margin-bottom: 46px;
  color: #8cf2b8;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.step-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.faq-cta {
  padding-block: 105px;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: start;
  gap: 70px;
}

.faq > h2,
.final-card h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 3.7vw, 3rem);
  letter-spacing: -0.035em;
}

.accordion {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button svg {
  width: 20px;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.faq-item.open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: padding 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 20px 20px;
}

.final-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.final-card::before {
  position: absolute;
  top: -90px;
  right: -85px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--blue-soft);
  content: "";
}

.final-card-badge {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--green));
}

.final-card-badge svg {
  width: 32px;
}

.final-card p {
  margin: 20px 0 28px;
  color: var(--muted);
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.phone-link svg {
  width: 20px;
}

.site-footer {
  padding-top: 68px;
  color: rgba(255,255,255,0.78);
  background: #17184f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-logo-box {
  display: inline-block;
  max-width: 330px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--white);
}

.footer-logo-box img {
  width: 285px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-contact > span,
.footer-links > span {
  margin-bottom: 8px;
  color: #8cf2b8;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-contact svg {
  color: #8cf2b8;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
}

.footer-bottom svg {
  width: 17px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 35px rgba(0, 94, 49, 0.35);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  background: var(--green-dark);
}

.floating-whatsapp svg {
  width: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --header-height: 76px; }

  .brand img {
    width: 205px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding-inline: 20px;
    opacity: 0;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 40px rgba(20, 24, 61, 0.12);
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  .main-nav.open {
    max-height: 520px;
    padding-block: 16px 24px;
    opacity: 1;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .nav-cta {
    margin-top: 14px;
    border-bottom: 0;
  }

  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 35px;
  }

  .benefits-grid,
  .products-grid,
  .why-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-cta-grid {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(22, 24, 70, 0.94) 0%, rgba(26, 28, 78, 0.89) 100%),
      url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=84");
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 74px;
  }

  .hero-copy h1 {
    max-width: 670px;
  }

  .quote-card {
    max-width: 600px;
  }

  .dream {
    grid-template-columns: 1fr;
  }

  .dream-photo {
    min-height: 440px;
  }

  .dream-copy {
    padding: 70px 30px;
  }

  .dream-copy-inner {
    max-width: 720px;
  }

  .faq-cta-grid {
    grid-template-columns: 1fr;
  }

  .final-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root { --header-height: 70px; }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 180px;
    height: 54px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .hero-grid {
    padding-block: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-trust li {
    max-width: none;
  }

  .quote-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .section-light,
  .products,
  .steps,
  .faq-cta {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .benefits-grid,
  .products-grid,
  .why-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .why-item,
  .step-card {
    min-height: auto;
  }

  .product-visual {
    height: 138px;
  }

  .product-content {
    min-height: auto;
  }

  .dream-photo {
    min-height: 340px;
  }

  .dream-copy {
    padding: 60px 18px;
  }

  .final-card {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo-box {
    max-width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}
