/* =====================================================
   VenoPlus 8 — main.css
   Palette: Navy (#1a3a6e) + Gold (#f4b400) + Crimson CTA (#d9352f)
   ===================================================== */

:root {
  --navy: #1a3a6e;
  --navy-deep: #142a52;
  --navy-soft: #2c4f8c;
  --gold: #f4b400;
  --gold-deep: #d99a00;
  --crimson: #d9352f;
  --crimson-deep: #b8261f;
  --ink: #1a1f36;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --bg: #fafbfc;
  --bg-cream: #fff8e7;
  --bg-soft: #f1f4f9;
  --line: #e5e7eb;
  --white: #ffffff;
  --green: #16a34a;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,.10), 0 4px 8px rgba(15,23,42,.05);
  --shadow-xl: 0 20px 50px rgba(15,23,42,.14);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.7rem, 3.3vw, 2.4rem); margin-bottom: .8rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-bottom: .5rem; }
h4 { font-size: 1.1rem; margin-bottom: .4rem; }

p { margin-bottom: 1rem; color: var(--ink-soft); }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--crimson); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 22px; }

section { padding: 70px 0; }

/* ========== ANNOUNCEMENT BAR ========== */
.announcement {
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: .2px;
}
.announcement a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 8px;
}
.announcement a:hover { color: #fff; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; max-width: 1280px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.3rem; color: var(--navy);
}
.logo img { width: 38px; height: 38px; border-radius: 8px; }
.logo span sup { color: var(--gold); font-size: .55em; margin-left: 2px; }

nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
nav a {
  font-size: 15px; font-weight: 600; color: var(--ink); position: relative;
}
nav a:hover { color: var(--crimson); }
nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; height: 2px; width: 0;
  background: var(--crimson); transition: width .25s;
}
nav a:hover::after { width: 100%; }

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px; letter-spacing: .3px;
  border: none; cursor: pointer; transition: all .2s;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217,53,47,.4);
}
.btn-primary:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 8px 22px rgba(217,53,47,.55);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy); font-weight: 800;
  box-shadow: 0 4px 14px rgba(244,180,0,.45);
}
.btn-gold:hover {
  transform: translateY(-2px); color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(244,180,0,.6);
}
.btn-large {
  padding: 17px 38px; font-size: 17px;
}
.btn-block { display: block; width: 100%; text-align: center; }

.header-cta { display: inline-block; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #fff8e7 0%, #f7fafc 65%, #eef3fb 100%);
  padding: 60px 0 70px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,0,.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,180,0,.18); color: var(--navy-deep);
  padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: .4px;
  margin-bottom: 18px; border: 1px solid rgba(244,180,0,.4);
}
.hero h1 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hero h1 em {
  color: var(--crimson); font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(244,180,0,.35) 60%);
}
.hero-sub {
  font-size: 1.1rem; color: var(--ink-soft);
  margin-bottom: 22px; line-height: 1.6;
}
.hero-bullets {
  list-style: none; margin-bottom: 28px;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 11px; font-size: 15.5px; color: var(--ink);
  font-weight: 500;
}
.hero-bullets li svg {
  flex-shrink: 0; margin-top: 2px;
}
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

.hero-image-wrap {
  position: relative; text-align: center;
  animation: floatY 4s ease-in-out infinite;
}
.hero-image-wrap img {
  max-width: 100%; margin: 0 auto;
  filter: drop-shadow(0 25px 35px rgba(26,58,110,.22));
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.hero-stars span { font-weight: 600; color: var(--ink-soft); font-size: 14px; }
.stars { color: var(--gold); letter-spacing: 1px; font-size: 17px; }

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--white); padding: 32px 0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.trust-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 24px; align-items: center;
}
.trust-item {
  text-align: center;
}
.trust-item svg {
  margin: 0 auto 6px; color: var(--navy);
}
.trust-item span {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--ink-soft); letter-spacing: .4px;
  text-transform: uppercase;
}

/* ========== DOCTOR RECOMMENDED BAND ========== */
.doctor-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); padding: 50px 0;
}
.doctor-band-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: center;
}
.doctor-band-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}
.doctor-band h2 { color: var(--white); margin-bottom: 14px; }
.doctor-band p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.doctor-band .stat-row { display: flex; gap: 36px; margin-top: 18px; flex-wrap: wrap; }
.doctor-stat strong { display: block; font-size: 1.9rem; color: var(--gold); font-weight: 800; }
.doctor-stat span { font-size: 13px; opacity: .85; }

