:root {
  /* Brand */
  --ink: #0E2A3A;
  --teal: #1B5970;
  --teal-dark: #0F3F52;
  --sage: #88B0A4;

  /* India-warm palette */
  --saffron: #F1862C;       /* primary CTA */
  --saffron-dark: #D86B12;
  --gold: #D9A650;
  --gold-soft: #F4E4C0;
  --sale-red: #D63B3B;      /* crossed-out, urgency */
  --sale-red-dark: #B12B2B;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C45;

  /* Neutrals */
  --paper: #FFFFFF;
  --cream: #FBF5EA;
  --cream-warm: #F4E9D2;
  --hairline: #EADFC6;
  --charcoal: #1A2230;
  --muted: #5B6473;

  /* Status */
  --success: #2F7C4F;
  --error: #B0413E;
  --info: #1B5970;

  --shadow-sm: 0 1px 2px rgba(14, 42, 58, 0.06), 0 1px 3px rgba(14, 42, 58, 0.04);
  --shadow-md: 0 6px 16px rgba(14, 42, 58, 0.10), 0 2px 4px rgba(14, 42, 58, 0.05);
  --shadow-lg: 0 16px 40px rgba(14, 42, 58, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', 'Hind', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(2.1rem, 6.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4.6vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 700; }

.hindi { font-family: 'Hind', 'Plus Jakarta Sans', sans-serif; font-weight: 600; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 720px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.06s ease, background 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-saffron, .btn-primary {
  background: linear-gradient(180deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 14px rgba(241, 134, 44, 0.35);
}
.btn-saffron:hover, .btn-primary:hover { color: #fff; filter: brightness(1.05); }
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, #B6873B 100%);
  color: #1A1407;
}
.btn-gold:hover { color: #1A1407; filter: brightness(1.05); }
.btn-wa {
  background: linear-gradient(180deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: #fff;
}
.btn-wa:hover { color: #fff; filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: rgba(14, 42, 58, 0.05); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-xl { padding: 18px 28px; font-size: 1.1rem; border-radius: 14px; }

/* MICRO TYPE */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--saffron-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream-warm);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--hairline);
}
.pill-gold {
  background: rgba(217, 166, 80, 0.18);
  border-color: rgba(217, 166, 80, 0.45);
  color: #8C6422;
}
.pill-saffron {
  background: rgba(241, 134, 44, 0.14);
  border-color: rgba(241, 134, 44, 0.4);
  color: var(--saffron-dark);
}
.pill-green {
  background: rgba(47, 124, 79, 0.14);
  border-color: rgba(47, 124, 79, 0.4);
  color: var(--success);
}
.pill-red {
  background: rgba(214, 59, 59, 0.12);
  border-color: rgba(214, 59, 59, 0.4);
  color: var(--sale-red);
}

/* CARDS */
.card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card-flat { box-shadow: none; }

.divider {
  height: 1px; background: var(--hairline);
  border: 0; margin: 28px 0;
}

/* TOP BANNER (above header) — running offer / urgency */
.top-banner {
  background: linear-gradient(90deg, var(--sale-red) 0%, var(--saffron) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.top-banner span { display: inline-flex; align-items: center; gap: 8px; }
.top-banner .blink {
  width: 8px; height: 8px; border-radius: 999px; background: #fff;
  display: inline-block; animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* TRUST STRIP */
.trust-strip {
  background: var(--ink);
  color: #F1E7CE;
  padding: 12px 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.trust-strip .container {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  justify-content: center; align-items: center;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.trust-strip .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--saffron); display: inline-block; }

/* SECTIONS */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-warm { background: var(--cream-warm); }
.section-ink { background: var(--ink); color: #F1E7CE; }
.section-ink h1, .section-ink h2, .section-ink h3 { color: #fff; }

/* HERO */
.hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(241, 134, 44, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(27, 89, 112, 0.10) 0%, transparent 45%),
    var(--cream);
  padding: 32px 0 56px;
}
.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-shell { grid-template-columns: 1.1fr 0.9fr; gap: 48px; padding: 16px 0; }
}
.hero h1 .accent { color: var(--saffron); display: inline-block; }
.hero h1 .underline {
  background: linear-gradient(transparent 60%, rgba(241, 134, 44, 0.35) 60%);
  padding: 0 0.1em;
}
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}

/* HERO PRODUCT VISUAL */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #143A4C 0%, #1B5970 60%, #2B7B7B 100%);
  padding: 38px 24px 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 380px;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 22% 88%, rgba(241, 134, 44, 0.30), transparent 50%);
  pointer-events: none;
}
.hero-visual .badge-corner {
  position: absolute; top: 16px; right: -32px;
  background: var(--sale-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 40px;
  transform: rotate(35deg);
  z-index: 4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.product-row {
  display: flex; gap: 14px; align-items: flex-end;
  margin-top: 30px; position: relative; z-index: 2;
}
.product-bottle {
  background: linear-gradient(180deg, #FBF6E9 0%, #EFE3C8 100%);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.30), inset 0 -8px 20px rgba(0,0,0,0.05);
  position: relative;
  flex-shrink: 0;
}
.product-bottle .cap {
  position: absolute; top: 0; left: 0; right: 0; height: 30px;
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.08);
}
.product-bottle .label {
  position: absolute; top: 44px; left: 6px; right: 6px;
  background: #fff;
  border-top: 2px solid var(--saffron);
  border-bottom: 2px solid var(--saffron);
  padding: 8px 4px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.6rem;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.product-bottle .label .small {
  display: block; font-size: 0.5rem; font-weight: 600;
  color: var(--saffron-dark); margin-top: 3px;
  letter-spacing: 0.05em;
}

/* HOW IT WORKS / STEPS */
.step-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.step-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 24px 22px;
  position: relative;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: #fff;
  font-weight: 800; font-size: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(241, 134, 44, 0.30);
}

/* PATTERN CARDS */
.pattern-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pattern-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 2px solid var(--hairline);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.pattern-card:hover { border-color: var(--saffron); transform: translateY(-2px); }
.pattern-emoji {
  font-size: 2rem; line-height: 1;
  display: inline-block; margin-bottom: 10px;
}

/* DOCTOR CARDS */
.doc-row {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.doc-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  border: 1px solid var(--hairline);
  text-align: center;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.doc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.doc-photo {
  width: 110px; height: 110px;
  border-radius: 999px;
  margin: 0 auto 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1B5970, #88B0A4);
  border: 4px solid var(--paper);
  box-shadow: 0 6px 18px rgba(14, 42, 58, 0.18), 0 0 0 4px var(--gold-soft);
}
.doc-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
}
.doc-photo .doc-initial {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  z-index: 1;
}
.doc-card .doc-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 800;
  margin: 0 0 4px;
}
.doc-card .doc-cred {
  font-size: 0.85rem; color: var(--muted);
  margin: 0 0 4px;
  font-weight: 600;
}
.doc-card .doc-spec {
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 700;
  margin: 0 0 12px;
}
.doc-card .doc-badges {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.doc-card .doc-badges .pill {
  font-size: 0.72rem; padding: 4px 10px;
}
.doc-card .reg { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.doc-avatar {
  width: 56px; height: 56px; border-radius: 999px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

/* RATINGS BLOCK */
.ratings-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 720px) {
  .ratings-hero { grid-template-columns: auto 1fr; gap: 40px; }
}
.ratings-big {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--cream) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  text-align: center;
}
.ratings-big .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.ratings-big .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; margin: 6px 0; }
.ratings-big .rev-count { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* TESTIMONIAL CARDS */
.testi-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testi-row { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--hairline);
  font-size: 0.95rem;
}
.testi .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; font-weight: 800; }
.testi-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.testi .who {
  color: var(--muted); font-size: 0.82rem; font-weight: 600;
  display: block;
}
.testi .who strong { color: var(--ink); font-weight: 700; display: block; font-size: 0.92rem; }
.testi .verified {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(47, 124, 79, 0.12);
  color: var(--success);
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 999px; margin-top: 6px;
}

/* OFFER RIBBON / CARD */
.offer-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  border: 2px solid var(--saffron);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.offer-ribbon {
  background: linear-gradient(90deg, var(--sale-red) 0%, var(--saffron) 100%);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.offer-head {
  background: linear-gradient(135deg, #143A4C, var(--teal));
  color: #fff;
  padding: 22px 24px;
}
.offer-head h3 { color: #fff; margin: 6px 0 0; }
.offer-body { padding: 24px; }
.offer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.offer-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--hairline);
}
.offer-list li:last-child { border-bottom: 0; }
.offer-list .ico {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(241, 134, 44, 0.12);
  color: var(--saffron-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.price-row {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin: 8px 0 18px;
}
.price-now {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
}
.price-was {
  text-decoration: line-through;
  color: var(--sale-red);
  font-size: 1.1rem;
  font-weight: 700;
}
.price-save {
  background: var(--sale-red);
  color: #fff;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* TRUST BAND — visible badges row (AYUSH / GMP / Made in India / COD / Free shipping) */
.trust-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 18px;
}
@media (min-width: 720px) {
  .trust-band { grid-template-columns: repeat(5, 1fr); }
}
.trust-band-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px;
  padding: 10px 6px;
}
.trust-band-item .ico {
  font-size: 1.6rem; line-height: 1;
}
.trust-band-item .lbl {
  font-size: 0.78rem; font-weight: 700; color: var(--ink);
  line-height: 1.25;
}

/* PRESS / TRUSTED BY ROW */
.press-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 28px;
  opacity: 0.75;
}
.press-row .press-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* FAQ */
.faq details {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  padding: 18px 20px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink);
  list-style: none; position: relative; padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; color: var(--saffron);
  font-weight: 700; line-height: 0.6;
}
.faq details[open] summary::after { content: '−'; }
.faq details[open] { border-color: var(--saffron); }
.faq p { color: var(--muted); margin: 14px 0 0; line-height: 1.6; }

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: #B7AB8E;
  padding: 40px 0 28px;
  font-size: 0.85rem;
}
.site-footer h4 { color: #fff; font-size: 0.95rem; margin: 0 0 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.site-footer a { color: #E9DFC9; }
.disclaimer {
  font-size: 0.75rem;
  color: #877B62;
  margin-top: 22px;
  line-height: 1.6;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 96px;
  background: var(--whatsapp);
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  font-size: 1.8rem;
}
.wa-float:hover { color: #fff; transform: translateY(-1px); }
@media (min-width: 720px) { .wa-float { bottom: 24px; } }

/* STICKY 3-ACTION CTA (mobile) */
.sticky-cta-3 {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  padding: 10px 12px calc(env(safe-area-inset-bottom) + 10px);
  z-index: 40;
  display: none;
  gap: 8px;
}
.sticky-cta-3 .btn-icon {
  flex-shrink: 0;
  width: 52px;
  padding: 0;
}
.sticky-cta-3 .btn { padding: 12px 16px; font-size: 0.95rem; border-radius: 12px; }
.sticky-cta-3 .grow { flex-grow: 1; }
@media (max-width: 720px) {
  .sticky-cta-3 { display: flex; }
  body.has-sticky { padding-bottom: 84px; }
}

/* Old simple sticky still works */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  padding: 12px 16px calc(env(safe-area-inset-bottom) + 12px);
  z-index: 40;
  display: none;
}
@media (max-width: 720px) { .sticky-cta { display: block; } body.has-sticky-cta { padding-bottom: 88px; } }

/* QUIZ */
.quiz-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px 96px;
}
.quiz-progress-wrap {
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 10;
  margin: -24px -20px 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
}
.quiz-progress {
  height: 6px;
  background: var(--hairline);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  width: 0%;
  transition: width 0.35s ease;
}
.quiz-step {
  display: none;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.3s ease;
}
.quiz-step.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-step h2 { margin: 0 0 6px; font-size: clamp(1.4rem, 4vw, 1.7rem); }
.quiz-step .sub {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 0.95rem;
  font-weight: 500;
}
.options { display: grid; gap: 10px; }
.options.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .options.cols-2 { grid-template-columns: 1fr; } }

.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--hairline);
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.06s ease;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  text-align: left;
  font-family: inherit;
}
.option:hover { border-color: var(--saffron); }
.option.selected {
  background: rgba(241, 134, 44, 0.08);
  border-color: var(--saffron);
  color: var(--saffron-dark);
}
.option .check {
  width: 22px; height: 22px; border-radius: 999px;
  border: 2px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.option.selected .check {
  border-color: var(--saffron);
  background: var(--saffron);
}
.option.selected .check::after {
  content: ''; width: 8px; height: 8px; background: #fff; border-radius: 999px;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.quiz-nav .btn { min-width: 120px; }

/* INPUTS */
.field { display: block; margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  border: 2px solid var(--hairline);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.15s ease;
  font-weight: 500;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--saffron);
}
.field .hint { font-size: 0.78rem; color: var(--muted); margin-top: 4px; font-weight: 500; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .row-2 { grid-template-columns: 1fr; } }

.slider-wrap { padding: 8px 0; }
.slider-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--saffron-dark);
  text-align: center;
  margin-bottom: 12px;
}
.slider-value small { font-size: 1rem; color: var(--muted); margin-left: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; }
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--hairline);
  border-radius: 999px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--saffron);
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--saffron);
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

