/* Orivelle main sales page */
:root {
  --ink: #0c1222;
  --ink-soft: #1a2338;
  --emerald: #0d4a42;
  --emerald-light: #156b5e;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-pale: #faf6eb;
  --cream: #faf9f6;
  --white: #ffffff;
  --muted: #5a6478;
  --muted-light: #8b95a8;
  --danger: #c0392b;
  --success: #1a7a4c;
  --cta: #d35400;
  --cta-dark: #b34700;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(12, 18, 34, 0.06);
  --shadow: 0 8px 32px rgba(12, 18, 34, 0.1);
  --shadow-lg: 0 20px 60px rgba(12, 18, 34, 0.14);
  --max: 1200px;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --header-h: 76px;
  --promo-h: 44px;
  --sticky-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--safe-bottom);
}
img { max-width: 100%; height: auto; display: block; }
video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* ── Trust strip section ── */
.section--trust { padding-top: 3rem; padding-bottom: 2rem; }

/* ── Section head left align (split sections) ── */
.section-head--left { text-align: left; margin: 0 0 2rem; }
.section-head--left-tight { text-align: left; margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.mt-lg { margin-top: 1.5rem; }
.mt-xl { margin-top: 2rem; }

/* ── Promo bar ── */
.promo-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: linear-gradient(90deg, var(--ink) 0%, var(--emerald) 100%);
  color: var(--white);
  min-height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.45rem 1rem;
  font-size: clamp(0.68rem, 2.5vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
}
.promo-top strong { color: var(--gold-light); }
.promo-top .timer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.12);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── Header ── */
.header {
  position: fixed;
  top: var(--promo-h);
  left: 0; right: 0;
  z-index: 200;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(12, 18, 34, 0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo img { height: 34px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav a:not(.btn):hover { color: var(--emerald); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-toggle:active { background: rgba(12,18,34,0.06); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  max-width: 100%;
}
.btn--cta {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
  color: var(--white);
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(211, 84, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.btn--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(211, 84, 0, 0.45); }
.btn--cta span, .btn--cta svg { position: relative; z-index: 1; }
.btn--sm { padding: 0.65rem 1.35rem; font-size: 0.8rem; }
.btn--ghost {
  background: transparent;
  border: 2px solid var(--emerald);
  color: var(--emerald);
  padding: 0.75rem 1.75rem;
}
.btn--ghost:hover { background: var(--emerald); color: var(--white); }

/* ── CTA block (reusable) ── */
.cta-zone {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 420px;
}
.cta-zone .btn--cta { width: 100%; }
.cta-zone--center { text-align: center; align-items: center; margin-inline: auto; }
.cta-zone--center .stock-pill,
.cta-zone--center .ssl-note,
.cta-zone--center .trust-icons { align-self: center; }
.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(12,18,34,0.08);
}
.stock-pill strong { color: var(--danger); }
.stock-pill img { height: 16px; }
.trust-icons { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; opacity: 0.75; }
.trust-icons img { height: 26px; width: auto; }
.ssl-note { font-size: 0.75rem; color: var(--muted-light); }
.cta-sub { font-size: 0.875rem; color: var(--muted); max-width: 420px; }
.cta-sub em { color: var(--cta); font-style: normal; font-weight: 700; }

/* ── Hero ── */
.hero {
  padding-top: calc(var(--promo-h) + var(--header-h) + 3rem);
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(21, 107, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(12,18,34,0.08);
  box-shadow: var(--shadow-sm);
}
.pill--hot { background: linear-gradient(135deg, #fff5eb, #ffe8cc); border-color: #ffd4a8; color: var(--cta); }
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.rating-row img { height: 18px; }
.rating-row strong { color: var(--ink); }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.hero-lead strong { color: var(--ink); }
.benefits { list-style: none; display: grid; gap: 0.75rem; margin-bottom: 2rem; }
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.benefits li img { width: 22px; flex-shrink: 0; margin-top: 2px; }
.hero-visual { position: relative; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.product-shot {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.testimonial-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  right: -1rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(12,18,34,0.06);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}
.testimonial-float img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--gold-pale); }
.testimonial-float .verified { color: var(--success); font-size: 0.72rem; font-weight: 600; }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark {
  background: linear-gradient(160deg, var(--ink) 0%, var(--emerald) 100%);
  color: var(--white);
}
.section--gold { background: var(--gold-pale); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section--dark .section-head .label { color: var(--gold-light); }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: rgba(255,255,255,0.75); }

/* ── Guarantee strip ── */
.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}
.g-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,18,34,0.05);
  transition: transform 0.25s;
}
.g-card:hover { transform: translateY(-4px); }
.g-card img, .g-card .icon { height: 52px; margin: 0 auto 1rem; font-size: 2.5rem; }
.g-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.g-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── Media + stats bar ── */
.media-bar {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(12,18,34,0.06);
  border-bottom: 1px solid rgba(12,18,34,0.06);
  background: var(--white);
}
.media-bar p { text-align: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 1.25rem; }
.media-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem; opacity: 0.55; filter: grayscale(1); }
.media-logos img { height: 28px; }
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(12,18,34,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
}
.stat-cell {
  background: var(--white);
  padding: 1.75rem 1rem;
  text-align: center;
}
.stat-cell .num { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--emerald); display: block; }
.stat-cell .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; display: block; }

