/* ==========================================================================
   NUTRIHERBS — "Light" landing variant (/light)
   Clean, white, mobile-first, conversion-focused. Inspired by modern Indian
   D2C wellness pages (Kapiva-style) — NOT the dark premium classic page.
   Reuses the SAME order-form DOM contract as index.html so /js/app.js drives
   the whole checkout + analytics unchanged. Only the skin is new.
   Accent = forest/olive green (CTA + savings); amber stars; gold used sparingly.
   ========================================================================== */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f5f7f1;   /* faint warm-olive wash for alternating sections */
  --bg-soft-2: #fbfbf8;
  --ink:       #1b1d18;   /* near-black headings */
  --ink-2:     #41463c;   /* body text */
  --muted:     #7a8075;   /* secondary / captions */
  --line:      #e7e9e1;
  --line-2:    #d9dcd0;

  --green:     #5c7d24;   /* primary CTA (olive/forest) */
  --green-d:   #496219;
  --green-soft:#eef3e0;
  --save:      #2f7d32;   /* "you save" / FREE text */
  --gold:      #b8860b;
  --gold-soft: #fbf3dd;
  --star:      #f5a623;
  --red:       #d23f3f;
  --wa:        #25d366;

  --r:    14px;
  --r-sm: 10px;
  --r-lg: 22px;
  --shadow:    0 1px 2px rgba(20,22,16,.05), 0 8px 24px rgba(20,22,16,.06);
  --shadow-lg: 0 18px 48px rgba(20,22,16,.12);

  --font:    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Schibsted Grotesk", "Manrope", system-ui, sans-serif;

  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.12; margin: 0; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, video, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }

.section { padding: 46px 0; }
.section--soft { background: var(--bg-soft); }
.section__title { font-size: clamp(1.5rem, 5.5vw, 2.3rem); text-align: center; }
.section__lead  { text-align: center; color: var(--muted); max-width: 620px; margin: 10px auto 0; font-size: 1.02rem; }
.section__head  { margin-bottom: 30px; }