/* ========== AI ANSWER BLOCK ========== */
.ai-block {
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f6ff 100%);
  border-left: 4px solid var(--navy);
  padding: 20px 24px; border-radius: var(--radius-sm);
  margin: 22px 0;
}
.ai-block .ai-q {
  font-weight: 700; color: var(--navy); font-size: 1.05rem;
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.ai-block .ai-q::before {
  content: '✦'; color: var(--gold); font-size: 1.2rem;
}
.ai-block p { margin: 0; color: var(--ink); }

/* ========== WHY CHOOSE ========== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center;
}
.why-image img { max-width: 100%; filter: drop-shadow(0 15px 25px rgba(0,0,0,.15)); }
.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 14px; margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.why-list li:last-child { border: none; padding-bottom: 0; }
.why-list .why-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.why-list h3 { color: var(--navy); margin-bottom: 4px; }
.why-list p { margin: 0; font-size: 15px; }

/* ========== PROBLEM SECTION ========== */
.problem-sec {
  background: var(--navy-deep); color: var(--white);
}
.problem-sec h2 { color: var(--white); text-align: center; max-width: 800px; margin: 0 auto 20px; }
.problem-sec > .container > p { text-align: center; color: rgba(255,255,255,.8); max-width: 760px; margin: 0 auto 36px; }
.problem-sec .ai-block {
  background: rgba(255,255,255,.07); border-left-color: var(--gold);
}
.problem-sec .ai-block .ai-q { color: var(--gold); }
.problem-sec .ai-block p { color: rgba(255,255,255,.92); }
.problem-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px;
}
.problem-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .2s, background .2s;
}
.problem-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.problem-card .icon {
  width: 52px; height: 52px; background: var(--crimson);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problem-card h3 { color: var(--gold); font-size: 1.15rem; }
.problem-card p { color: rgba(255,255,255,.78); font-size: 14.5px; margin: 0; }

/* ========== WHAT IS ========== */
.what-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center;
}
.what-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.what-image { position: relative; }
.what-flag {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--navy-deep);
  padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
}

/* ========== HOW IT WORKS ========== */
.how-sec { background: var(--bg-soft); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px;
}
.how-card {
  background: var(--white); padding: 28px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold); transition: all .25s;
}
.how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--crimson); }
.how-card .num {
  display: inline-block;
  width: 42px; height: 42px; line-height: 42px; text-align: center;
  background: var(--navy); color: var(--white); border-radius: 50%;
  font-weight: 800; font-size: 17px; margin-bottom: 16px;
}
.how-card h3 { font-size: 1.1rem; }
.how-card p { font-size: 14.5px; margin: 0; }

