/* ============================================================
   RESET + TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #FFFFFF;
  --bg-soft:     #F4F8ED;
  --bg-softer:   #FAFCF5;
  --ink:         #1B3221;
  --ink-soft:    #4A5F4E;
  --ink-faint:   #667A6A;
  --brand:       #5AA24B;
  --brand-deep:  #2E6B34;
  --brand-lite:  #E9F2DE;
  --accent:        #9AD175;
  --line:        rgba(27, 50, 33, 0.12);
  --line-soft:   rgba(27, 50, 33, 0.07);

  /* every stop stays >=4.5:1 against the white button label */
  --grad-cta:    linear-gradient(123deg, #1B3F22 7%, #2E6B34 37%, #35763A 72%, #3B7F3C 100%);
  --grad-head:   linear-gradient(180deg, #1B3221 0%, #5AA24B 100%);
  --grad-head-d: linear-gradient(180deg, #FFFFFF 0%, #C0E39F 100%);

  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --header-h:    76px;
  --radius-xl:   clamp(28px, 4vw, 60px);
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
html, body { background: var(--bg); }

body {
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }

/* ============================================================
   TYPE
   ============================================================ */
.display {
  font-family: 'Unbounded', 'Manrope', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.grad-text {
  background: var(--grad-head);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.on-dark .grad-text { background: var(--grad-head-d); -webkit-background-clip: text; background-clip: text; }

.eyebrow {
  font-size: clamp(0.66rem, 1.1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  /* deep green, not --brand: at 12.8px the vivid green only reaches 3.3:1 on white */
  color: var(--brand-deep);
}
.section-title { font-size: clamp(1.9rem, 5.2vw, 4rem); }
.section-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.section { padding-block: clamp(64px, 9vw, 130px); }
.section--soft { background: var(--bg-soft); }
.section--round-top { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(0.72rem, 1.05vw, 0.85rem);
  padding: 15px clamp(22px, 3vw, 34px);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
  white-space: nowrap;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:not(:disabled):hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

/* primary — gradient pill, per spec: inner shadows + offset outline */
.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 4px rgba(46, 107, 52, .25), 4px 4px 12px #5AA24B inset;
  outline: 2px solid #fff;
  outline-offset: -3px;
}
.btn--primary:not(:disabled):hover { box-shadow: 0 10px 26px rgba(90, 162, 75, .38), 4px 4px 12px #5AA24B inset; }

/* ghost — outline pill */
.btn--ghost { border: 2px solid var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--brand-lite); border-color: var(--brand); color: var(--brand-deep); }

.on-dark .btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.on-dark .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.btn .arr { font-size: 1.05em; line-height: 1; transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translate(2px, -2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line-soft); box-shadow: 0 6px 24px rgba(27,50,33,.06); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; gap: clamp(12px, 2.5vw, 32px); }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo__text { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 0.95rem; letter-spacing: -0.01em; color: var(--ink); text-transform: uppercase; line-height: 1; }
.logo__text span { display: block; font-family: 'Manrope', sans-serif; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.18em; color: var(--ink-faint); margin-top: 3px; }

.nav { display: flex; gap: clamp(14px, 2vw, 28px); margin-inline: auto; }
.nav a {
  font-size: 0.86rem; font-weight: 600; color: var(--ink-soft);
  padding: 6px 2px; position: relative; transition: color .2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--brand); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--brand-deep); }
.nav a:hover::after { width: 100%; }

.header-contact { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.header-contact .hours { font-size: 0.68rem; color: var(--ink-faint); font-weight: 600; }
.header-contact .tel { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); white-space: nowrap; }
.header-contact .tel:hover { color: var(--brand); }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); transition: transform .25s var(--ease); }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px clamp(16px, 4vw, 40px) 20px;
  border-top: 1px solid var(--line-soft); background: #fff;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow-x: clip; padding-block: clamp(36px, 5vw, 70px) clamp(48px, 6vw, 90px); }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 130%;
  background:
    radial-gradient(58% 46% at 78% 18%, rgba(90,162,75,.14), transparent 68%),
    radial-gradient(46% 40% at 8% 4%, rgba(111,175,95,.18), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

/* full-bleed display heading, then text + art in a row beneath */
.hero h1 { font-size: clamp(1.7rem, 7.1vw, 5.5rem); margin-block: 14px 0; }
.hero-lower {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(24px, 3.5vw, 56px); align-items: center; margin-top: clamp(22px, 3vw, 40px);
}
.hero-sub { font-size: clamp(0.98rem, 1.5vw, 1.2rem); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 9px 16px 9px 12px; font-size: 0.8rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 2px 10px rgba(27,50,33,.05);
}
.chip svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; }

.hero-geo { margin-top: 26px; font-size: 0.82rem; color: var(--ink-faint); font-weight: 600; }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art__inner { width: 100%; max-width: 560px; will-change: transform; }

/* floating badge on the illustration */
.hero-badge {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 16px; padding: 11px 15px;
  box-shadow: 0 12px 34px rgba(27,50,33,.14); border: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 10px;
  animation: float 5.5s ease-in-out infinite;
}
.hero-badge b { font-family: 'Unbounded', sans-serif; font-size: 1.05rem; color: var(--ink); display: block; line-height: 1; }
.hero-badge small { font-size: 0.66rem; color: var(--ink-faint); font-weight: 600; }
.hero-badge svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }
.hero-badge--a { top: 6%; right: -2%; }
.hero-badge--b { bottom: 8%; left: -4%; animation-delay: -2.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { border-block: 1px solid var(--line-soft); background: var(--bg-softer); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(22px, 3.4vw, 40px) clamp(12px, 2vw, 26px); text-align: center; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(1.9rem, 4.6vw, 3.3rem); line-height: 1; color: var(--brand-deep); }
.stat span { display: block; margin-top: 9px; font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.stat small { display: block; font-size: 0.74rem; color: var(--ink-faint); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-head { text-align: center; display: grid; gap: 14px; justify-items: center; margin-bottom: clamp(34px, 5vw, 62px); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.bcard {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 22px;
  padding: clamp(20px, 2.6vw, 30px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.bcard:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(27,50,33,.09); border-color: rgba(90,162,75,.3); }
.bcard__ico {
  width: 50px; height: 50px; border-radius: 15px; background: var(--brand-lite);
  display: grid; place-items: center; margin-bottom: 16px;
}
.bcard__ico svg { width: 25px; height: 25px; color: var(--brand-deep); }
.bcard h3 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; line-height: 1.25; }
.bcard p { font-size: 0.88rem; }

/* ============================================================
   SOLUTIONS — sticky stacking cards
   ============================================================ */
.solutions-head { display: grid; gap: 16px; max-width: 780px; margin-bottom: clamp(30px, 4vw, 54px); }

/* char-by-char scroll reveal */
.animated-text span { transition: opacity .12s linear; }

.stack { position: relative; }
.stack-slot { height: 78vh; min-height: 470px; }
.stack-sticky { position: sticky; top: calc(var(--header-h) + 24px + var(--i) * 26px); }
.stack-card {
  background: #fff; border: 2px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 42px);
  transform-origin: top center; will-change: transform;
  box-shadow: 0 24px 60px rgba(27,50,33,.10);
  display: grid; gap: clamp(18px, 2.4vw, 30px);
}
.stack-card__top { display: flex; align-items: flex-start; gap: clamp(14px, 2.4vw, 30px); flex-wrap: wrap; }
.stack-card__num {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6rem); line-height: .82;
  color: transparent; -webkit-text-stroke: 2px rgba(90,162,75,.35);
  flex-shrink: 0;
}
.stack-card__body { flex: 1 1 320px; min-width: 0; }
.stack-card__body .eyebrow { margin-bottom: 8px; display: block; }
.stack-card__body h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 2rem); color: var(--ink); line-height: 1.15; margin-bottom: 10px; }
.stack-card__body p { font-size: clamp(0.9rem, 1.3vw, 1.05rem); max-width: 58ch; }
.stack-card__cta { margin-left: auto; align-self: center; }

.stack-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.76rem; font-weight: 600; color: var(--brand-deep);
  background: var(--brand-lite); border-radius: 999px; padding: 7px 14px;
}

/* ============================================================
   MARQUEE — scroll-driven rows
   ============================================================ */
.marquee { padding-block: clamp(40px, 6vw, 80px); overflow: hidden; }
.marquee-head { text-align: center; display: grid; gap: 12px; justify-items: center; margin-bottom: clamp(26px, 3.6vw, 46px); }
.marquee-rows { display: grid; gap: 14px; }
.marquee-row { display: flex; gap: 14px; will-change: transform; width: max-content; }
.tile {
  width: clamp(210px, 25vw, 300px); height: clamp(126px, 15vw, 180px);
  border-radius: 22px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line-soft);
  padding: 18px 20px; display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .25s var(--ease);
}
.tile:hover { border-color: rgba(90,162,75,.4); }
.tile svg { width: 34px; height: 34px; color: var(--brand); opacity: .75; }
.tile b { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: clamp(0.95rem, 1.6vw, 1.25rem); color: var(--ink); display: block; }
.tile span { font-size: 0.76rem; color: var(--ink-faint); font-weight: 600; }