.gold-text  { color: var(--gold); }
.green-text { color: var(--green); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  line-height: 1; text-align: center; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(92,125,36,.28); }
.btn--gold:hover { background: var(--green-d); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-d); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--lg { padding: 17px 30px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- announcement bar ---------- */
.announce { background: var(--ink); color: #fff; font-size: .82rem; font-weight: 600; overflow: hidden; }
.announce__track { display: flex; gap: 28px; align-items: center; white-space: nowrap; padding: 9px 0; width: max-content; animation: marquee 26s linear infinite; }
.announce__track span:not(.dot) { letter-spacing: .01em; }
.announce .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce__track { animation: none; } }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(20,22,16,.05); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand__mark { color: var(--green); flex: none; }
.brand__type { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.12rem; letter-spacing: .02em; color: var(--ink); }
.brand__name sup { font-size: .5em; }
.brand__tag { font-size: .62rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.nav__links { display: none; gap: 26px; }
.nav__links a { font-weight: 600; font-size: .94rem; color: var(--ink-2); }
.nav__links a:hover { color: var(--green); }
.nav__cta { padding: 10px 16px; font-size: .92rem; }
.nav__cta-price { background: rgba(255,255,255,.22); padding: 3px 8px; border-radius: 999px; font-size: .85rem; }

@media (min-width: 900px) { .nav__links { display: flex; } }

/* ---------- benefit chips (top strip, Kapiva-style) ---------- */
.benefit-chips { background: #fff; border-bottom: 1px solid var(--line); }
.benefit-chips__row { display: flex; justify-content: space-evenly; gap: 4px; padding: 9px 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.benefit-chips__row::-webkit-scrollbar { display: none; }
.bchip { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 52px; color: var(--ink-2); }
.bchip__ic { width: 38px; height: 38px; border-radius: 50%; background: var(--green-soft); color: var(--green-d); display: grid; place-items: center; transition: transform .15s ease, background .15s ease; }
.bchip__ic svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bchip span:last-child { font-size: .64rem; font-weight: 700; text-align: center; line-height: 1.1; }
.bchip:hover .bchip__ic { transform: translateY(-2px); background: var(--green); color: #fff; }
@media (min-width: 720px) { .benefit-chips__row { justify-content: space-between; gap: 26px; padding: 11px 18px; } .bchip { min-width: 60px; } .bchip__ic { width: 42px; height: 42px; } .bchip__ic svg { width: 21px; height: 21px; } .bchip span:last-child { font-size: .68rem; } }

/* ---------- hero ---------- */
.hero { padding: 26px 0 8px; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); }
.hero__inner { display: grid; gap: 22px; }
.hero__media { position: relative; order: -1; }
/* desktop: product carousel (left, capped) | copy (right) */
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: minmax(0, 460px) 1fr; gap: 46px; align-items: center; }
}
/* hero image carousel */
.hero-carousel { position: relative; }
.hero-carousel__viewport { overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-soft); touch-action: pan-y; }
.hero-carousel__track { display: flex; transition: transform .45s ease; }
.hero-carousel__slide { flex: 0 0 100%; aspect-ratio: 1 / 1; position: relative; }
.hero-carousel__slide > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-carousel__slide--product { display: grid; place-items: center; padding: 18px; overflow: hidden; background: radial-gradient(120% 90% at 50% 20%, #fff 0%, var(--bg-soft) 70%); }
.hero-carousel__slide--product .hero__jar { width: auto; height: auto; max-height: 82%; object-fit: contain; filter: drop-shadow(0 26px 40px rgba(20,22,16,.22)); }
.hero-carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 38px; height: 38px; padding: 0; border-radius: 50%; background: rgba(255,255,255,.92); border: 1px solid var(--line); color: var(--ink); font-size: 1.5rem; line-height: 1; display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); }
.hero-carousel__arrow:hover { background: #fff; color: var(--green-d); }
.hero-carousel__arrow--prev { left: 10px; }
.hero-carousel__arrow--next { right: 10px; }
.hero-carousel__dots { display: flex; gap: 7px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.hero-carousel__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: var(--line-2); cursor: pointer; transition: width .2s ease, background .2s ease; }
.hero-carousel__dots button.is-active { background: var(--green); width: 22px; border-radius: 5px; }
@media (max-width: 600px) { .hero-carousel__arrow { display: none; } }  /* mobile: swipe + dots */
.hero__badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; gap: 8px; }
.hbadge { font-size: .72rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; }
.hbadge--sell { background: var(--ink); color: #fff; }
.hbadge--off  { background: var(--green); color: #fff; }
.hero__seal { position: absolute; bottom: 14px; right: 14px; }
.seal { display: inline-flex; }
.seal svg { width: 74px; height: 74px; color: var(--green); }
.seal__ring, .seal__ring2 { fill: none; stroke: currentColor; stroke-width: 2; opacity: .55; }
.seal__text { fill: var(--green-d); font-size: 8.4px; font-weight: 700; letter-spacing: .5px; font-family: var(--font); }
.seal__check { fill: none; stroke: var(--green); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.seal:hover { transform: rotate(6deg); transition: transform .3s; }

.hero__expert { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px; background: var(--green-soft); color: var(--green-d); font-weight: 700; font-size: .82rem; padding: 6px 12px; border-radius: 999px; }
.hero__expert svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rating-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-bottom: 12px; }
.stars { color: var(--star); letter-spacing: 2px; font-size: 1rem; }
.stars--lg { font-size: 1.5rem; }
.rating-row__text { font-size: .9rem; color: var(--ink-2); font-weight: 600; }
.live-viewers { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.live-viewers__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(92,125,36,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(92,125,36,.5); } 70% { box-shadow: 0 0 0 8px rgba(92,125,36,0); } 100% { box-shadow: 0 0 0 0 rgba(92,125,36,0); } }

.hero__eyebrow { display: inline-block; color: var(--green-d); font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.hero__title { font-size: clamp(1.8rem, 8vw, 3rem); font-weight: 800; }
.hero__sub { color: var(--ink-2); font-size: 1.04rem; margin: 12px 0 0; }
.hero__benefits { margin: 16px 0 0; display: grid; gap: 8px; }
.hero__benefits li { display: flex; align-items: flex-start; gap: 9px; font-weight: 600; color: var(--ink-2); font-size: .96rem; }
.hero__benefits .ic { color: var(--green); width: 20px; height: 20px; flex: none; margin-top: 1px; }

.ic { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic--green { color: var(--green); } .ic--gold { color: var(--gold); }

.hero__price { display: flex; align-items: baseline; gap: 10px; margin: 18px 0 4px; }
.price-now { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--ink); }
.price-was { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.price-off { background: var(--green-soft); color: var(--green-d); font-weight: 800; font-size: .82rem; padding: 4px 10px; border-radius: 999px; }
.hero__deliver { display: inline-flex; align-items: center; gap: 8px; color: var(--save); font-weight: 700; font-size: .9rem; margin-top: 4px; }

.hero__cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero__cta-row .btn { flex: 1 1 auto; }
.hero__lab-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; color: var(--green-d); font-size: .92rem; }
.hero__lab-link .ic { width: 18px; height: 18px; }
.hero__lab-tag { background: var(--green-soft); color: var(--green-d); font-size: .66rem; font-weight: 800; padding: 2px 7px; border-radius: 6px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; font-weight: 600; color: var(--ink-2); }
.hero__trust .ic { width: 18px; height: 18px; }

/* ---------- quick trust icons row ---------- */
.usp { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usp__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px 0; }
.usp__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.usp__ic { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--green); box-shadow: var(--shadow); }
.usp__ic svg { width: 24px; height: 24px; }
.usp__item span { font-size: .8rem; font-weight: 700; color: var(--ink-2); line-height: 1.25; }
@media (min-width: 720px) { .usp__row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- offers strip ---------- */
.offers__grid { display: grid; gap: 12px; margin-top: 22px; }
.offer { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px dashed var(--green); border-radius: var(--r); padding: 14px 16px; }
.offer__save { background: var(--green-soft); color: var(--green-d); border-radius: var(--r-sm); padding: 8px 12px; text-align: center; flex: none; }
.offer__save b { display: block; font-family: var(--display); font-size: 1.1rem; }
.offer__save span { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.offer__text { font-size: .92rem; }
.offer__text b { color: var(--ink); }
.offer__code { display: inline-block; margin-top: 4px; border: 1px dashed var(--line-2); border-radius: 6px; padding: 1px 8px; font-size: .78rem; font-weight: 700; color: var(--green-d); }
@media (min-width: 720px) { .offers__grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   ORDER CARD + multi-step form (same markup contract as the classic page)
   ========================================================================== */
.order { background: var(--bg-soft); }
.order__inner { display: grid; gap: 22px; }
.order__head { text-align: center; }
.order__head .section__title { text-align: center; }
.order__head .section__lead { margin-top: 8px; }
.order__doctor { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: .9rem; box-shadow: var(--shadow); }
.order__doctor svg { width: 24px; height: 24px; flex: none; }
.order__doctor b { color: var(--green-d); }

.order__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-lg); max-width: 560px; margin: 0 auto; width: 100%; }

/* progress */
.steps-bar { position: relative; margin-bottom: 22px; }
.steps-bar__fill { position: absolute; top: 15px; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; z-index: 1; border-radius: 3px; }
.steps-bar::before { content: ""; position: absolute; top: 15px; left: 0; right: 0; height: 3px; background: var(--line); border-radius: 3px; }
.steps-bar__dots { position: relative; z-index: 2; display: flex; justify-content: space-between; }
.steps-bar__dots li { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.steps-bar__dots span { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 2px solid var(--line-2); display: grid; place-items: center; font-weight: 800; font-size: .9rem; color: var(--muted); transition: .25s; }
.steps-bar__dots em { font-style: normal; font-size: .68rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.steps-bar__dots .is-active span { background: var(--green); border-color: var(--green); color: #fff; }
.steps-bar__dots .is-active em { color: var(--green-d); }
.steps-bar__dots .is-done span { background: var(--green-soft); border-color: var(--green); color: var(--green-d); }

.step { border: 0; margin: 0; padding: 0; display: none; }
.step.is-active { display: block; animation: stepin .3s ease; }
@keyframes stepin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step__legend { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink); padding: 0; margin-bottom: 14px; }

/* packs */
.pack { position: relative; display: block; border: 1.5px solid var(--line-2); border-radius: var(--r); padding: 14px 14px 14px 46px; margin-bottom: 12px; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; }
.pack input { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; accent-color: var(--green); }
.pack:hover { border-color: var(--green); }
.pack:has(input:checked) { border-color: var(--green); background: var(--green-soft); box-shadow: 0 0 0 3px rgba(92,125,36,.12); }
.pack__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pack__lead { display: flex; flex-direction: column; gap: 2px; }
.pack__title { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.pack__perday { font-size: .8rem; color: var(--muted); font-weight: 600; }
.pack__price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pack__price b { font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
.pack__price s { color: var(--muted); font-size: .82rem; }
.pack__save { font-size: .68rem; font-weight: 800; color: var(--green-d); background: var(--green-soft); padding: 2px 7px; border-radius: 6px; }
.pack__flag { position: absolute; top: -10px; right: 14px; background: var(--green); color: #fff; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 3px 10px; border-radius: 999px; }
.pack__flag--alt { background: var(--gold); }
.pack--best { border-color: var(--green); }

/* fields */
.field { margin-bottom: 14px; }
.field > label { display: block; font-weight: 700; font-size: .86rem; color: var(--ink); margin-bottom: 6px; }
.field__opt { color: var(--muted); font-weight: 500; }
.field input, .field select { width: 100%; font-family: var(--font); font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(92,125,36,.14); }
.field__phone { display: flex; align-items: stretch; }
.field__cc { display: inline-flex; align-items: center; padding: 0 12px; border: 1.5px solid var(--line-2); border-right: 0; border-radius: var(--r-sm) 0 0 var(--r-sm); background: var(--bg-soft); font-weight: 700; color: var(--ink-2); }
.field__phone input { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.field__error { display: block; color: var(--red); font-size: .8rem; margin-top: 5px; min-height: 0; }
.field.has-error input, .field.has-error select { border-color: var(--red); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn--locate { width: 100%; background: var(--green-soft); color: var(--green-d); border: 1.5px solid var(--green); margin-bottom: 8px; font-size: .94rem; }
.btn--locate .ic { width: 20px; height: 20px; }
.btn--locate.is-busy { opacity: .7; }
.btn--locate.is-done { background: var(--green); color: #fff; }
.locate__hint { font-size: .82rem; color: var(--muted); margin: 0 0 14px; }
.locate__hint.is-error { color: var(--red); }
.locate__hint:empty { display: none; }
/* smaller secondary variant — the pincode-first flow makes GPS an optional fallback */
.btn--locate--sm { margin: -2px 0 14px; padding: 10px 14px; font-size: .88rem; }
/* big readable address readback after a GPS fetch (Swiggy-style "confirm location") */
.addr-preview { margin: 0 0 16px; padding: 14px 16px; border-radius: var(--r-sm); background: var(--green-soft); border: 1px solid var(--green); }
.addr-preview__label { display: flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--green-d); }
.addr-preview__label svg { width: 15px; height: 15px; flex: 0 0 15px; fill: none; stroke: var(--green-d); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.addr-preview__text { margin: 9px 0 0; font-size: 1.1rem; line-height: 1.45; font-weight: 700; color: var(--ink); }
.field__hint { display: block; color: var(--muted); font-size: .78rem; margin-top: 5px; }
/* live pincode-lookup status under the pincode input */
.field__status { display: block; font-size: .8rem; margin-top: 5px; color: var(--muted); }
.field__status:empty { display: none; }
.field__status.is-ok { color: var(--green-d); font-weight: 700; }
.field__status.is-warn { color: var(--red); }
/* "+ Add email" reveal link on the contact step */
.field-toggle { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 2px 0 14px; color: var(--green-d); font-family: var(--font); font-size: .88rem; font-weight: 700; cursor: pointer; }
.field-toggle:hover { text-decoration: underline; }
/* COD / free-delivery reassurance strip on the address step */
.step__note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 14px; padding: 9px 12px; border-radius: var(--r-sm); background: var(--green-soft); border: 1px solid var(--green); color: var(--ink); font-size: .84rem; text-align: center; }
.step__note svg { width: 15px; height: 15px; flex: 0 0 15px; fill: none; stroke: var(--green-d); stroke-width: 2.4; }
/* pinned above the step dots (all 4 steps) -> a persistent trust banner, not just address-step */
.step__note--top { margin: 0 0 18px; padding: 11px 14px; border-radius: var(--r); background: var(--green-soft); border: 1.5px solid var(--green); box-shadow: 0 4px 14px rgba(92, 125, 36, .12); font-weight: 800; font-size: .89rem; color: var(--green-d); letter-spacing: .01em; }
.step__note--top svg { width: 17px; height: 17px; flex: 0 0 17px; stroke: var(--green-d); stroke-width: 2.6; }

/* payment */
.pay { position: relative; display: block; border: 1.5px solid var(--line-2); border-radius: var(--r); padding: 14px 14px 14px 46px; margin-bottom: 12px; cursor: pointer; }
.pay input { position: absolute; left: 16px; top: 18px; width: 20px; height: 20px; accent-color: var(--green); }
.pay:has(input:checked) { border-color: var(--green); background: var(--green-soft); }
.pay__title { display: block; font-weight: 700; color: var(--ink); }
.pay__desc { font-size: .84rem; color: var(--muted); }
.pay__tag { background: var(--green); color: #fff; font-size: .66rem; font-weight: 800; padding: 2px 8px; border-radius: 999px; margin-left: 6px; }

/* summary */
.summary { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px; margin: 18px 0; }
.summary__row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; font-size: .95rem; }
.summary__row .free { color: var(--save); font-weight: 800; }
.summary__row--total { border-top: 1px dashed var(--line-2); margin-top: 6px; padding-top: 12px; font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--ink); }

.step__actions { margin-top: 18px; }
.step__actions--split { display: flex; gap: 12px; }
.step__actions--split .btn--ghost { flex: 0 0 32%; }
.step__actions--split .btn--gold { flex: 1; }

#placeOrder { position: relative; }
#placeOrder .btn__spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
#placeOrder.is-loading .btn__label { opacity: .6; }
#placeOrder.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.order__safe { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 14px 0 0; font-size: .8rem; color: var(--muted); text-align: center; }
.order__safe .ic { width: 16px; height: 16px; color: var(--green); }

/* success */
.success { text-align: center; padding: 12px 0; }
.success__tick { width: 64px; height: 64px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 14px; }
.success__tick svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.success h3 { font-size: 1.4rem; margin-bottom: 8px; }

/* ---------- benefits ---------- */
.benefits__grid { display: grid; gap: 14px; margin-top: 30px; }
.bcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); }
.bcard__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-soft); color: var(--green-d); display: grid; place-items: center; margin-bottom: 14px; }
.bcard__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bcard h3 { font-size: 1.12rem; margin-bottom: 6px; }
.bcard p { color: var(--ink-2); font-size: .94rem; margin: 0; }
@media (min-width: 720px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .benefits__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- edu + stats ---------- */
.edu__inner { display: grid; gap: 28px; }
.edu__copy p { color: var(--ink-2); }
.edu__title { text-align: left; }
.edu__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px; text-align: center; box-shadow: var(--shadow); }
.stat b { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--green-d); }
.stat span { font-size: .82rem; color: var(--muted); font-weight: 600; }
@media (min-width: 900px) { .edu__inner { grid-template-columns: 1.2fr 1fr; align-items: center; } }

/* ---------- ingredients ---------- */
.ing__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.ing { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; text-align: center; box-shadow: var(--shadow); }
.ing img { width: 92px; height: 92px; object-fit: cover; border-radius: 50%; margin: 0 auto 12px; border: 3px solid var(--green-soft); }
.ing h3 { font-size: 1.02rem; margin-bottom: 6px; }
.ing p { font-size: .86rem; color: var(--ink-2); margin: 0; }
@media (min-width: 900px) { .ing__row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- split (lab video) ---------- */
.split__inner { display: grid; gap: 24px; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 9 / 16; max-width: 340px; width: 100%; margin-inline: auto; }
.split__video { width: 100%; height: 100%; object-fit: contain; }
.split__play, .ugc__play, .proof__play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); border: 0; display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-lg); }
.split__play svg, .ugc__play svg, .proof__play svg { width: 26px; height: 26px; fill: var(--green-d); margin-left: 3px; }
.split__media.is-playing .split__play { display: none; }
.split__copy .section__title { text-align: left; }
.checklist { margin-top: 16px; display: grid; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--ink-2); font-size: .96rem; }
.checklist .ic { flex: none; margin-top: 2px; }
@media (min-width: 900px) { .split__inner { grid-template-columns: 1fr 1fr; align-items: center; } }

/* ---------- how to ---------- */
.steps { display: grid; gap: 16px; margin-top: 30px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.step-card__media { aspect-ratio: 1/1; background: var(--bg-soft); }
.step-card__vid { width: 100%; height: 100%; object-fit: cover; }
.step-card__body { padding: 16px 18px; }
.step-card__step { display: inline-block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--green-d); background: var(--green-soft); padding: 3px 9px; border-radius: 999px; margin-bottom: 8px; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.step-card p { font-size: .88rem; color: var(--ink-2); margin: 0; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- reviews ---------- */
.reviews__summary { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 18px 0 30px; }
.reviews__score { font-family: var(--display); font-size: 2.4rem; font-weight: 800; color: var(--ink); }
.reviews__count { color: var(--muted); font-size: .9rem; }
.reviews__wall { display: grid; gap: 18px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.ugc__card { position: relative; aspect-ratio: 9/13; background: #000; }
.ugc__video { width: 100%; height: 100%; object-fit: cover; }
.ugc__card.is-playing .ugc__play { display: none; }
.review__body { padding: 16px 18px; }
.review__body blockquote { margin: 8px 0; font-size: .96rem; color: var(--ink); line-height: 1.55; }
.review__body figcaption { font-size: .84rem; color: var(--muted); font-weight: 600; }
.verified { display: inline-flex; align-items: center; gap: 4px; color: var(--save); font-weight: 700; font-size: .76rem; margin-left: 6px; }
.verified::before { content: "✓"; }
@media (min-width: 720px) { .reviews__wall { grid-template-columns: repeat(3, 1fr); } }

/* ---------- proof ---------- */
.proof__single { margin-top: 30px; max-width: 760px; margin-left: auto; margin-right: auto; }
.proof__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.proof__media { position: relative; aspect-ratio: 16/9; background: #000; }
.proof__thumb, .proof__iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.proof__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)); }
.proof__chip { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.6); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.proof__cap { padding: 18px 20px; }
.proof__cap h3 { font-size: 1.1rem; margin-bottom: 4px; }
.proof__cap p { color: var(--ink-2); font-size: .9rem; margin: 0; }

/* ---------- faq ---------- */
.faq__inner { max-width: 760px; }
.accordion { margin-top: 26px; }
.accordion details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; }
.accordion summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.accordion summary::-webkit-details-marker { display: none; }
.acc__icon { width: 20px; height: 20px; position: relative; flex: none; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .2s; }
.acc__icon::before { top: 9px; left: 2px; right: 2px; height: 2px; }
.acc__icon::after { left: 9px; top: 2px; bottom: 2px; width: 2px; }
.accordion details[open] .acc__icon::after { transform: scaleY(0); }
.accordion details > p { padding: 0 18px 16px; color: var(--ink-2); font-size: .94rem; margin: 0; }

/* ---------- final cta ---------- */
.finalcta { background: var(--ink); color: #fff; padding: 54px 0; text-align: center; }
.finalcta h2 { color: #fff; font-size: clamp(1.5rem, 6vw, 2.2rem); }
.finalcta p { color: rgba(255,255,255,.75); margin: 10px 0 22px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 40px 0 0; }
.footer__inner { display: grid; gap: 28px; }
.footer__brand .brand__name { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.footer__brand p { color: var(--muted); font-size: .9rem; margin-top: 8px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.footer__cols h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: 10px; }
.footer__cols a { display: block; color: var(--ink-2); font-size: .9rem; padding: 3px 0; }
.footer__cols a:hover { color: var(--green-d); }
.footer__bar { border-top: 1px solid var(--line); margin-top: 30px; padding: 18px 0; }
.footer__bar .container { display: flex; flex-direction: column; gap: 8px; }
.footer__bar span { font-size: .78rem; color: var(--muted); }
@media (min-width: 800px) { .footer__inner { grid-template-columns: 1.4fr 2fr; } }

/* ---------- sticky mobile buy bar ---------- */
/* full-width, prominent bottom Order bar — matches the dark variant; persists the whole scroll */
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; display: flex; align-items: center; gap: 12px; text-decoration: none; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); box-shadow: 0 -8px 24px rgba(0,0,0,.12); transform: translateY(115%); transition: transform .3s ease; }
.sticky-buy.is-visible { transform: none; }
/* mobile bar = ONLY the Order button, spread full-width */
.sticky-buy__info { display: none; }
.sticky-buy__btn { flex: 1; text-align: center; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--green); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.1rem; padding: 15px 22px; border-radius: 12px; white-space: nowrap; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.sticky-buy__btn svg { width: 19px; height: 19px; flex: none; }
@media (min-width: 900px) { .sticky-buy { display: none; } }
/* clear the always-on bar so it never hides the footer or the Place Order button */
@media (max-width: 899px) {
  body { padding-bottom: 78px; }
  .order__card { padding-bottom: 92px; }
}
@media (max-width: 899px) {
  .hero__cta-row .btn--gold { display: none; }  /* redundant with the persistent bottom Order bar */
  body { padding-bottom: 84px; }                 /* clear the floating bottom bar */
  .order__card { padding-bottom: 90px; }         /* keep the bar from covering Place Order */
  /* the bottom bar IS the step CTA on mobile — hide the duplicate in-form
     Continue / Place Order buttons (Back stays; it has no bar equivalent) */
  .step__actions [data-next], .step__actions button[type="submit"] { display: none; }
  .step__actions--split .btn--ghost { flex: 1; }
  .step__actions:not(:has([data-back])) { display: none; }
}

/* ---------- WhatsApp FAB + popup ---------- */
.wa-fab { position: fixed; right: 16px; bottom: 84px; z-index: 55; width: 54px; height: 54px; border-radius: 50%; background: var(--wa); box-shadow: var(--shadow-lg); display: grid; place-items: center; transition: opacity .25s ease, transform .25s ease; }
.wa-fab svg { width: 30px; height: 30px; }
/* the FAB is a distraction while someone is filling the order form — fade it out
   (body.nh-form-mode is toggled by the same scroll logic that morphs the bottom bar) */
body.nh-form-mode .wa-fab { opacity: 0; pointer-events: none; transform: scale(.6); }
@media (min-width: 900px) { .wa-fab { bottom: 24px; } }
.wa-pop { position: fixed; right: 16px; bottom: 150px; z-index: 56; width: min(330px, calc(100vw - 32px)); background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 18px; transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none; transition: .25s; }
.wa-pop.is-open { transform: none; opacity: 1; pointer-events: auto; }
.wa-pop[hidden] { display: block; }
.wa-pop__close { position: absolute; top: 8px; right: 10px; background: 0; border: 0; font-size: 1.5rem; color: var(--muted); cursor: pointer; line-height: 1; }
.wa-pop__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.wa-pop__avatar svg { width: 38px; height: 38px; }
.wa-pop__head strong { display: block; color: var(--ink); }
.wa-pop__online { font-size: .76rem; color: var(--save); font-weight: 700; }
.wa-pop__msg { font-size: .9rem; color: var(--ink-2); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* hide broken images gracefully */
.is-missing { visibility: hidden; }