/* RESULT */
.result-hero {
  background: linear-gradient(180deg, var(--ink) 0%, #103044 100%);
  color: #fff;
  padding: 56px 0 80px;
}
.result-hero .eyebrow { color: var(--gold); }
.result-hero h1 { color: #fff; }
.archetype-card {
  background: var(--paper);
  color: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: -40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--hairline);
}
.archetype-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 134, 44, 0.18);
  color: var(--saffron-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.match-bar {
  height: 8px;
  background: var(--cream-warm);
  border-radius: 999px;
  margin: 14px 0 6px;
  overflow: hidden;
}
.match-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 999px;
}

/* UTIL */
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 14px; } .mt-4 { margin-top: 20px; } .mt-6 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 20px; } .mb-6 { margin-bottom: 32px; }

.compliance-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.compliance-badges .pill { font-size: 0.78rem; }

.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: initial; } .hide-desktop { display: none; } }

/* ==========================================================================
   CUREVEDA-STYLE SECTIONS — root cause / ingredients / week-by-week / videos / pack tiers
   ========================================================================== */

/* ROOT CAUSE — 3-up grid */
.cause-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 760px) { .cause-grid { grid-template-columns: repeat(3, 1fr); } }
.cause-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cause-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cause-card .cause-num {
  position: absolute; top: -12px; left: 20px;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.cause-card .cause-icon { font-size: 1.6rem; margin-bottom: 6px; }
.cause-card h3 { font-size: 1.05rem; margin: 8px 0 6px; }
.cause-card p { margin: 0; color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.cause-card .cause-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(27, 89, 112, 0.08);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* INGREDIENTS — responsive grid */
.ing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 600px) { .ing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ing-grid { grid-template-columns: repeat(3, 1fr); } }
.ing-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ing-photo {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-soft) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--saffron-dark);
}
.ing-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ing-body { padding: 18px; }
.ing-body h3 {
  font-size: 1rem; margin: 0 0 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.ing-body .ing-latin {
  font-size: 0.78rem; color: var(--muted);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.ing-body p { margin: 0; color: var(--muted); font-size: 0.9rem; font-weight: 500; line-height: 1.5; }

/* WEEK-BY-WEEK TIMELINE */
.timeline-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 720px) { .timeline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .timeline-grid { grid-template-columns: repeat(4, 1fr); } }
.timeline-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.timeline-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--sage) 0%, var(--teal) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  overflow: hidden;
}
.timeline-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.timeline-week-tag {
  position: relative; z-index: 2;
  background: var(--gold);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.timeline-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,58,0) 50%, rgba(14,42,58,0.45) 100%);
  z-index: 1;
}
.timeline-body { padding: 18px; }
.timeline-body h3 {
  font-size: 1rem; margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
}
.timeline-body p { margin: 0; color: var(--muted); font-size: 0.9rem; font-weight: 500; line-height: 1.5; }

