/* ==========================================================================
   v25.97.2 — Static HTML (Premium Clinical port)
   Mirrors the visual system of templates/nextjs-premium/app/globals.css.
   Theme tokens substituted at build time from siteData.theme.
   ========================================================================== */

:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  --ink: #0a0f1c;
  --ink-strong: #000;
  --ink-soft: #2d3748;
  --muted: #475569;
  --muted-soft: #64748b;

  --paper: #ffffff;
  --paper-warm: #faf9f6;
  --paper-section: #f4f2ec;
  --paper-card: #ffffff;

  --rule: #e8e4dc;
  --rule-strong: #d4cfc2;

  --accent: #dc2626;
  --accent-dark: #bb2020;
  --accent-soft: #fdf1f0;
  --accent-glow: rgba(200, 52, 44, 0.12);

  --bar-bg: #0c1e3e;
  --bar-deep: #061630;

  --success: #15803d;
  --success-soft: #dcfce7;
  --gold: #f59e0b;

  --w-narrow: 680px;
  --w-prose: 920px;
  --w-wide: 1200px;
  --w-max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 28px;
}

/* v25.97.13 — render reveal elements VISIBLE by default.
   Prior version hid them at opacity:0 until IntersectionObserver added
   `.visible`. For tall sections (e.g. ingredients with 24 blocks of
   ~5000px), the 12% threshold never fired and the section stayed
   permanently invisible. Now content always renders; JS-driven animation
   is a fade-in enhancement on `.pre-animate` only. */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1), transform .9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.pre-animate {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

/* ==========================================================================
   TOP STRIP
   ========================================================================== */
.top-strip {
  background: linear-gradient(90deg, #0c1e3e 0%, #1a2e5a 50%, #0c1e3e 100%);
  color: rgba(255,255,255,0.95);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.top-strip strong { color: #fff; font-weight: 700; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(232, 228, 220, 0.6);
}
.site-header-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand-logo-tm {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 2px;
  position: relative;
  top: -8px;
}

.site-nav {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-soft);
}
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  box-shadow: 0 8px 24px rgba(200,52,44,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
}
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,52,44,0.35);
}

/* ==========================================================================
   SECTION BAR (deep navy heading between sections)
   ========================================================================== */
.section-bar {
  background: linear-gradient(180deg, var(--bar-bg) 0%, #0a1a33 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,52,44,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245,158,11,0.08) 0%, transparent 50%);
}
.section-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}
.section-bar h2 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
  z-index: 0;
}
.hero-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(200,52,44,0.25);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  margin: 0 0 26px;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.hero-sub {
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
  max-width: 540px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-bullets .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.15);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow:
    0 12px 28px rgba(200,52,44,0.32),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(200,52,44,0.42),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary.btn-lg {
  padding: 20px 40px;
  font-size: 17px;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-strong);
  border: 1.5px solid var(--rule-strong);
}
.btn-ghost:hover {
  border-color: var(--ink-strong);
  background: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.hero-trust-mini {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.hero-trust-mini .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.hero-trust-mini .count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink-strong);
}
.hero-trust-mini .count span {
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  margin-left: 6px;
  font-family: var(--font-body);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.hero-product-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 560px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 40px 60px rgba(12, 30, 62, 0.35))
    drop-shadow(0 20px 30px rgba(12, 30, 62, 0.2));
  /* v25.97.15 — gentle hero wobble (matches suplements.store premium feel).
     Combined float (translateY) + subtle rotate gives a "breathing" effect
     without distracting from the product. Respects prefers-reduced-motion. */
  animation: heroProductWobble 6s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: transform;
}

@keyframes heroProductWobble {
  0%, 100% {
    transform: translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.2deg);
  }
}
.hero-decor {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 65%);
  z-index: 1;
}

/* ==========================================================================
   v25.99.2 — HERO FLOATING ACCENTS (premium decorative SVG layer)
   ========================================================================== */
.hero-accent {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(12, 30, 62, 0.22));
  will-change: transform;
}
/* v25.99.4 — Repositioned to corners so they frame the product
   without crowding. One single sparkle for subtle accent. */
