/* ==========================================================================
   LeanBurn Drops Guide — Global Stylesheet
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-deep:     #041B2D;
  --navy:          #0B4F87;
  --blue:          #1479B8;
  --teal:          #0E8F8A;
  --cta-green:     #087F5B;
  --cta-green-hov: #06684A;
  --aqua:          #27B8B2;

  /* Backgrounds */
  --hero-bg:       #EAF7FB;
  --mint-bg:       #F0FAF7;
  --blue-bg:       #F2F8FC;
  --page-bg:       #F7FAFC;
  --white:         #FFFFFF;

  /* Text */
  --ink:           #0B1F2A;
  --ink-soft:      #4B6170;
  --rule:          #D7E5EA;

  /* Accents */
  --pricing-gold:  #F2B84B;
  --success-bg:    #E9F8F1;
  --warning-bg:    #FFF8E6;

  /* Layout */
  --w-wide:   1180px;
  --w-prose:  800px;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter Tight', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-deep);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--navy-deep);
  color: #EAF7FB;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announce .bar-icon { margin-right: 8px; }
.announce strong { color: var(--aqua); font-weight: 700; }

/* ── STICKY HEADER ── */
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-link { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  color: var(--aqua);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  color: #E4EEF3;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--aqua); text-decoration: none; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-pill {
  background: linear-gradient(135deg, var(--cta-green), var(--cta-green-hov));
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  border: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 16px rgba(8,127,91,0.28);
}
.cta-pill:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(8,127,91,0.36); text-decoration: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle span::before { position: absolute; top: -8px; }
.menu-toggle span::after { position: absolute; top: 8px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  color: #E4EEF3;
  font-size: 17px;
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--aqua); text-decoration: none; }
.mobile-menu .cta-pill { margin-top: 16px; width: 100%; justify-content: center; }

/* ── BREADCRUMB ── */
.breadcrumb-wrap { background: var(--white); border-bottom: 1px solid var(--rule); }
.breadcrumb {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb span.sep { color: var(--rule); }
.breadcrumb span.current { color: var(--ink-soft); }

/* ── HERO ── */
#hero {
  position: relative;
  background: linear-gradient(180deg, var(--hero-bg) 0%, var(--page-bg) 100%);
  padding: 88px 24px 72px;
  overflow: hidden;
}
#hero::before, #hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#hero::before {
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(39,184,178,0.20), transparent 65%);
}
#hero::after {
  bottom: -200px; left: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(11,79,135,0.14), transparent 65%);
}
.hero-grid {
  position: relative;
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(20,121,184,0.12);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
h1.hero-h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
h1.hero-h1 em { font-style: italic; color: var(--blue); font-weight: 500; }
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 24px;
}
.checks { list-style: none; margin-bottom: 26px; }
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 16.5px;
  color: var(--ink-soft);
}
.checks li::before {
  content: '✓';
  color: var(--cta-green);
  font-weight: 800;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--success-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 24px; }
.trust-pill {
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
}
.trust-pill::before { content: '✓ '; color: var(--cta-green); font-weight: 700; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--cta-green), var(--cta-green-hov));
  color: #fff !important;
  padding: 17px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(8,127,91,0.32);
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  min-height: 48px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(8,127,91,0.4); text-decoration: none; }
.btn-ghost {
  background: var(--white);
  border: 1.5px solid var(--rule);
  color: var(--ink);
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 17.5px;
  transition: background 0.15s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}
.btn-ghost:hover { background: var(--blue-bg); border-color: var(--blue); text-decoration: none; }
.cta-note { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

.hero-image { position: relative; text-align: center; }
.hero-image img {
  max-width: 440px;
  margin: 0 auto;
  border-radius: 20px;
  filter: drop-shadow(0 30px 50px rgba(4,27,45,0.24));
}

/* ── QUICK FACTS ── */
.glance-wrap {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 24px;
}
.glance {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.glance-item { text-align: center; padding: 8px 12px; }
.glance-icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--hero-bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--display);
}
.glance-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 5px;
}
.glance-value { font-size: 15px; color: var(--ink); font-weight: 600; line-height: 1.45; }