/* ── Split layouts ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split--reverse .split-media { order: -1; }
.prose { font-size: 1.02rem; }
.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink);
}
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ── Video ── */
.vid {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16/10;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201, 162, 39, 0.3);
}
.vid video { width: 100%; height: 100%; object-fit: cover; }
.vid::before {
  content: '▶';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--emerald);
  font-size: 1.35rem;
  padding-left: 5px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  transition: opacity 0.3s;
}
.vid.is-playing::before { opacity: 0; }
.vid--portrait { aspect-ratio: 9/16; max-width: 280px; margin-inline: auto; }

/* ── Before/After carousel ── */
.ba-section { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.ba-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
}
.ba-track::-webkit-scrollbar { display: none; }
.ba-card {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,18,34,0.06);
}
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-imgs img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.ba-tag {
  position: absolute;
  top: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.ba-tag--before { left: 0.5rem; background: #fdecea; color: var(--danger); }
.ba-tag--after { right: 0.5rem; background: #e8f5ee; color: var(--success); }
.ba-img-wrap { position: relative; }
.ba-body { padding: 1.25rem; }
.ba-body h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ba-body h4 img { height: 14px; }
.ba-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.75rem; }
.ba-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.ba-chips span {
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--gold-pale);
  color: var(--emerald);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.ba-nav { display: flex; gap: 0.5rem; margin-top: 1rem; }
.ba-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(12,18,34,0.1);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.ba-nav button:hover { background: var(--emerald); color: var(--white); border-color: var(--emerald); }

/* ── Features ── */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.feat {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(12,18,34,0.05);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.feat:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
}
.feat img { width: 44px; height: 44px; flex-shrink: 0; }
.feat h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.feat p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── Mini reviews ── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-pale);
  pointer-events: none;
}
.quote p { font-size: 0.9rem; font-style: italic; color: var(--muted); margin-bottom: 1rem; position: relative; }
.quote cite { font-size: 0.8rem; font-weight: 700; font-style: normal; }
.quote-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.65rem; }
.quote-chips span { font-size: 0.68rem; background: var(--gold-pale); padding: 0.15rem 0.45rem; border-radius: 999px; color: var(--emerald); font-weight: 600; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12,18,34,0.05);
  position: relative;
}
.step-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}
.step h4 { font-size: 1.05rem; font-weight: 700; margin: 0.75rem 0 0.5rem; }
.step p { font-size: 0.875rem; color: var(--muted); }
.step .vid { margin-top: 1.25rem; aspect-ratio: 4/3; border-width: 2px; }

