/* ═══════════════════════════════════════════════════════
   maharasa.css — MahaRasa Main Stylesheet
   Theme: Deep ink + aubergine + copper gold
   Fonts: Cormorant Garamond (display) + Inter (body)
   ═══════════════════════════════════════════════════════ */

/* ── RESET & ROOT ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0e0b13;
  --bg2:       #141020;
  --bg3:       #1a1428;
  --card:      #17122a;
  --gold:      #c8a24a;
  --gold2:     #e8c97a;
  --gold-dim:  rgba(200,162,74,0.5);
  --gold-faint:rgba(200,162,74,0.12);
  --text:      #f5f0e6;
  --muted:     rgba(245,240,230,0.55);
  --muted2:    rgba(245,240,230,0.35);
  --border:    rgba(200,162,74,0.18);
  --border2:   rgba(200,162,74,0.38);
  --danger:    #e24b4a;
  --ff-display:'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body:   'Inter', system-ui, -apple-system, sans-serif;
  --radius:    2px;
  --container: 1200px;
  --transition:.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-body); }

/* ── TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4, h5,
.font-display {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(24px, 4vw, 38px); }
h3 { font-size: clamp(18px, 3vw, 24px); }
h4 { font-size: 17px; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }

/* ── UTILITIES ─────────────────────────────────────────── */
.container   { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }
.eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--ff-body);
  margin-bottom: 10px;
  display: block;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, #dbb660 0%, #a07c28 100%);
  color: #0e0b13;
  box-shadow: 0 8px 28px -10px rgba(200,162,74,.5);
}
.btn-gold:hover  { transform: translateY(-1px); filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold2);
}
.btn-ghost:hover { background: var(--gold-faint); }
.btn-gold:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16,11,8,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(232,167,63,.15);
}
.hdr-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 26px; width: auto; filter: brightness(0) invert(1); }
.logo-wordmark {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--text);
  text-transform: uppercase;
}
.ftr-logo.logo-wordmark {
  font-size: 18px;
  letter-spacing: .2em;
  color: var(--text);
  display: block;
  margin-bottom: 14px;
}
.main-nav  { display: flex; gap: 24px; }
.main-nav a {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .05em;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.hdr-actions { display: flex; align-items: center; gap: 14px; }
.hdr-signin  { font-size: 12px; color: var(--muted); transition: color var(--transition); }
.hdr-signin:hover { color: var(--gold); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid var(--border);
  padding: 16px 28px 20px;
  background: rgba(14,11,19,.97);
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 0.5px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-gold { margin-top: 16px; width: 100%; }
.mobile-nav.open { display: flex; }

/* ── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 80px 0;
  border-top: 0.5px solid rgba(200,162,74,.1);
}
.section-alt { background: rgba(255,255,255,.022); }
.section-label {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.section-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #1a1028 0%, #0e0b13 100%);
  padding: 72px 0 64px;
}
.hero-radial {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,162,74,.13), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0; }
.trust-strip span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(200,162,74,.52);
}
.trust-strip span + span::before {
  content: '•';
  margin: 0 10px;
  color: rgba(200,162,74,.28);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid var(--border2);
  aspect-ratio: 3/4;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset-x: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(14,11,19,.72), transparent);
}

/* ── RECOGNITION ─────────────────────────────────────── */
.recog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,162,74,.14);
  margin-top: 36px;
}
.recog-card {
  background: var(--bg);
  padding: 28px 24px;
  transition: background var(--transition);
}
.recog-card:hover { background: var(--card); }
.recog-check { font-size: 18px; color: var(--gold); margin-bottom: 12px; }
.recog-card h3 { font-family: var(--ff-display); font-size: 18px; font-weight: 500; margin-bottom: 6px; }
.recog-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.recog-footer  { margin-top: 18px; font-size: 12px; color: var(--muted2); font-style: italic; }

/* ── TIMELINE ────────────────────────────────────────── */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.timeline-card {
  border: 0.5px solid var(--border);
  padding: 28px 24px;
  background: var(--bg);
}
.timeline-card--active {
  border-color: rgba(200,162,74,.5);
  background: var(--card);
}
.timeline-age {
  font-family: var(--ff-display);
  font-size: 60px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.tl-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(200,162,74,.12);
  padding: 8px 0;
}
.tl-row:last-of-type { border-bottom: none; }
.tl-row span:first-child { font-size: 12px; color: var(--muted); }
.tl-row span:last-child  { font-size: 12px; color: var(--text); }
.timeline-note { margin-top: 16px; font-size: 11px; color: rgba(200,162,74,.55); font-style: italic; }