/* ── EDITORIAL TEAM BYLINE ── */
.byline-wrap { background: var(--page-bg); padding: 36px 24px; }
.byline {
  max-width: var(--w-prose);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  box-shadow: 0 4px 20px rgba(4,27,45,0.05);
}
.byline-author { display: flex; align-items: center; gap: 14px; flex: 1 1 240px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.byline-meta { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.byline-meta strong { color: var(--ink); display: block; font-size: 15px; font-weight: 600; }
.byline-block { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.byline-block b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 3px;
}

/* ── SECTION HEADER BAR ── */
.section-bar {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}
.section-bar h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(29px, 3.7vw, 42px);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-bar h2 em { color: var(--aqua); font-style: italic; font-weight: 500; }
.section-bar .underline { width: 56px; height: 3px; background: var(--aqua); margin: 0 auto; border-radius: 2px; }
.section-bar .eyebrow { background: rgba(255,255,255,0.1); color: var(--aqua); margin-bottom: 16px; }

/* ── PROSE ── */
.prose-section { padding: 70px 24px; background: var(--page-bg); }
.prose-section.alt { background: var(--blue-bg); }
.prose-section.mint { background: var(--mint-bg); }
.prose {
  max-width: var(--w-prose);
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.prose p { margin-bottom: 22px; }
.prose .kicker {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 26px;
}
.prose h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(23px, 2.5vw, 27px);
  line-height: 1.3;
  color: var(--ink);
  margin: 8px 0 14px;
}
.prose ul.arrow { list-style: none; margin: 0 0 22px; }
.prose ul.arrow li { padding: 6px 0 6px 26px; position: relative; }
.prose ul.arrow li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}
.prose a.inline { color: var(--navy); border-bottom: 1px solid rgba(20,121,184,0.35); font-weight: 500; }
.prose a.inline:hover { color: var(--blue); border-color: var(--blue); text-decoration: none; }

/* ── 3-UP STEP CARDS ── */
.three-up {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 4px 18px rgba(4,27,45,0.05);
}
.step-num { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--teal); line-height: 1; margin-bottom: 14px; }
.step-card h3 { font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.step-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

/* ── BENEFITS / QUICK FACTS 4-UP ── */
.benefits, .facts-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 4px 18px rgba(4,27,45,0.05);
}
.benefit-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 12px;
}
.benefit-card h3::before { content: '◆'; color: var(--teal); margin-right: 10px; font-size: 14px; }
.benefit-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

.fact-card { text-align: center; }
.fact-card .fact-label {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal); font-weight: 700; margin-bottom: 10px;
}
.fact-card .fact-value { font-family: var(--display); font-size: 20px; color: var(--ink); font-weight: 600; line-height: 1.35; }

/* ── INGREDIENTS ── */
.ingredients {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ing-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 4px 18px rgba(4,27,45,0.05);
  position: relative;
}
.ing-num { position: absolute; top: 22px; right: 26px; font-family: var(--display); color: var(--aqua); font-size: 26px; font-weight: 600; opacity: 0.6; }
.ing-card h3 { font-family: var(--display); font-weight: 600; font-size: 20px; line-height: 1.3; color: var(--ink); margin-bottom: 6px; padding-right: 36px; }
.ing-card .role { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 10px; font-weight: 700; }
.ing-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

.ing-link-wrap {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: 0 24px 70px;
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
}
.ing-link-wrap a { color: var(--navy); border-bottom: 1px solid rgba(20,121,184,0.35); font-style: normal; font-weight: 600; }

/* ── WHY LIQUID / SMALL 3-UP ── */
.mini-cards {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 24px 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(4,27,45,0.04);
}
.mini-card .mini-icon {
  width: 40px; height: 40px; margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--mint-bg);
  color: var(--cta-green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.mini-card h4 { font-family: var(--display); font-size: 18px; color: var(--ink); margin-bottom: 8px; font-weight: 600; }
.mini-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* ── PROS & CONSIDERATIONS ── */
.pros-cons {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pc-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 4px 18px rgba(4,27,45,0.05);
}
.pc-card h3 { font-family: var(--display); font-weight: 600; font-size: 23px; color: var(--ink); margin-bottom: 18px; }
.pc-card.pros h3::before { content: '✓ '; color: var(--cta-green); }
.pc-card.remember h3::before { content: '◍ '; color: var(--blue); }
.pc-card ul { list-style: none; }
.pc-card li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 1px solid var(--rule);
}
.pc-card li:last-child { border-bottom: none; }
.pc-card.pros li::before { content: '✓'; position: absolute; left: 0; top: 11px; color: var(--cta-green); font-weight: 800; font-size: 14px; }
.pc-card.remember li::before { content: '•'; position: absolute; left: 4px; top: 8px; color: var(--blue); font-weight: 800; font-size: 20px; }