.marquee-note { text-align: center; margin-top: clamp(26px, 3.4vw, 44px); font-size: 0.88rem; color: var(--ink-faint); }

/* ============================================================
   OFFER
   ============================================================ */
.offer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(26px, 4vw, 56px); align-items: center; }
.offer-cards { display: grid; gap: 12px; }
.ocard {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 20px;
  padding: clamp(16px, 2.2vw, 24px);
}
.ocard__val {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1;
  background: var(--grad-cta); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  flex-shrink: 0; min-width: clamp(64px, 8vw, 108px);
}
.ocard b { display: block; color: var(--ink); font-size: 0.98rem; font-weight: 700; line-height: 1.3; }
.ocard span { font-size: 0.83rem; }

/* ============================================================
   QUIZ
   ============================================================ */
.quiz-head { text-align: center; display: grid; gap: 14px; justify-items: center; margin-bottom: clamp(28px, 4vw, 48px); }

.timer { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.timer__label { font-size: 0.78rem; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .12em; }
.timer__units { display: flex; gap: 7px; }
.tunit {
  background: var(--ink); color: #fff; border-radius: 12px;
  padding: 8px 11px; text-align: center; min-width: 54px;
}
.tunit b { display: block; font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.15rem; line-height: 1; font-variant-numeric: tabular-nums; }
.tunit span { display: block; font-size: 0.6rem; opacity: .62; margin-top: 3px; text-transform: uppercase; letter-spacing: .06em; }

.quiz-shell { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(16px, 2.4vw, 28px); align-items: start; }

.quiz-box {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-xl);
  padding: clamp(22px, 3.2vw, 44px); box-shadow: 0 22px 60px rgba(27,50,33,.09);
}
.quiz-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.quiz-progress__bar { flex: 1; height: 6px; border-radius: 999px; background: var(--brand-lite); overflow: hidden; }
.quiz-progress__fill { height: 100%; width: 0%; border-radius: 999px; background: var(--grad-cta); transition: width .45s var(--ease); }
.quiz-progress__num { font-size: 0.76rem; font-weight: 700; color: var(--ink-faint); white-space: nowrap; }