/* ========== SVG DIAGRAM (UNIQUE) ========== */
.diagram-sec {
  background: linear-gradient(135deg, #fff8e7 0%, #f0f6ff 100%);
}
.diagram-flag {
  display: inline-block; background: var(--crimson); color: #fff;
  padding: 6px 16px; border-radius: 50px; font-size: 12px;
  font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.diagram-sec h2 { text-align: center; max-width: 760px; margin: 0 auto 14px; }
.diagram-sec .intro { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.diagram-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow-lg);
  max-width: 1020px; margin: 0 auto;
}
.diagram-wrap svg { width: 100%; height: auto; }
.diagram-caption {
  margin-top: 22px; text-align: center;
  font-size: 14.5px; color: var(--ink-soft); font-style: italic;
}

/* ========== PRICING ========== */
.pricing-sec { background: var(--bg-cream); padding: 80px 0; }
.pricing-sec h2 { text-align: center; }
.pricing-sub { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px; align-items: stretch; max-width: 1060px; margin: 0 auto;
}
.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  position: relative; transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.price-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(180deg, #fff 0%, #fffaeb 100%);
}
.price-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.price-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--crimson), var(--crimson-deep));
  color: #fff; padding: 7px 22px; border-radius: 50px;
  font-size: 12px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(217,53,47,.4);
}
.price-card .save-tag {
  display: inline-block; background: var(--gold); color: var(--navy-deep);
  padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 800; letter-spacing: .3px;
  margin-bottom: 12px;
}
.price-card h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.price-card .qty { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.price-card .product-img {
  height: 220px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.price-card.featured .product-img { height: 240px; }
.price-card .product-img img {
  max-height: 100%; max-width: 100%; object-fit: contain;
}
.price-card .per-each {
  font-size: 14px; color: var(--muted); margin-bottom: 4px;
}
.price-card .price-main {
  font-size: 2.6rem; font-weight: 800; color: var(--navy-deep);
  line-height: 1; margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.price-card .price-main .cents { font-size: 1.4rem; vertical-align: super; }
.price-card .price-main .label { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card .total {
  font-size: 14.5px; color: var(--ink); font-weight: 600; margin-bottom: 14px;
}
.price-card .strike {
  text-decoration: line-through; color: var(--muted); font-weight: 400;
  font-size: 13px; margin-right: 6px;
}
.price-card .ship {
  font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 18px;
}
.price-card .btn { margin-top: auto; }
.price-card .secure {
  margin-top: 14px; font-size: 12px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Bonus cards */
.bonus-wrap { max-width: 1060px; margin: 50px auto 0; }
.bonus-title {
  text-align: center; font-size: 1.5rem; color: var(--navy);
  margin-bottom: 8px;
}
.bonus-sub { text-align: center; max-width: 620px; margin: 0 auto 30px; }
.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.bonus-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 22px 24px; box-shadow: var(--shadow-md);
  display: flex; gap: 18px; align-items: center;
  border: 1px solid var(--line);
}
.bonus-card-img {
  flex-shrink: 0; width: 110px; height: 130px;
  display: flex; align-items: center; justify-content: center;
}
.bonus-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bonus-card .tag {
  display: inline-block; background: var(--crimson); color: #fff;
  font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 4px;
  letter-spacing: .5px; margin-bottom: 6px;
}
.bonus-card h4 { font-size: 15.5px; line-height: 1.3; color: var(--navy); margin-bottom: 6px; }
.bonus-card .val { font-size: 13px; color: var(--crimson); font-weight: 700; }
.bonus-card .val strike { color: var(--muted); font-weight: 500; margin-right: 5px; }

/* Pricing trust bar */
.pricing-trust {
  margin-top: 50px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 30px; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
  text-align: center;
}
.pricing-trust .pt-item { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.pricing-trust .pt-item svg { margin: 0 auto 6px; color: var(--green); }

/* ========== INGREDIENTS ========== */
.ing-sec { background: var(--white); }
.ing-sec h2 { text-align: center; }
.ing-sec > .container > p.intro { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.ing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.ing-card {
  display: flex; gap: 20px; padding: 24px;
  background: var(--bg-soft); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.ing-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-left-color: var(--crimson); }
.ing-card .ing-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); color: var(--crimson);
}
.ing-card .ing-tag {
  display: inline-block; background: var(--navy); color: var(--white);
  font-size: 10.5px; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: .4px; margin-bottom: 8px;
  text-transform: uppercase;
}
.ing-card.patented .ing-tag { background: var(--crimson); }
.ing-card h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--navy); }
.ing-card p { margin: 0; font-size: 14.5px; }

/* ========== BENEFITS ========== */
.benefits-sec { background: var(--bg-soft); }
.benefits-sec h2 { text-align: center; }
.benefits-sec > .container > p.intro { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.benefit-card {
  background: var(--white); padding: 26px 22px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: all .25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.benefit-card .b-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #fff8e7, #fff0c2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--crimson);
}
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.benefit-card p { font-size: 13.5px; margin: 0; line-height: 1.55; }

/* ========== TIMELINE (UNIQUE) ========== */
.timeline-sec { background: var(--white); }
.timeline-sec h2 { text-align: center; max-width: 720px; margin: 0 auto 14px; }
.timeline-sec .intro { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.timeline {
  position: relative; max-width: 940px; margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 3px; background: linear-gradient(180deg, var(--gold), var(--crimson));
  border-radius: 2px;
}
.tl-item { position: relative; padding: 0 0 40px 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -28px; top: 6px;
  width: 19px; height: 19px; background: var(--white);
  border: 4px solid var(--gold); border-radius: 50%;
  z-index: 2;
}
.tl-item.phase-3::before, .tl-item.phase-4::before { border-color: var(--crimson); }
.tl-item .week {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  margin-bottom: 6px;
}
.tl-item h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.2rem; }
.tl-item p { margin: 0; }

/* ========== COMPARISON TABLE ========== */
.compare-sec { background: var(--bg-soft); }
.compare-sec h2 { text-align: center; margin-bottom: 14px; }
.compare-sec > .container > p { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.compare-table-wrap { overflow-x: auto; max-width: 1020px; margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px; text-align: center; font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: 14px; letter-spacing: .3px;
  text-transform: uppercase;
}
.compare-table th.us { background: var(--gold); color: var(--navy-deep); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  text-align: left; font-weight: 600; color: var(--navy);
  background: var(--bg-soft);
}
.compare-table td.us {
  background: rgba(244,180,0,.13); font-weight: 700; color: var(--navy);
}
.compare-table .check { color: var(--green); font-size: 1.3rem; font-weight: bold; }
.compare-table .cross { color: var(--crimson); font-size: 1.3rem; font-weight: bold; }

/* ========== REVIEWS ========== */
.reviews-sec { background: var(--white); }
.reviews-sec h2 { text-align: center; }
.reviews-sec .reviews-meta {
  text-align: center; margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.reviews-meta .stars { font-size: 1.4rem; }
.reviews-meta strong { color: var(--navy); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review-card {
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 26px 24px; border: 1px solid var(--line);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card .quote-mark {
  position: absolute; top: 16px; right: 22px;
  font-size: 3.5rem; line-height: 1; color: rgba(244,180,0,.3);
  font-family: Georgia, serif;
}
.review-card .stars { margin-bottom: 12px; }
.review-card .verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--green);
  margin-bottom: 12px;
}
.review-card .body { font-size: 14.5px; margin-bottom: 18px; color: var(--ink); }
.reviewer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.reviewer img {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
}
.reviewer-info strong { display: block; font-size: 14.5px; color: var(--navy); }
.reviewer-info span { font-size: 12.5px; color: var(--muted); }

/* ========== GUARANTEE ========== */
.guarantee-sec {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); text-align: center;
}
.guarantee-grid {
  max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: center;
}
.guarantee-seal {
  width: 240px; height: 240px; margin: 0 auto;
  background: conic-gradient(from 0deg, var(--gold), #fff5cc, var(--gold), var(--gold-deep), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(244,180,0,.5);
  animation: rotateSeal 18s linear infinite;
}
@keyframes rotateSeal {
  to { transform: rotate(360deg); }
}
.guarantee-seal-inner {
  width: 200px; height: 200px;
  background: var(--white); border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  animation: rotateSeal 18s linear infinite reverse;
}
.guarantee-seal-inner strong {
  font-size: 3.4rem; color: var(--navy); line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
}
.guarantee-seal-inner span {
  font-size: 12px; color: var(--ink); font-weight: 700;
  letter-spacing: 2px; margin-top: 4px;
}
.guarantee-seal-inner small {
  display: block; margin-top: 6px; font-size: 11px;
  color: var(--crimson); font-weight: 700;
}
.guarantee-text { text-align: left; }
.guarantee-text h2 { color: var(--white); margin-bottom: 14px; }
.guarantee-text p { color: rgba(255,255,255,.85); }
.guarantee-text .btn { margin-top: 18px; }

/* ========== CONTRAINDICATIONS (UNIQUE) ========== */
.contra-sec { background: var(--white); }
.contra-sec h2 { text-align: center; max-width: 780px; margin: 0 auto 14px; }
.contra-sec > .container > p { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.contra-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.contra-item {
  display: flex; gap: 16px; padding: 22px 24px;
  background: #fef2f2; border-left: 4px solid var(--crimson);
  border-radius: var(--radius-sm);
}
.contra-item .x-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--crimson); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.contra-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 1.05rem; }
.contra-item p { font-size: 14px; margin: 0; }
.contra-note {
  text-align: center; max-width: 720px; margin: 32px auto 0;
  padding: 18px; background: var(--bg-soft); border-radius: var(--radius);
  font-size: 14px; color: var(--ink-soft);
}

/* ========== FAQ ========== */
.faq-sec { background: var(--bg-soft); }
.faq-sec h2 { text-align: center; }
.faq-sec .intro { text-align: center; max-width: 700px; margin: 0 auto 36px; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 56px 18px 22px;
  background: var(--white); border: none;
  text-align: left; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 700;
  color: var(--navy); position: relative;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q::after {
  content: '+'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem; color: var(--gold); font-weight: 400;
  transition: transform .25s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 500px; padding: 0 22px 22px;
}
.faq-a p { font-size: 15px; margin: 0; }

/* ========== MEDICAL REVIEWER ========== */
.reviewer-sec { background: var(--white); padding: 60px 0; }
.reviewer-card {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr; gap: 36px;
  align-items: center;
  background: var(--bg-cream); padding: 30px;
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--gold);
}
.reviewer-photo img {
  border-radius: 50%; aspect-ratio: 1/1; object-fit: cover;
  width: 200px; height: 200px; box-shadow: var(--shadow-md);
}
.reviewer-card h3 { color: var(--navy); margin-bottom: 4px; }
.reviewer-card .title { color: var(--crimson); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.reviewer-card .creds {
  list-style: none; margin-top: 10px;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.reviewer-card .creds li {
  font-size: 13px; color: var(--ink); display: flex; align-items: center; gap: 6px;
}
.reviewer-card .creds li::before {
  content: '✓'; color: var(--green); font-weight: 800;
}
.reviewer-card p { font-size: 15px; margin: 0; }

/* ========== REFERENCES ========== */
.refs-sec { background: var(--bg-soft); padding: 50px 0; }
.refs-sec h2 { text-align: center; font-size: 1.5rem; margin-bottom: 20px; }
.refs-list {
  max-width: 920px; margin: 0 auto;
  list-style: none; columns: 2; column-gap: 32px;
}
.refs-list li {
  margin-bottom: 10px; font-size: 13px;
  break-inside: avoid; color: var(--ink-soft);
}
.refs-list li a { color: var(--navy); word-break: break-all; }
.refs-list li a:hover { color: var(--crimson); text-decoration: underline; }

/* ========== FINAL CTA ========== */
.final-cta {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  color: var(--white); text-align: center; padding: 70px 0;
}
.final-cta h2 { color: var(--white); margin-bottom: 14px; max-width: 760px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 28px; font-size: 1.1rem; }
.final-cta .btn-gold { font-size: 18px; padding: 18px 44px; }
.final-cta .small {
  margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.7);
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,.78);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 38px;
}
.footer-col h4 {
  color: var(--gold); font-size: 1rem; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .8px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.78); font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.footer-contact { font-size: 13px; }
.footer-contact a { color: var(--gold); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px; font-size: 12px; line-height: 1.7;
  color: rgba(255,255,255,.6);
}
.footer-disclaimer p { margin-bottom: 10px; color: inherit; }
.footer-copy {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; font-size: 12.5px; color: rgba(255,255,255,.5);
}

/* ========== SOCIAL PROOF POPUP ========== */
.sp-popup {
  position: fixed; bottom: 20px; left: 20px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  max-width: 320px;
  z-index: 998;
  transform: translateX(-380px);
  transition: transform .45s cubic-bezier(.22,.95,.36,1.02);
  border-left: 4px solid var(--green);
}
.sp-popup.show { transform: translateX(0); }
.sp-popup .sp-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem;
}
.sp-popup .sp-text { font-size: 13px; line-height: 1.4; padding-right: 14px; }
.sp-popup .sp-text strong { color: var(--navy); font-size: 13.5px; }
.sp-popup .sp-text small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 2px; }
.sp-popup .sp-close {
  position: absolute; top: 6px; right: 8px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 18px; line-height: 1;
}

/* ========== MOBILE STICKY BAR ========== */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); padding: 10px 14px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  z-index: 997;
}
.mobile-sticky .btn { width: 100%; padding: 14px; font-size: 16px; }