/* ── CHECKMARK CARD GRIDS (who it may suit / how to use) ── */
.check-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.check-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px 24px 24px 52px;
  position: relative;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(4,27,45,0.04);
}
.check-card::before {
  content: '✓';
  position: absolute;
  left: 20px; top: 24px;
  width: 24px; height: 24px;
  background: var(--success-bg);
  color: var(--cta-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.caution-card {
  max-width: var(--w-wide);
  margin: 0 auto 70px;
  padding: 0 24px;
}
.caution-box {
  background: var(--warning-bg);
  border: 1px solid #F1D98A;
  border-left: 4px solid var(--pricing-gold);
  border-radius: 14px;
  padding: 22px 26px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.6;
}
.caution-box b { color: var(--navy-deep); }

/* ── PRICING ── */
.pricing-wrap { background: var(--page-bg); padding: 70px 20px 80px; }
.pricing-intro { max-width: var(--w-prose); margin: 0 auto 36px; text-align: center; font-size: 16.5px; color: var(--ink-soft); }
.pricing-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 18px rgba(4,27,45,0.05);
}
.price-card.best-value {
  border: 2px solid var(--teal);
  box-shadow: 0 16px 36px rgba(14,143,138,0.18);
  transform: scale(1.045);
  z-index: 2;
}
.price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pricing-gold), #E0A932);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(242,184,75,0.4);
  white-space: nowrap;
}
.price-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-top: 10px;
}
.price-tier { font-family: var(--display); font-weight: 600; font-size: 26px; color: var(--ink); margin-top: 6px; }
.price-supply { font-size: 15px; color: var(--ink-soft); margin-top: 4px; margin-bottom: 16px; }
.price-img { height: 190px; margin: 6px 0 18px; display: flex; align-items: center; justify-content: center; width: 100%; }
.price-img img { max-height: 190px; width: auto; }
.price-amount-row { display: flex; align-items: flex-start; justify-content: center; gap: 6px; margin: 4px 0 4px; }
.price-amount { font-family: var(--body); font-weight: 900; font-size: 56px; line-height: 0.95; color: var(--ink); letter-spacing: -0.02em; }
.price-amount sup { font-size: 26px; vertical-align: top; line-height: 1.1; font-weight: 800; }
.price-per { font-family: var(--body); font-weight: 700; font-size: 15px; color: var(--ink-soft); line-height: 1.15; text-align: left; margin-top: 8px; }
.price-total-row { font-size: 15px; color: var(--ink-soft); margin: 6px 0 4px; }
.price-total-row b { color: var(--ink); }
.price-shipping { font-size: 14.5px; color: var(--teal); font-weight: 600; margin-bottom: 18px; }
.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cta-green), var(--cta-green-hov));
  color: #fff !important;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16.5px;
  padding: 15px 20px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  margin-top: auto;
  min-height: 48px;
  box-shadow: 0 8px 18px rgba(8,127,91,0.28);
}
.price-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(8,127,91,0.36); text-decoration: none; }
.price-disclaimer { max-width: var(--w-prose); margin: 36px auto 0; text-align: center; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.price-disclaimer b { color: var(--ink); }

/* ── BONUSES ── */
.bonus-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgba(4,27,45,0.04);
}
.bonus-tag {
  display: inline-block;
  background: var(--success-bg);
  color: var(--cta-green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bonus-card h4 { font-family: var(--display); font-size: 19px; color: var(--ink); margin-bottom: 8px; font-weight: 600; }
.bonus-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.bonus-note { max-width: var(--w-prose); margin: 10px auto 0; text-align: center; font-size: 14.5px; color: var(--ink-soft); padding: 0 24px 40px; }

/* ── GUARANTEE ── */
.guarantee-wrap { padding: 70px 24px; background: var(--mint-bg); }
.guarantee { max-width: var(--w-wide); margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
.seal-stage { position: relative; width: 260px; height: 260px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.seal-stage::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,127,91,0.18), transparent 70%);
}
.seal-stage img { position: relative; width: 220px; height: 220px; filter: drop-shadow(0 18px 34px rgba(8,127,91,0.24)); }
.guarantee-copy h2 { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3vw, 36px); line-height: 1.2; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.01em; }
.guarantee-copy h2 em { color: var(--teal); font-style: italic; font-weight: 500; }
.guarantee-copy p { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 20px; }
.guarantee-copy .checks { margin-bottom: 24px; }