.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: stepIn .4s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.quiz-step h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: clamp(1.15rem, 2.3vw, 1.7rem); color: var(--ink); line-height: 1.2; margin-bottom: 20px; }

.quiz-opts { display: grid; gap: 10px; }
.qopt {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%;
  text-align: left; border: 2px solid var(--line-soft); border-radius: 16px;
  padding: 16px 18px; font-weight: 600; color: var(--ink);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}
.qopt:hover { border-color: var(--brand); background: var(--brand-lite); transform: translateX(4px); }
.qopt.is-picked { border-color: var(--brand); background: var(--brand-lite); }
.qopt .arr { color: var(--brand); font-size: 1.1rem; }
.qopt:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

.quiz-nav { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.quiz-back {
  font-size: 0.82rem; font-weight: 700; color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 2px;
}
.quiz-back:hover { color: var(--brand); }
.quiz-back[hidden] { display: none; }

/* final form step */
.quiz-form { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.field label em { font-style: normal; color: var(--ink-faint); font-weight: 600; }
.field input {
  border: 2px solid var(--line-soft); border-radius: 14px; padding: 14px 16px;
  background: var(--bg-softer); transition: border-color .2s var(--ease), background-color .2s var(--ease);
  width: 100%;
}
.field input:focus { outline: none; border-color: var(--brand); background: #fff; }
.field input[aria-invalid="true"] { border-color: #D64545; background: #FEF3F3; }
.field .err { font-size: 0.74rem; color: #D64545; font-weight: 600; }
.field .err[hidden] { display: none; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.8rem; line-height: 1.45; cursor: pointer; }
.consent input { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; accent-color: var(--brand); cursor: pointer; }

.quiz-summary {
  background: var(--bg-softer); border: 1px dashed var(--line); border-radius: 16px;
  padding: 15px 17px; display: grid; gap: 7px;
}
.quiz-summary b { font-size: 0.76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); }
.quiz-summary li { font-size: 0.84rem; color: var(--ink); display: flex; gap: 8px; }
.quiz-summary li::before { content: '—'; color: var(--brand); }

/* success */
.quiz-done { display: none; text-align: center; padding: clamp(16px, 3vw, 34px) 0; }
.quiz-done.is-active { display: block; animation: stepIn .45s var(--ease) both; }
.quiz-done__ico { width: 70px; height: 70px; border-radius: 50%; background: var(--brand-lite); display: grid; place-items: center; margin: 0 auto 20px; }
.quiz-done__ico svg { width: 34px; height: 34px; color: var(--brand-deep); }
.quiz-done h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: clamp(1.2rem, 2.4vw, 1.8rem); color: var(--ink); margin-bottom: 10px; }

/* quiz side panel */
.quiz-aside {
  background: var(--ink); color: rgba(255,255,255,.72); border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 36px); display: grid; gap: 18px;
  position: relative; overflow: hidden;
}
.quiz-aside::before {
  content: ''; position: absolute; inset: auto -30% -45% -10%; height: 70%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(90,162,75,.5), transparent 70%);
  pointer-events: none;
}
.quiz-aside > * { position: relative; }
.quiz-aside h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; line-height: 1.25; }
.quiz-aside ul { display: grid; gap: 11px; }
.quiz-aside li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.88rem; }
.quiz-aside li svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.quiz-aside .divider { height: 1px; background: rgba(255,255,255,.14); }
.quiz-aside .tel-big { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.2rem; color: #fff; }
.quiz-aside .tel-big:hover { color: var(--accent); }

/* ============================================================
   STEPS
   ============================================================ */
.steps-head { text-align: center; display: grid; gap: 14px; justify-items: center; margin-bottom: clamp(30px, 4.6vw, 60px); }
.steps-list { max-width: 1020px; margin-inline: auto; }
.step-row {
  display: flex; align-items: flex-start; gap: clamp(16px, 3vw, 44px);
  padding-block: clamp(22px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-row__num {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5.5rem); line-height: .8; color: var(--ink);
  flex-shrink: 0; min-width: clamp(64px, 9vw, 150px);
}
.step-row__txt h3 {
  font-family: 'Unbounded', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: clamp(0.95rem, 2vw, 1.5rem); color: var(--ink); line-height: 1.2; margin-bottom: 9px;
}
.step-row__txt p { font-size: clamp(0.86rem, 1.4vw, 1.05rem); max-width: 60ch; opacity: .78; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(26px, 4vw, 56px); align-items: start; }
.faq-side { display: grid; gap: 16px; justify-items: start; position: sticky; top: calc(var(--header-h) + 28px); }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; transition: border-color .25s var(--ease); }
.faq-item.is-open { border-color: rgba(90,162,75,.35); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(15px, 2vw, 22px) clamp(16px, 2.2vw, 26px); text-align: left;
  font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--ink); line-height: 1.3;
}
.faq-q:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }
.faq-ico { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-lite); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s var(--ease), background-color .25s var(--ease); }
.faq-ico svg { width: 15px; height: 15px; color: var(--brand-deep); }
.faq-item.is-open .faq-ico { transform: rotate(45deg); background: var(--brand); }
.faq-item.is-open .faq-ico svg { color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner { overflow: hidden; }
.faq-a p { padding: 0 clamp(16px, 2.2vw, 26px) clamp(17px, 2.2vw, 24px); font-size: 0.92rem; max-width: 62ch; }

/* ============================================================
   FINAL CTA (dark)
   ============================================================ */
.cta {
  background: var(--ink); color: rgba(255,255,255,.74);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding-block: clamp(52px, 7vw, 100px);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: -40% -20% auto auto; width: 70%; height: 130%;
  background: radial-gradient(50% 50% at 60% 40%, rgba(90,162,75,.4), transparent 70%);
  pointer-events: none;
}
.cta .wrap { position: relative; }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.cta h2 { font-size: clamp(1.7rem, 4.4vw, 3.4rem); color: #fff; }
.cta-lead { margin-top: 16px; font-size: clamp(0.95rem, 1.4vw, 1.1rem); max-width: 48ch; }
.cta-list { display: grid; gap: 11px; margin-top: 26px; }
.cta-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; }
.cta-list li svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.cta-form {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: clamp(22px, 3vw, 34px); padding: clamp(22px, 3vw, 36px);
  backdrop-filter: blur(10px); display: grid; gap: 14px;
}
.cta-form h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; }
.cta-form .field label { color: rgba(255,255,255,.82); }
.cta-form .field input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.cta-form .field input::placeholder { color: rgba(255,255,255,.4); }
.cta-form .field input:focus { background: rgba(255,255,255,.14); border-color: var(--accent); }
.cta-form .consent { color: rgba(255,255,255,.6); }
.cta-form .form-note { font-size: 0.74rem; color: rgba(255,255,255,.45); text-align: center; }
.cta-form .ok { display: none; text-align: center; padding: 12px 0; color: #fff; font-weight: 600; }
.cta-form.is-sent .ok { display: block; }
.cta-form.is-sent .field, .cta-form.is-sent .consent, .cta-form.is-sent .btn, .cta-form.is-sent h3 { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.55); padding-block: clamp(34px, 4vw, 56px) 26px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)); gap: clamp(22px, 3vw, 46px); padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .logo__text { color: #fff; }
.site-footer .logo__text span { color: rgba(255,255,255,.42); }
.footer-about { margin-top: 14px; font-size: 0.86rem; max-width: 42ch; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.4); margin-bottom: 14px; font-weight: 700; }
.footer-col li + li { margin-top: 9px; }
.footer-col a, .footer-col address { font-size: 0.89rem; font-style: normal; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; font-size: 0.78rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   FADE-IN (IntersectionObserver)
   ============================================================ */
[data-fade] { opacity: 0; transform: translate(var(--fx, 0), var(--fy, 30px)); }
[data-fade].is-in {
  opacity: 1; transform: none;
  transition: opacity var(--fd, .7s) var(--ease) var(--fdelay, 0s), transform var(--fd, .7s) var(--ease) var(--fdelay, 0s);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-lower { grid-template-columns: 1fr; }
  /* keep the grid item stretched — `margin-inline:auto` here would make it
     shrink-to-fit and collapse the width:100% child to 0. Centering is done
     by .hero-art's own justify-content + the inner max-width. */
  .hero-art { order: -1; width: 100%; }
  .hero-art__inner { max-width: 500px; }
  .hero-badge--a { right: 0; } .hero-badge--b { left: 0; }
  .quiz-shell { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .offer-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}
/* nav + header CTA stop fitting well before the burger breakpoint */
@media (max-width: 1150px) {
  .nav { display: none; }
  .header-inner > .btn { display: none; }
  .header-contact { margin-left: auto; }
  .burger { display: flex; }
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .header-contact { display: none; }
  .burger { margin-left: auto; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stack-slot { height: auto; min-height: 0; margin-bottom: 14px; }
  .stack-sticky { position: static; }
  .stack-card { transform: none !important; }
  .stack-card__cta { margin-left: 0; width: 100%; }
  .stack-card__cta .btn { width: 100%; }
  .hero-badge { display: none; }
  .step-row { flex-direction: column; gap: 6px; }
  .btn { width: 100%; }
  .hero-actions .btn, .quiz-nav .btn { width: auto; flex: 1 1 auto; }
}

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

/* active service link in the main nav */
.nav a.is-active { color: var(--brand-deep); }
.nav a.is-active::after { width: 100%; }
.mobile-menu a.is-active { color: var(--brand-deep); }

/* honeypot — must stay reachable to bots but invisible to people */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* server-side / network error surfaced under a form */
.form-error {
  margin-top: 10px; font-size: 0.84rem; font-weight: 600;
  color: #D64545; background: #FEF3F3; border: 1px solid rgba(214,69,69,.25);
  border-radius: 12px; padding: 10px 13px;
}
.cta-form .form-error { color: #FFD9D9; background: rgba(214,69,69,.18); border-color: rgba(255,255,255,.2); }