.hero-accent-discount {
  top: 2%;
  right: 0%;
  width: 120px;
  height: 120px;
  animation: heroAccentFloat 5s ease-in-out infinite;
  transform-origin: center;
}
.hero-accent-natural {
  bottom: 4%;
  left: 0%;
  width: 110px;
  height: 100px;
  animation: heroAccentFloat 6s ease-in-out infinite 1s;
}
.hero-accent-guarantee {
  bottom: 6%;
  right: 0%;
  width: 92px;
  height: 92px;
  animation: heroAccentFloat 6.5s ease-in-out infinite 1.5s;
}
.hero-accent-guarantee svg { width: 100%; height: 100%; }
.hero-accent-sparkle {
  filter: drop-shadow(0 4px 10px rgba(251, 191, 36, 0.35));
}
.hero-accent-sparkle-1 {
  top: 14%;
  left: 4%;
  width: 32px;
  height: 32px;
  animation: heroSparkleSpin 7s linear infinite;
}

@keyframes heroAccentFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-10px) rotate(6deg); }
}
@keyframes heroSparkleSpin {
  0%   { transform: rotate(0deg) scale(1); opacity: 0.85; }
  50%  { transform: rotate(180deg) scale(1.15); opacity: 1; }
  100% { transform: rotate(360deg) scale(1); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-accent,
  .hero-accent-sparkle { animation: none !important; }
}
@media (max-width: 768px) {
  .hero-accent-discount { width: 76px; height: 76px; top: 2%; right: 2%; }
  .hero-accent-natural { width: 62px; height: 62px; bottom: 6%; left: 4%; }
  .hero-accent-guarantee { width: 56px; height: 56px; bottom: 8%; right: 4%; }
  .hero-accent-sparkle-1 { width: 28px; height: 28px; }
  .hero-accent-sparkle-2 { width: 22px; height: 22px; }
  .hero-accent-sparkle-3 { width: 18px; height: 18px; }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--paper-card);
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-item::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
  font-size: 16px;
}

/* ==========================================================================
   EDITORIAL BYLINE
   ========================================================================== */
.editorial-byline {
  background: var(--paper-warm);
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.byline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.byline-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}
.byline-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-strong);
}
.byline-date {
  font-size: 13px;
  color: var(--muted);
}
.byline-badge {
  background: var(--success-soft);
  color: var(--success);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   ANSWER FIRST
   ========================================================================== */
.answer-first {
  padding: 48px 0;
  background: var(--paper-warm);
}
.answer-first p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: var(--w-narrow);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.answer-first strong {
  color: var(--accent-dark);
  font-weight: 800;
}

/* ==========================================================================
   KEY TAKEAWAYS (AEO box — extracted by AI Overviews + Bing Copilot)
   ========================================================================== */
.key-takeaways-section {
  padding: 32px 0 24px;
  background: var(--paper-warm);
}
.key-takeaways-card {
  max-width: var(--w-prose);
  margin: 0 auto;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 12px 32px rgba(12, 30, 62, 0.08);
}
.key-takeaways-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.key-takeaways-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.32);
}
.key-takeaways-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-strong);
  margin: 0;
  letter-spacing: -0.01em;
}
.key-takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-takeaways-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--rule);
}
.key-takeaways-list li:last-child { border-bottom: none; }
.key-takeaways-list .kt-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}
.key-takeaways-list .kt-text { flex: 1; }

/* ==========================================================================
   PROSE WRAP (WhyChoose / MainBenefits / Ingredients)
   ========================================================================== */
section { padding: 48px 0; position: relative; }
.prose-wrap {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: 52px 28px 32px;
}
.prose-wrap p {
  font-size: 19px;
  line-height: 1.8;
  margin: 0 0 20px;
  color: var(--ink-soft);
}
.prose-wrap h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 38px 0 16px;
  color: var(--ink-strong);
}
.prose-wrap h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 19px;
  margin: 24px 0 12px;
  color: var(--ink-strong);
}
.arrow-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
}
.arrow-list li {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-left: 36px;
  position: relative;
  margin: 8px 0;
}
.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

.ingredient-block {
  margin: 32px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.ingredient-block:last-child {
  border-bottom: none;
}
.ingredient-role {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ==========================================================================
   REVIEWS GRID
   ========================================================================== */
.reviews-section {
  background: var(--paper-warm);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(12, 30, 62, 0.06);
  transition: all .25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 30, 62, 0.12);
}
.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 22px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-initials {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}
.review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-strong);
}
.review-location {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */
.pricing-section {
  background: var(--paper-warm);
  padding: 64px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--paper-card);
  border: 2px solid var(--rule);
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 8px 24px rgba(12, 30, 62, 0.06);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(12, 30, 62, 0.12);
}
.price-card.featured {
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 24px 48px rgba(200,52,44,0.18);
  z-index: 1;
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.best-value-sticker {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(245,158,11,0.45));
  transform: rotate(12deg);
}
.best-value-sticker svg { display: block; }