/* ========== LEGAL/SIMPLE PAGES ========== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); padding: 56px 0 50px; text-align: center;
}
.page-hero h1 {
  color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; }
.page-content {
  max-width: 840px; margin: 0 auto; padding: 50px 22px;
}
.page-content h2 {
  font-size: 1.45rem; margin: 30px 0 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gold);
}
.page-content h3 { font-size: 1.15rem; margin: 22px 0 10px; }
.page-content p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.page-content ul, .page-content ol {
  padding-left: 22px; margin-bottom: 14px;
}
.page-content li { font-size: 15px; margin-bottom: 6px; color: var(--ink-soft); }

/* 404 page */
.notfound {
  text-align: center; padding: 80px 22px;
}
.notfound .big {
  font-size: clamp(5rem, 14vw, 9rem); color: var(--navy);
  font-weight: 800; line-height: 1; margin-bottom: 10px;
}
.notfound h1 { font-size: 2rem; margin-bottom: 14px; }
.notfound p { max-width: 540px; margin: 0 auto 28px; }
.notfound .helpful {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  max-width: 520px; margin: 28px auto 0;
}
.notfound .helpful a {
  background: var(--bg-soft); padding: 14px 18px;
  border-radius: var(--radius-sm); font-weight: 600;
  border: 1px solid var(--line); transition: all .2s;
}
.notfound .helpful a:hover {
  background: var(--gold); color: var(--navy-deep); border-color: var(--gold);
}