/* ── TRUST ───────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,162,74,.14);
  margin-top: 32px;
}
.trust-card { background: var(--bg); padding: 32px 20px; text-align: center; }
.trust-icon  { font-size: 22px; color: var(--gold); margin-bottom: 14px; }
.trust-card p { font-size: 12px; letter-spacing: .06em; color: var(--text); }

/* ── PRODUCT REVEAL ──────────────────────────────────── */
.product-reveal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-image-wrap {
  position: relative;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 1;
  overflow: hidden;
}
.product-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,162,74,.12), transparent 65%);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  position: relative;
}
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.75; margin: 12px 0 24px; }
.product-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.product-benefits li {
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.product-benefits li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}
.product-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── INGREDIENTS ─────────────────────────────────────── */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.ing-card {
  border: 0.5px solid var(--border);
  padding: 24px;
  background: var(--bg);
  transition: background var(--transition);
}
.ing-card:hover { background: var(--card); }
.ing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.ing-star { font-size: 20px; color: var(--gold); }
.ing-dose { font-family: var(--ff-display); font-size: 18px; color: var(--gold); font-weight: 500; }
.ing-card h3 { font-family: var(--ff-display); font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.ing-role { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(200,162,74,.72); margin-bottom: 10px; display: block; }
.ing-card p  { font-size: 12px; color: var(--muted); line-height: 1.6; }
.ing-footnote { margin-top: 18px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted2); }