.price-tier-header {
  padding: 18px 22px;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
  color: var(--muted);
}
.price-card.featured .price-tier-header {
  background: linear-gradient(180deg, var(--bar-bg) 0%, #0a1a33 100%);
  color: #fff;
  border-bottom: 3px solid var(--accent);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.price-tier-header-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}
.price-tier-header-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}

.price-card-body {
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.price-qty-header {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
  margin: 0;
}
.price-qty-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 16px;
}

.price-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 20px;
}
.price-product-image {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(12, 30, 62, 0.18));
}
.bottle-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 100%;
  position: relative;
}
.bottle-row svg {
  filter: drop-shadow(0 8px 14px rgba(12, 30, 62, 0.22));
}
.bottle-row.bottles-1 svg { width: 60px; height: 90px; }
.bottle-row.bottles-2 svg { width: 52px; height: 80px; }
.bottle-row.bottles-3 svg { width: 44px; height: 72px; }
.bottle-row.bottles-4 svg,
.bottle-row.bottles-5 svg,
.bottle-row.bottles-6 svg { width: 38px; height: 62px; }
.bottle-row-badge {
  position: absolute;
  top: 8px;
  right: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 999px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}
.price-now-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.price-card.featured .price-now-big { color: #1e3a8a; }
.price-now-unit {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.price-card.featured .price-now-unit { color: #1e40af; }

.price-compare {
  font-size: 15px;
  margin: 8px 0 18px;
  color: var(--muted);
}
.price-compare del {
  color: var(--muted-soft);
  font-weight: 500;
  margin-right: 6px;
}
.price-compare .now {
  color: var(--ink-strong);
  font-weight: 800;
}

.price-benefits {
  list-style: none;
  padding: 14px 16px;
  margin: 0 0 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(200,52,44,0.18);
  border-radius: 12px;
  width: 100%;
}
.price-benefits li {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
  padding: 4px 0 4px 22px;
  position: relative;
}
.price-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.price-benefits .shipping { color: var(--success); }
.price-benefits .shipping::before { background: var(--success); }

.price-savings-badge {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 4px 0 18px;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.32);
}

.buy-now-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 17px 24px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .25s ease;
  box-shadow:
    0 12px 24px rgba(200,52,44,0.32),
    inset 0 1px 0 rgba(255,255,255,0.18);
  margin-bottom: 14px;
}
.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(200,52,44,0.42);
}

.payment-icons {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.payment-icon {
  width: 38px;
  height: 24px;
  display: block;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
/* Legacy text-span fallback in case older content slips through */
.payment-icons span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--muted);
}

.pricing-tagline {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 32px;
  font-weight: 600;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-section { padding: 64px 0; }
.section-intro {
  text-align: center;
  font-size: 19px;
  color: var(--muted);
  max-width: var(--w-narrow);
  margin: 0 auto 40px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(12, 30, 62, 0.06);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(200,52,44,0.32);
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--ink-strong);
}
.step-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ==========================================================================
   BONUSES
   ========================================================================== */
.bonuses-section {
  padding: 64px 0;
  background: var(--paper-section);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.bonus-card {
  background: var(--paper-card);
  border: 2px dashed var(--accent);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  text-align: center;
}
.bonus-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.bonus-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 18px;
  border-radius: 12px;
  filter: drop-shadow(0 12px 24px rgba(12, 30, 62, 0.18));
}
.bonus-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink-strong);
}
.bonus-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.bonus-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}

/* ==========================================================================
   GUARANTEE
   ========================================================================== */
.guarantee-section {
  padding: 64px 0;
  background: var(--paper-warm);
}
.guarantee-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 36px rgba(12, 30, 62, 0.08);
}
.guarantee-seal {
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-seal img {
  max-width: 200px;
  height: auto;
}
.guarantee-badge-fallback {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 32px rgba(200,52,44,0.35);
  border: 4px solid rgba(255,255,255,0.4);
}
.gb-days {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.gb-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.guarantee-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 36px);
  margin: 0 0 14px;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}
.guarantee-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { padding: 64px 0; }
.faq-list {
  max-width: var(--w-prose);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(200,52,44,0.1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-strong);
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 26px 22px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ==========================================================================
   HOW TO USE / WHERE TO BUY / WHAT HAPPENS AFTER CLICK
   ========================================================================== */
.how-to-use-section,
.where-to-buy-section,
.what-happens-section {
  padding: 64px 0;
}
.where-to-buy-section { background: var(--paper-warm); }
.what-happens-section { background: var(--paper-section); }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.journey-card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 6px 20px rgba(12, 30, 62, 0.06);
}
.journey-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink-strong);
}
.journey-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ==========================================================================
   PROS & CONS
   ========================================================================== */