/* ========== RESPONSIVE: 900px BREAKPOINT ========== */
@media (max-width: 900px) {
  section { padding: 50px 0; }
  nav ul { display: none; }
  .header-cta .btn { padding: 10px 18px; font-size: 13px; }

  .hero { padding: 36px 0 44px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }
  /* MOBILE HERO ORDER: stars → badge → H1 → image → paragraph → bullets → CTA → trust */
  .hero-text { display: contents; }
  .hero-stars { order: 1; justify-content: center; margin-bottom: 6px; }
  .hero-badge { order: 2; align-self: center; margin-bottom: 6px; }
  .hero h1 { order: 3; margin-bottom: 6px; }
  .hero-image-wrap { order: 4; max-width: 340px; margin: 6px auto 8px; }
  .hero-sub { order: 5; margin-bottom: 18px; }
  .hero-bullets { order: 6; text-align: left; max-width: 420px; margin: 0 auto 22px; }
  .hero-cta-row { order: 7; justify-content: center; margin: 0 auto; }
  .hero-trust { order: 8; justify-content: center; margin-top: 18px; }

  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }

  .doctor-band-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .doctor-band-img { max-width: 280px; margin: 0 auto; }
  .doctor-band .stat-row { justify-content: center; gap: 22px; }

  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-image { order: -1; max-width: 360px; margin: 0 auto; }

  .problem-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .what-grid { grid-template-columns: 1fr; gap: 28px; }
  .what-image { max-width: 460px; margin: 0 auto; }

  .how-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; gap: 28px; max-width: 420px; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .price-card .product-img, .price-card.featured .product-img { height: 200px; }

  .bonus-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-trust { grid-template-columns: repeat(2, 1fr); gap: 22px; }

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

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 13px; }

  .reviews-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .guarantee-grid { grid-template-columns: 1fr; gap: 30px; }
  .guarantee-text { text-align: center; }

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

  .reviewer-card { grid-template-columns: 1fr; text-align: center; padding: 26px; }
  .reviewer-photo img { margin: 0 auto; }
  .reviewer-card .creds { justify-content: center; }

  .refs-list { columns: 1; }

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

  .mobile-sticky { display: block; }
  body { padding-bottom: 80px; }
}