/* ── Ingredients ── */
.ing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.ing {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(12,18,34,0.05);
  transition: box-shadow 0.2s;
}
.ing:hover { box-shadow: var(--shadow-sm); }
.ing.hidden { display: none; }
.ing img { width: 68px; height: 68px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.ing h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.ing p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ── Success stats ── */
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.success-card {
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
}
.success-card .val {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.success-card .val::after { content: '%'; font-size: 0.5em; }
.success-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
.vid-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── Expert ── */
.expert { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; }
.expert-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.expert-photo img + img { margin-top: 1rem; max-width: 180px; }
.pullquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  padding: 1.75rem;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}
.expert-name { font-weight: 700; font-size: 1.05rem; }
.expert-role { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.urgency {
  background: linear-gradient(135deg, #fff8f0, var(--white));
  border: 2px solid #ffd4a8;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2rem;
}
.urgency-head { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; margin-bottom: 1.25rem; }
.urgency-head img { width: 32px; }
.progress { margin-bottom: 1rem; }
.progress label { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.4rem; }
.progress-bar { height: 8px; background: rgba(12,18,34,0.08); border-radius: 999px; overflow: hidden; }
.progress-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--cta), #e74c3c); border-radius: 999px; transition: width 1.2s ease; }

/* ── Reviews ── */
.reviews-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; }
.score-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--promo-h) + var(--header-h) + 1rem);
  border: 1px solid rgba(12,18,34,0.05);
}
.score-big { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: var(--emerald); line-height: 1; }
.score-big span { font-size: 1rem; color: var(--muted); font-family: var(--font-sans); font-weight: 400; }
.r-bar { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; margin: 0.35rem 0; }
.r-bar-track { flex: 1; height: 6px; background: rgba(12,18,34,0.08); border-radius: 999px; overflow: hidden; }
.r-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 999px; }
.cat-scores { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(12,18,34,0.06); }
.cat-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.3rem 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600;
  background: var(--white);
  border: 1px solid rgba(12,18,34,0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.trust-chip img { width: 16px; height: 16px; }
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12,18,34,0.05);
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
.review-name { font-weight: 700; }
.review-meta { font-size: 0.8rem; color: var(--muted-light); }
.review-stars img { height: 15px; display: inline; }
.review-title { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.review p { font-size: 0.925rem; color: var(--muted); margin-bottom: 0.75rem; }
.review-photos { display: flex; gap: 0.5rem; margin: 0.75rem 0; }
.review-photos img { width: 100px; height: 100px; object-fit: cover; border-radius: 10px; }
.review-badge { font-size: 0.72rem; font-weight: 700; color: var(--success); }
.review-helpful { font-size: 0.78rem; color: var(--muted-light); margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(12,18,34,0.06); }

/* ── Money back ── */
.guarantee-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold-pale);
}
.guarantee-block img { width: 120px; }
.guarantee-block h3 { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 0.75rem; }