.pros-cons-section {
  padding: 64px 0;
  background: var(--paper-warm);
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--w-prose);
  margin: 0 auto;
}
.pros-col, .cons-col {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 8px 24px rgba(12, 30, 62, 0.06);
}
.pros-col { border-top: 4px solid var(--success); }
.cons-col { border-top: 4px solid var(--muted); }
.pros-cons-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.pros-cons-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  color: var(--ink-strong);
}
.pros-cons-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 4px;
}
.pros-badge { background: var(--success-soft); color: var(--success); }
.cons-badge { background: #f1f5f9; color: var(--muted); }

.pros-list, .cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-list li, .cons-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--success);
  font-weight: 900;
  font-size: 16px;
}
.cons-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 16px;
}

/* ==========================================================================
   FINAL VERDICT
   ========================================================================== */
.final-verdict-section {
  padding: 56px 0;
  background: var(--paper-warm);
}
.final-verdict-section .prose-wrap p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-style: italic;
}

/* ==========================================================================
   BOTTLE SHOWCASE (largest-bundle image + perks + main CTA, pre-FinalCta)
   ========================================================================== */
.bottle-showcase-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper-section) 100%);
}
.bottle-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--w-wide);
  margin: 0 auto;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(12, 30, 62, 0.12);
  position: relative;
  overflow: hidden;
}
.bottle-showcase-card::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.bottle-showcase-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottle-showcase-image img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter:
    drop-shadow(0 32px 48px rgba(12, 30, 62, 0.35))
    drop-shadow(0 16px 24px rgba(12, 30, 62, 0.2));
}
.bottle-showcase-copy {
  position: relative;
  z-index: 1;
}
.bottle-showcase-kicker {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(200,52,44,0.32);
}
.bottle-showcase-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  margin: 0 0 18px;
}
.bottle-showcase-copy > p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.bottle-showcase-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.bottle-showcase-perks li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bottle-showcase-perks .perk-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-top: 1px;
}
.bottle-showcase-perks strong { color: var(--ink-strong); }
.bottle-showcase-microproof {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section { padding: 64px 0 80px; }
.final-cta-card {
  background: linear-gradient(135deg, var(--bar-bg) 0%, #0a1a33 100%);
  color: #fff;
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12, 30, 62, 0.32);
}
.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,52,44,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.final-cta-card p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.final-cta-card .btn {
  position: relative;
  z-index: 1;
}
.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.final-cta-trust span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bar-bg);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 24px;
}
.site-footer .brand-logo { color: #fff; }
.site-footer .brand-logo-tm { color: rgba(255,255,255,0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-tag {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-disclosure {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-disclosure p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}
.footer-disclosure strong { color: rgba(255,255,255,0.8); }

.footer-copyright {
  padding-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ==========================================================================
   STICKY CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 250;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 36px rgba(200,52,44,0.45);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), opacity .35s ease;
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta-arrow { font-size: 18px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    min-height: 360px;
    order: -1;
  }
  .hero-decor {
    width: 400px;
    height: 400px;
  }
  .hero-product-image { max-height: 380px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .bottle-showcase-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .bottle-showcase-image img {
    max-height: 320px;
  }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .site-header { padding: 14px 0; }
  .site-header-inner { gap: 14px; padding: 0 18px; }
  .site-nav { display: none; }
  .brand-logo { font-size: 22px; }
  .nav-cta { padding: 10px 18px; font-size: 14px; }
  .hero { padding: 48px 0 64px; }
  .hero-inner { padding: 0 20px; gap: 36px; }
  .hero-title { font-size: clamp(30px, 8vw, 40px); }
  .hero-sub { font-size: 18px; }
  .container { padding: 0 20px; }
  .section-bar { padding: 44px 20px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .best-value-sticker {
    top: -16px;
    right: -16px;
  }
  .best-value-sticker svg {
    width: 80px;
    height: 80px;
  }
  .reviews-grid,
  .steps-grid,
  .bonuses-grid,
  .journey-grid,
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .prose-wrap { padding: 36px 20px 16px; }
  .prose-wrap p { font-size: 17px; }
  .answer-first p { font-size: 18px; }
  .final-cta-card { padding: 36px 24px; }
  .sticky-cta {
    bottom: 14px;
    padding: 14px 22px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