/* ── AUTHENTICITY ────────────────────────────────────── */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.auth-left p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-top: 16px; }
.auth-points {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-points li {
  font-size: 13px;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  line-height: 1.55;
}
.auth-points li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 9px; top: 3px; }
.auth-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.auth-card { border: 0.5px solid rgba(200,162,74,.15); padding: 20px; background: rgba(255,255,255,.02); }
.auth-origin { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(200,162,74,.65); margin-bottom: 5px; }
.auth-card h4 { font-family: var(--ff-display); font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.auth-card p  { font-size: 11px; color: var(--muted); line-height: 1.55; }

/* ── ASSESSMENT CTA ──────────────────────────────────── */
.assess-cta-section { background: rgba(255,255,255,.02); }
.assess-cta-section h2 { margin-bottom: 12px; }
.score-preview {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,162,74,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 28px;
}
.score-num  { font-family: var(--ff-display); font-size: 36px; color: var(--gold); line-height: 1; }
.score-preview small { font-size: 9px; letter-spacing: .1em; color: var(--muted2); text-transform: uppercase; margin-top: 2px; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.review-card {
  border: 0.5px solid var(--border);
  padding: 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid var(--border2);
  flex-shrink: 0;
}
.review-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 0.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-family: var(--ff-display); font-size: 15px; font-weight: 500; }
.review-meta { font-size: 10px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card blockquote { font-size: 13px; color: var(--muted); line-height: 1.65; font-style: italic; flex: 1; }

/* ── PRESS ───────────────────────────────────────────── */
.press-section { border-top: 0.5px solid rgba(200,162,74,.1); padding: 40px 0; }
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-top: 20px;
}
.press-logos span {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  color: rgba(245,240,230,0.6);
  letter-spacing: .05em;
  transition: color var(--transition);
}
.press-logos span:hover { color: var(--gold); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-container { max-width: 720px; }
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 0.5px solid rgba(200,162,74,.12);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-family: var(--ff-body);
  font-weight: 300;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { font-size: 13px; color: var(--muted); line-height: 1.75; padding-bottom: 20px; padding-right: 40px; }

/* ── FINAL CTA ───────────────────────────────────────── */
.final-cta { position: relative; overflow: hidden; }
.final-cta-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,11,19,.96) 35%, rgba(14,11,19,.35) 100%);
}
.final-cta-content {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  padding: 60px 28px;
}
.final-cta-content h2 { margin-bottom: 14px; }
.final-cta-content p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.final-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: rgba(16,11,8,.9);
  border-top: 1px solid var(--border);
  padding: 56px 5vw 28px;
}
.ftr-inner { max-width: var(--container); margin: 0 auto; padding: 0; }
.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.ftr-logo { height: 22px; width: auto; filter: brightness(0) invert(1) opacity(0.85); margin-bottom: 16px; }
.ftr-brand p { font-size: 12px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.ftr-entity  { font-size: 11px; color: var(--muted2); margin-top: 10px; }
.ftr-col h5  { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ftr-col a   { display: block; font-size: 12px; color: var(--muted); margin-bottom: 10px; transition: color var(--transition); }
.ftr-col a:hover { color: var(--gold); }
.ftr-bottom {
  border-top: 0.5px solid rgba(200,162,74,.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ftr-bottom span { font-size: 11px; color: rgba(200,162,74,.35); letter-spacing: .06em; }

/* ── BUY PAGE ────────────────────────────────────────── */
.buy-page { padding: 60px 0; }
.buy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.gallery-main {
  border: 0.5px solid var(--border);
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(200,162,74,.1), transparent 65%);
  margin-bottom: 12px;
  position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; display: block; }
.gallery-main video { width: 100%; height: 100%; object-fit: contain; display: block; background: #0e0b13; }
.gallery-thumbs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.thumb {
  border: 0.5px solid var(--border);
  width: 70px; height: 70px;
  overflow: hidden;
  background: var(--bg2);
  padding: 0;
  transition: border-color var(--transition);
  position: relative;
  flex-shrink: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.active { border-color: var(--gold); }
.thumb:hover  { border-color: var(--gold-dim); }
.thumb--video .play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,11,19,.5);
  color: var(--gold); font-size: 16px;
  pointer-events: none;
}
.gallery-tags { display: flex; gap: 1px; background: var(--border); }
.gallery-tags span { flex: 1; background: var(--bg2); text-align: center; padding: 10px 8px; font-size: 11px; letter-spacing: .06em; color: var(--muted); }

.buy-form-wrap h1 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 6px; }
.buy-tagline { font-size: 12px; color: var(--muted); margin-bottom: 28px; }

/* Pack selector */
.pack-selector { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pack-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.5px solid var(--border);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  gap: 16px;
}
.pack-option input[type="radio"] { display: none; }
.pack-option:hover { border-color: var(--gold-dim); }
.pack-option--active { border-color: var(--gold); background: var(--card); }
.pack-name { font-family: var(--ff-display); font-size: 18px; font-weight: 500; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pack-badge { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; background: var(--gold); color: #0e0b13; padding: 3px 8px; font-family: var(--ff-body); }
.pack-qty  { font-size: 12px; color: var(--muted); margin-top: 3px; }
.pack-price { text-align: right; flex-shrink: 0; }
.pack-price-main { font-family: var(--ff-display); font-size: 24px; color: var(--gold); }
.pack-price-mrp  { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.pack-save { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(200,162,74,.7); margin-top: 2px; }

/* Form */
.form-section { margin-bottom: 28px; }
.form-section-title { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--ff-body);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  width: 100%;
}
.field input:focus { outline: none; border-color: var(--gold); }
.field input::placeholder { color: var(--muted2); }

.buy-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--border);
  padding-top: 22px;
  margin-bottom: 14px;
  gap: 16px;
}
.buy-total-label { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.buy-total-price { font-family: var(--ff-display); font-size: 32px; color: var(--gold); line-height: 1; }
.buy-total-note  { font-size: 11px; color: var(--muted2); margin-top: 3px; }
.btn-pay { min-width: 180px; }

.pay-status { padding: 12px 16px; font-size: 13px; border-radius: var(--radius); border: 0.5px solid; margin-top: 12px; }
.pay-status--ok  { border-color: var(--gold); color: var(--gold2); background: var(--gold-faint); }
.pay-status--err { border-color: var(--danger); color: var(--danger); background: rgba(226,75,74,.08); }

.buy-disclaimer { font-size: 11px; color: var(--muted2); line-height: 1.55; margin-top: 12px; }
.buy-trust { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.buy-trust span { font-size: 11px; color: rgba(200,162,74,.6); }

/* ── ASSESSMENT PAGE ─────────────────────────────────── */
.assessment-page {
  min-height: 80vh;
  padding: 64px 0;
  background: var(--bg, #100b08);
}
.assessment-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 28px;
}
.assess-state h1 { text-align: center; margin-bottom: 0; }

.assess-progress-bar {
  height: 1px;
  background: rgba(200,162,74,.2);
  position: relative;
  margin-bottom: 12px;
}
.assess-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--gold);
  transition: width .4s ease;
}
.assess-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 32px;
  letter-spacing: .04em;
}
.assess-question-text {
  font-family: var(--ff-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 28px;
}
.assess-options { display: flex; flex-direction: column; gap: 10px; }
.assess-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  color: var(--text);
  font-size: 14px;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
  border-radius: var(--radius);
  gap: 12px;
}
.assess-opt:hover,
.assess-opt--selected { border-color: var(--gold); background: var(--card); }
.opt-arrow { color: var(--gold); opacity: 0; transition: opacity var(--transition); flex-shrink: 0; }
.assess-opt:hover .opt-arrow { opacity: 1; }
.assess-back {
  margin-top: 20px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  padding: 0;
  transition: color var(--transition);
}
.assess-back:hover { color: var(--gold); }

/* Result */
.score-circle-large {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,162,74,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 24px auto;
}
.score-circle-large span { font-family: var(--ff-display); font-size: 52px; color: var(--gold); line-height: 1; }
.score--good { border-color: rgba(100,200,100,.5); }
.score--good span { color: #7dc97d; }
.score--mid  { border-color: rgba(200,162,74,.5); }
.score--low  { border-color: rgba(226,75,74,.5); }
.score--low span { color: #e27d7d; }

.result-band { font-family: var(--ff-display); font-size: 22px; color: var(--text); margin-bottom: 10px; }
.result-note { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 440px; margin: 0 auto 28px; }

.result-email-wrap { background: var(--bg2); border: 0.5px solid var(--border); padding: 20px; margin-bottom: 28px; }
.result-email-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.result-email-row { display: flex; gap: 8px; flex-wrap: wrap; }
.result-input {
  flex: 1;
  min-width: 140px;
  background: var(--bg);
  border: 0.5px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--ff-body);
  border-radius: var(--radius);
}
.result-input:focus { outline: none; border-color: var(--gold); }
.result-input::placeholder { color: var(--muted2); }
.result-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ── ORDER SUCCESS ───────────────────────────────────── */
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.order-summary-box {
  border: 0.5px solid var(--border2);
  background: var(--bg2);
  padding: 20px 24px;
  text-align: left;
  margin: 0 auto;
  max-width: 440px;
}
.order-ref-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}
.order-ref-row:last-child { border-bottom: none; }
.order-ref-row span { color: var(--muted); }
.order-ref-row strong { color: var(--text); }

.pdf-guide-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--card);
  border: 0.5px solid var(--border2);
  padding: 24px 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pdf-guide-left h3 { font-family:var(--ff-display); font-size:20px; font-weight:500; margin-bottom:6px; }