/* ── FAQ ── */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(12,18,34,0.08); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
}
.faq-q svg { flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { overflow: visible; }
.faq-a-inner { padding-bottom: 1.35rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ── Final CTA banner ── */
.final-cta {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--ink) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  margin: 0 0 3rem;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,39,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; position: relative; }
.final-cta p { opacity: 0.85; margin-bottom: 1.5rem; position: relative; }

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
  font-size: 0.875rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.footer h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer a { display: block; padding: 0.3rem 0; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer a:hover { color: var(--gold-light); }
.footer-disc { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-copy { text-align: center; margin-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── Sticky elements ── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 250;
  background: rgba(250,249,246,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, var(--safe-bottom));
  box-shadow: 0 -4px 24px rgba(12,18,34,0.12);
  border-top: 1px solid rgba(12,18,34,0.06);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .btn { width: 100%; max-width: none; padding: 0.9rem; font-size: 0.9rem; }
.sticky-bar-inner { display: flex; align-items: center; gap: 1rem; max-width: var(--max); margin: 0 auto; }
.sticky-bar-text { flex: 1; font-size: 0.8rem; font-weight: 600; display: none; }
.sticky-bar-text strong { color: var(--cta); }

.floating-cta {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 240;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 1rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s;
}
.floating-cta.visible { opacity: 1; }

/* ── Responsive ── */
@media (min-width: 961px) {
  .floating-cta { display: block; }
  .sticky-bar-text { display: block; }
  .cta-zone { align-items: flex-start; max-width: none; }
  .cta-zone .btn--cta { width: auto; min-width: 280px; }
  .cta-zone--center { align-items: center; }
  .cta-zone--center .btn--cta { width: auto; min-width: 300px; }
}

@media (max-width: 960px) {
  :root {
    --header-h: 60px;
    --promo-h: 50px;
    --sticky-h: 68px;
  }

  .wrap { width: min(100% - 1.25rem, var(--max)); }

  .promo-top {
    position: fixed;
    top: 0;
    padding-top: max(0.35rem, env(safe-area-inset-top));
    min-height: var(--promo-h);
  }

  .header {
    position: fixed;
    top: var(--promo-h);
    left: 0;
    right: 0;
  }
  .header-inner { height: var(--header-h); position: relative; }

  .hero {
    padding-top: calc(var(--promo-h) + var(--header-h) + 1.25rem);
    padding-bottom: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  .hero-lead { font-size: 1rem; max-width: none; }
  .rating-row { flex-wrap: wrap; font-size: 0.82rem; gap: 0.4rem; }
  .benefits li { font-size: 0.9rem; }

  .split, .ba-section, .expert, .reviews-wrap, .guarantee-block { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split-media { order: 0; }
  .split-media { max-width: 520px; margin-inline: auto; width: 100%; }

  .guarantee-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0;
  }
  .section--trust { padding-top: 2rem; padding-bottom: 1.5rem; }
  .g-card { padding: 1.5rem 1.25rem; }

  .features, .steps, .success-grid, .quotes { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin: 2rem 0; }
  .stat-cell { padding: 1.25rem 0.75rem; }
  .stat-cell .num { font-size: 1.25rem; }

  .media-logos { gap: 1.25rem 1.75rem; }
  .media-logos img { height: 22px; }

  .ba-section { gap: 1.5rem; }
  .ba-track { margin-inline: -0.25rem; padding-inline: 0.25rem; scroll-padding-inline: 0.25rem; }
  .ba-card { flex: 0 0 min(300px, 88vw); }

  .vid-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
  }
  .vid-row::-webkit-scrollbar { display: none; }
  .vid-row .vid--portrait {
    flex: 0 0 min(220px, 72vw);
    scroll-snap-align: center;
    max-width: none;
  }

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

  .expert-photo { max-width: 280px; margin-inline: auto; text-align: center; }
  .expert-photo img + img { margin-inline: auto; }

  .guarantee-block {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    text-align: center;
    gap: 1.5rem;
  }
  .guarantee-block img { margin-inline: auto; width: 96px; }

  .reviews-wrap { gap: 1.5rem; }
  .score-panel { position: static; padding: 1.5rem; }
  .review-photos { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding-bottom: 0.25rem; }
  .review-photos::-webkit-scrollbar { display: none; }
  .review-photos img { flex-shrink: 0; }

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

  /* Mobile nav drawer */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid rgba(12,18,34,0.08);
    box-shadow: var(--shadow);
    gap: 0.25rem;
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) {
    padding: 0.85rem 0.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(12,18,34,0.05);
  }
  .nav a.btn { width: 100%; margin-top: 0.5rem; justify-content: center; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .section { padding: 3.25rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .section-head--left, .section-head--left-tight { margin-bottom: 1.5rem; }

  .final-cta {
    margin-inline: -0.625rem;
    border-radius: var(--radius);
    padding: 2.5rem 1.25rem;
  }

  .testimonial-float {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 1rem;
  }
  .product-shot { animation: none; }

  .sticky-bar {
    display: block;
    padding-bottom: max(0.75rem, var(--safe-bottom));
  }
  body { padding-bottom: calc(var(--sticky-h) + var(--safe-bottom)); }

  .pullquote { font-size: 1.05rem; padding: 1.25rem; }
  .urgency { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 1rem, var(--max)); }
  .section { padding: 2.75rem 0; }
  .pills { gap: 0.35rem; }
  .pill { font-size: 0.7rem; padding: 0.3rem 0.65rem; }
  .btn--cta { padding: 0.95rem 1.25rem; font-size: 0.82rem; }
  .feat { padding: 1.25rem; gap: 1rem; }
  .step { padding: 1.5rem 1.15rem; }
  .quote { padding: 1.35rem; }
  .faq-q { font-size: 0.92rem; padding: 1.1rem 0; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-cell .lbl { font-size: 0.7rem; }
  .sticky-bar-inner { gap: 0.65rem; }
  .sticky-bar-text { font-size: 0.72rem; }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .nav { gap: 1.25rem; }
  .nav a:not(.btn) { font-size: 0.8rem; }
  .hero-grid { gap: 2.5rem; }
  .split { gap: 2.5rem; }
}

@media (min-width: 1200px) {
  .hero-grid { gap: 4.5rem; }
  .hero h1 { font-size: 3.35rem; }
  .split { gap: 5rem; }
  .prose { font-size: 1.05rem; }
  .section { padding: 5.5rem 0; }
  .g-card { padding: 2.25rem 1.75rem; }
}