/* ── REVIEW SCORE CARDS ── */
.reviews-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--blue);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 4px 18px rgba(4,27,45,0.05);
}
.rev-card h4 { font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.rev-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

/* ── FAQ ── */
.faq-wrap { padding: 70px 24px; background: var(--page-bg); }
.faq {
  max-width: var(--w-prose);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(4,27,45,0.05);
}
details.faq-item { border-bottom: 1px solid var(--rule); }
details.faq-item:last-child { border-bottom: none; }
details.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--display); color: var(--teal); font-weight: 700; font-size: 19px; flex-shrink: 0; }
.faq-toggle {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--hero-bg);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.2s, color 0.15s;
}
details[open] .faq-toggle { background: var(--cta-green); color: #fff; transform: rotate(45deg); }
details.faq-item .faq-body { padding: 0 26px 24px 60px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }

/* ── 30 SECONDS CARDS ── */
.thirty-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.thirty-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(4,27,45,0.04);
}
.thirty-card h4 { font-family: var(--display); font-size: 16.5px; color: var(--teal); margin-bottom: 10px; font-weight: 700; }
.thirty-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  padding: 84px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(39,184,178,0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: var(--w-prose); margin: 0 auto; }
.final-cta h2 { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; color: #fff; margin-bottom: 16px; letter-spacing: -0.01em; }
.final-cta h2 em { color: var(--aqua); font-style: italic; font-weight: 500; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.final-cta .micro { font-size: 13px; color: rgba(255,255,255,0.78); margin-top: 18px; letter-spacing: 0.01em; }
.final-cta .micro b { color: var(--aqua); }

/* ── SOURCES ── */
.sources-wrap { background: var(--page-bg); padding: 50px 24px; }
.sources {
  max-width: var(--w-prose);
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--hero-bg);
  border-radius: 18px;
  padding: 30px 34px;
}
.sources h3 { font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--ink); margin-bottom: 14px; }
.sources ul { list-style: none; margin-bottom: 22px; }
.sources li { padding: 6px 0; font-size: 15px; }
.sources li a { color: var(--navy); text-decoration: underline; font-weight: 600; }
.disclaimer { background: var(--hero-bg); border-left: 4px solid var(--blue); border-radius: 8px; padding: 16px 20px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.disclaimer b { color: var(--navy-deep); }
.affiliate-note {
  margin-top: 14px;
  background: var(--hero-bg);
  border-left: 3px solid var(--teal);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
}
.affiliate-note b { color: var(--navy-deep); }

/* ── FOOTER ── */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.78); padding: 64px 24px 32px; font-size: 14px; }
.foot-grid { max-width: var(--w-wide); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.foot-brand { font-family: var(--display); font-size: 21px; font-weight: 600; color: #fff; }
.foot p { line-height: 1.65; max-width: 320px; }
.foot-col h4 { font-family: var(--display); font-weight: 600; color: #fff; font-size: 16px; margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col li { padding: 5px 0; }
.foot-col a { color: rgba(255,255,255,0.78); }
.foot-col a:hover { color: var(--aqua); text-decoration: none; }
.foot-rule { max-width: var(--w-wide); margin: 40px auto 24px; border: none; border-top: 1px solid rgba(255,255,255,0.12); }
.foot-copy { max-width: var(--w-wide); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.62); }
.foot-disclaimers { max-width: var(--w-wide); margin: 30px auto 0; display: grid; gap: 18px; }
.foot-disclaimer { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.foot-disclaimer .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--aqua); font-weight: 700; margin-bottom: 6px; }
.foot-disclaimer p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: none; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(4,27,45,0.3);
  z-index: 55;
  font-size: 18px;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .nav-links, .nav-cta .cta-pill { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image img { max-width: 320px; }
  .glance, .facts-grid, .benefits { grid-template-columns: repeat(2, 1fr); }
  .three-up, .ingredients, .mini-cards, .pros-cons, .foot-grid, .bonus-grid, .check-grid, .reviews-grid, .thirty-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.best-value { transform: none; order: -1; }
  .guarantee { grid-template-columns: 1fr; gap: 36px; }
  .seal-stage { width: 220px; height: 220px; }
  .seal-stage img { width: 180px; height: 180px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 18px; }
  #hero { padding: 56px 20px; }
  .section-bar { padding: 44px 20px; }
  .prose-section, .three-up, .benefits, .facts-grid, .ingredients, .mini-cards, .pros-cons, .bonus-grid, .check-grid, .reviews-grid, .thirty-grid { padding: 55px 20px; }
  .pricing-wrap, .guarantee-wrap, .final-cta { padding: 55px 20px; }
  .glance, .facts-grid, .benefits, .three-up, .ingredients, .mini-cards, .pros-cons, .foot-grid, .bonus-grid, .check-grid, .reviews-grid, .thirty-grid { grid-template-columns: 1fr; }
  .byline { padding: 20px; }
  .price-amount { font-size: 48px; }
  .price-amount sup { font-size: 22px; }
  .price-tier { font-size: 22px; }
  .price-card.best-value { transform: none; }
  .prose { font-size: 18px; }
  .sources, .ai-overview { padding: 24px 20px; }
  h1.hero-h1 { font-size: 38px; }
}