/* ========== RESPONSIVE: 560px BREAKPOINT ========== */
@media (max-width: 560px) {
  section { padding: 40px 0; }
  .container { padding: 0 16px; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.1rem; }
  .hero h1 { font-size: 1.85rem; }

  .announcement { font-size: 12.5px; padding: 8px 10px; }
  .header-inner { padding: 10px 14px; }
  .logo { font-size: 1.1rem; }
  .logo img { width: 32px; height: 32px; }

  .hero { padding: 30px 0 40px; }
  .hero-bullets li { font-size: 14.5px; }

  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .trust-item span { font-size: 11px; }

  .problem-cards { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  .price-card { padding: 24px 18px; }
  .price-card .price-main { font-size: 2.2rem; }
  .price-card .product-img, .price-card.featured .product-img { height: 180px; }

  .bonus-card { flex-direction: column; text-align: center; padding: 22px 18px; }
  .bonus-card-img { width: 100%; height: 130px; }

  .pricing-trust { grid-template-columns: 1fr; gap: 16px; padding: 22px; }

  .ing-card { flex-direction: column; padding: 22px; }

  .guarantee-seal { width: 200px; height: 200px; }
  .guarantee-seal-inner { width: 165px; height: 165px; }
  .guarantee-seal-inner strong { font-size: 2.6rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand .logo { justify-content: center; display: inline-flex; }

  .sp-popup { max-width: calc(100% - 32px); left: 16px; right: 16px; }
  .sp-popup.show { transform: translateX(0); }

  .timeline { padding-left: 22px; }
  .tl-item { padding-left: 28px; }
  .tl-item::before { left: -22px; }

  .faq-q { font-size: 14.5px; padding: 16px 48px 16px 18px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 18px; }
}

/* Print-friendly */
@media print {
  .announcement, .mobile-sticky, .sp-popup, .site-header, .final-cta { display: none; }
  section { page-break-inside: avoid; }
}