.pdf-guide-left p  { font-size:13px; color:var(--muted); line-height:1.65; max-width:380px; }

/* ── POLICY PAGES ────────────────────────────────────── */
.policy-date { font-size: 12px; color: var(--muted2); margin-top: 8px; margin-bottom: 40px; }
.policy-body h2 { font-size: 20px; margin: 36px 0 12px; }
.policy-body h3 { font-size: 16px; margin: 22px 0 8px; color: var(--text); }
.policy-body p  { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.policy-body ul,
.policy-body ol { padding-left: 20px; margin-bottom: 14px; }
.policy-body li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.policy-body a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.policy-body strong { color: var(--text); }
.policy-highlight {
  border-left: 2px solid var(--gold);
  background: var(--gold-faint);
  padding: 20px 24px;
  margin: 28px 0;
}
.policy-highlight-title { font-family: var(--ff-display); font-size: 18px; margin-bottom: 8px; color: var(--text); }
.policy-highlight p { margin: 0; }

/* Assessment history */
.compare-bar { background:var(--bg2); border:0.5px solid var(--border); padding:16px 20px; margin-bottom:20px; }
.compare-bar-title { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.compare-selects { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.compare-selects select { background:var(--bg); border:0.5px solid var(--border); color:var(--text); padding:8px 12px; font-size:13px; font-family:var(--ff-body); border-radius:var(--radius); flex:1; min-width:180px; }
.compare-result { margin-bottom:24px; }
.compare-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.compare-col { border:0.5px solid var(--border); padding:20px; background:var(--bg2); }
.compare-col-title { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:12px; }
.compare-score-big { font-family:var(--ff-display); font-size:48px; font-weight:500; line-height:1; margin-bottom:4px; }
.compare-domain-row { display:flex; justify-content:space-between; padding:6px 0; border-bottom:0.5px solid var(--border); font-size:12px; }
.compare-domain-row:last-child { border-bottom:none; }
.compare-delta { font-size:11px; font-weight:500; }
.compare-delta.up   { color:#7dc97d; }
.compare-delta.down { color:#e27d7d; }
.compare-delta.same { color:var(--muted); }
.compare-summary { margin-top:14px; padding:14px; background:var(--bg); border:0.5px solid rgba(200,162,74,.2); font-size:13px; color:var(--muted); line-height:1.65; }

.assess-history-list { display:flex; flex-direction:column; gap:16px; }
.assess-history-card { border:0.5px solid var(--border); padding:22px 24px; background:var(--bg2); }
.assess-history-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:8px; }
.assess-history-no   { font-family:var(--ff-display); font-size:18px; font-weight:500; color:var(--text); }
.assess-history-date { font-size:11px; color:var(--muted); margin-top:2px; }
.assess-history-score { font-family:var(--ff-display); font-size:36px; font-weight:500; line-height:1; }
.assess-history-score small { font-size:14px; color:var(--muted); }
.assess-history-band { font-size:12px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.ah-domain-row { margin-bottom:10px; }
.ah-domain-label { display:flex; justify-content:space-between; font-size:12px; margin-bottom:4px; }
.ah-domain-track { height:3px; background:rgba(200,162,74,.12); border-radius:2px; }
.ah-domain-fill  { height:3px; border-radius:2px; }

/* ── ALERTS / STATUS ─────────────────────────────────── */
.alert { padding: 12px 16px; font-size: 13px; border-radius: var(--radius); margin-bottom: 18px; border: 0.5px solid; }
.alert-err { border-color: var(--danger); color: var(--danger); background: rgba(226,75,74,.08); }
.alert-ok  { border-color: var(--gold); color: var(--gold2); background: var(--gold-faint); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
  .product-reveal  { grid-template-columns: 1fr; gap: 40px; }
  .auth-layout     { grid-template-columns: 1fr; gap: 40px; }
  .ftr-grid        { grid-template-columns: 1fr 1fr; }
  .recog-grid      { grid-template-columns: 1fr 1fr; }
  .ing-grid        { grid-template-columns: 1fr 1fr; }
  .timeline-grid   { grid-template-columns: 1fr; gap: 12px; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .trust-grid      { grid-template-columns: 1fr 1fr; }
  .buy-inner       { grid-template-columns: 1fr; gap: 40px; }
  .main-nav        { display: none; }
  .hdr-actions .hdr-signin,
  .hdr-actions .btn-gold { display: none; }
  .hamburger       { display: flex; }
  .auth-right      { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .recog-grid  { grid-template-columns: 1fr; }
  .ing-grid    { grid-template-columns: 1fr; }
  .ftr-grid    { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr 1fr; }
  .product-benefits { grid-template-columns: 1fr; }
  .field-grid  { grid-template-columns: 1fr; }
  .final-cta-img { height: 480px; }
  .result-email-row { flex-direction: column; }
  .container   { padding: 0 18px; }

  /* Assessment — mobile tap targets and spacing */
  .assessment-page   { padding: 32px 0 60px; }
  .assessment-wrap    { padding: 0 18px; }
  .assess-question-text { font-size: clamp(20px, 6vw, 26px); margin-bottom: 22px; }
  .assess-opt {
    padding: 16px 16px;
    font-size: 14.5px;
    min-height: 52px;
    -webkit-tap-highlight-color: rgba(232,167,63,.18);
  }
  .assess-opt:active,
  .assess-opt--selected { border-color: var(--gold); background: var(--card); }
  .opt-arrow { opacity: 1; }
  .assess-domain-preview { gap: 8px; }
  .domain-chip { font-size: 11px; padding: 7px 12px; }
  .gate-form .field input { font-size: 16px; }
  .assessment-page h1 { font-size: clamp(22px, 7vw, 28px); }
}