/* VIDEO STORIES (Veera-style) */
.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 600px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .video-grid { grid-template-columns: repeat(4, 1fr); } }
.video-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background: linear-gradient(160deg, var(--ink) 0%, var(--teal-dark) 100%);
  cursor: pointer;
  border: 1px solid var(--hairline);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.video-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.video-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.video-tile .video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease;
}
.video-tile:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-tile .video-play svg {
  width: 22px; height: 22px;
  margin-left: 2px;
}
.video-tile .video-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  z-index: 2;
  color: #fff;
}
.video-tile .video-meta .video-name {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.video-tile .video-meta .video-result {
  font-size: 0.82rem;
  color: var(--gold-soft);
  font-weight: 600;
  display: block;
  line-height: 1.35;
}

/* PACK TIER GRID */
.pack-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 820px) { .pack-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pack-card {
  background: var(--paper);
  border: 2px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pack-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pack-card.featured {
  border-color: var(--saffron);
  box-shadow: 0 16px 40px rgba(241, 134, 44, 0.18);
  transform: translateY(-4px);
}
@media (max-width: 819px) {
  .pack-card.featured { transform: none; }
}
.pack-card .pack-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.pack-card .pack-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin-bottom: 6px;
}
.pack-card .pack-duration {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  margin-bottom: 12px;
}
.pack-card .pack-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.pack-card .pack-price-now {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pack-card .pack-price-was {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
}
.pack-card .pack-save {
  display: inline-block;
  background: rgba(47, 124, 79, 0.12);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pack-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
  flex-grow: 1;
}
.pack-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.45;
}
.pack-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  color: var(--success);
  font-weight: 800;
}
.pack-card .btn { width: 100%; }

/* HERO PILL ROW for outcome chips */
.outcome-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}
.outcome-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 134, 44, 0.12);
  color: var(--saffron-dark);
  font-size: 0.82rem;
  font-weight: 700;
}
.outcome-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); }

/* HERO PRODUCT PHOTO — drop your image at assets/img/hero/apexo-slim-pack.jpg */
.hero-product-photo {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.hero-product-photo > img {
  display: block;
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.35));
  border-radius: 8px;
}
.hero-product-fallback {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
