/* =========================================================
   ProstaVive Editorial Review — style.css
   Premium, mobile-first, conversion-optimized stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --blue: #1a7fc4;
  --blue-light: #2ba6e0;
  --blue-dark: #0f5e95;
  --navy: #0d2847;
  --navy-soft: #16365c;
  --ink: #1f2d3d;
  --muted: #5f7185;
  --line: #e4ecf3;
  --bg: #ffffff;
  --bg-soft: #f4f9fc;
  --bg-tint: #eef6fb;
  --gold: #f5a623;
  --gold-dark: #e8870a;
  --green: #1faa59;
  --green-dark: #178a47;
  --danger: #e0533d;
  --shadow-sm: 0 4px 14px rgba(13, 40, 71, .07);
  --shadow-md: 0 14px 38px rgba(13, 40, 71, .10);
  --shadow-lg: 0 28px 60px rgba(13, 40, 71, .16);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { 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, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--navy); line-height: 1.2; font-weight: 800; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }
.center { text-align: center; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.kicker {
  display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--bg-tint); padding: 7px 16px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.section-intro { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: var(--radius-pill); border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  text-align: center; line-height: 1.1;
}
.btn-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 10px 26px rgba(232, 135, 10, .38);
  position: relative; overflow: hidden;
}
.btn-cta::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); animation: shine 3.4s infinite;
}
@keyframes shine { 0%,60% { left: -120%; } 100% { left: 140%; } }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(232, 135, 10, .5); filter: brightness(1.04); }
.btn-lg { padding: 17px 38px; font-size: 1.08rem; }
.btn-xl { padding: 20px 46px; font-size: 1.18rem; }
.btn-block { width: 100%; }
.btn-nav { background: var(--blue); color: #fff; padding: 11px 22px; font-size: .92rem; box-shadow: 0 8px 18px rgba(26,127,196,.32); }
.btn-nav:hover { transform: translateY(-2px); background: var(--blue-dark); }

/* ---------- Promo Bar ---------- */
/* Sticky wrapper keeps the promo countdown + header pinned to the top */
.sticky-top { position: sticky; top: 0; z-index: 60; }

.promo-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; padding: 9px 0; position: relative; z-index: 1;
}
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.promo-text { font-weight: 700; font-size: .9rem; letter-spacing: .02em; }
.countdown { display: flex; align-items: center; gap: 6px; }
.cd-block {
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  background: rgba(255,255,255,.12); border-radius: 9px; padding: 5px 9px; min-width: 46px;
}
.cd-block span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.05rem; }
.cd-block small { font-size: .58rem; text-transform: uppercase; letter-spacing: .06em; opacity: .75; margin-top: 3px; }
.cd-sep { font-weight: 800; color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: relative; z-index: 1; background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 20px; }
.logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: -.01em; }
.logo-mark { color: var(--navy); }
.logo-accent { color: var(--blue-light); }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { font-weight: 600; font-size: .95rem; color: var(--navy-soft); position: relative; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--blue); transition: width .25s var(--ease); }
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after { width: 100%; }
.btn-nav { margin-left: 6px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease); background: #fff; border-bottom: 1px solid var(--line); }
.mobile-nav.open { max-height: 420px; padding: 14px 20px 22px; }
.mobile-nav a { padding: 12px 8px; font-weight: 600; color: var(--navy-soft); border-bottom: 1px solid var(--line); }
.mobile-nav .btn-cta { margin-top: 12px; border-bottom: none; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(43,166,224,.16), transparent 60%),
    linear-gradient(180deg, var(--bg-tint) 0%, #fff 75%);
  padding: 56px 0 64px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-block; font-weight: 700; font-size: .82rem; color: var(--blue); letter-spacing: .04em; margin-bottom: 16px; text-transform: uppercase; }
.hero-copy h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); letter-spacing: -.02em; }
.hero-sub { color: var(--muted); font-size: 1.12rem; margin-top: 18px; max-width: 560px; }
.hero-rating { display: flex; align-items: center; gap: 14px; margin: 24px 0 18px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.2rem; }
.stars-lg { font-size: 1.5rem; }
.rating-meta { color: var(--muted); font-size: .95rem; }
.rating-meta strong { color: var(--navy); font-size: 1.05rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.hero-badges li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 15px; font-size: .85rem; font-weight: 600; color: var(--navy-soft); box-shadow: var(--shadow-sm); }
.hero-note { margin-top: 14px; font-size: .85rem; color: var(--muted); }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-img-link img { filter: drop-shadow(0 30px 50px rgba(13,40,71,.18)); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-float-card {
  position: absolute; bottom: 16px; left: 4px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 14px 20px; text-align: center; border: 1px solid var(--line);
}
.hero-float-card strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; color: var(--green); }
.hero-float-card span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Trust Strip ---------- */
.trust-strip { background: var(--navy); padding: 16px 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; }
.trust-item { color: #dceaf5; font-size: .88rem; font-weight: 600; }

/* ---------- Verdict ---------- */
.verdict-card {
  display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 40px; position: relative; overflow: hidden;
}
.verdict-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: linear-gradient(var(--blue), var(--green)); }
.verdict-score { text-align: center; }
.score-ring { width: 176px; height: 176px; margin: 0 auto 18px; position: relative; }
.ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); display: block; }
.ring-svg circle { fill: none; stroke-width: 11; stroke-linecap: round; }
.ring-bg { stroke: var(--bg-tint); }
.ring-fg {
  stroke: var(--green);
  stroke-dasharray: 339.292;        /* 2 * π * r (r = 54) */
  stroke-dashoffset: 339.292;       /* starts empty */
  transition: stroke-dashoffset 1.7s var(--ease);
}
.score-ring.animate .ring-fg { stroke-dashoffset: 6.79; } /* 9.8 / 10 = 98% filled */
.score-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.num-inner { display: inline-flex; align-items: baseline; gap: 2px; line-height: 1; }
.score-num b { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 3rem; color: var(--navy); }
.score-num small { font-weight: 700; color: var(--muted); font-size: .95rem; }
.score-label { font-weight: 700; color: var(--blue); font-size: .92rem; margin-top: 4px; }

/* Gradual star reveal (verdict) */
.stars-animate span { display: inline-block; opacity: 0; transform: scale(.2) rotate(-25deg); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.stars-animate.lit span { opacity: 1; transform: scale(1) rotate(0); }
.stars-animate.lit span:nth-child(1) { transition-delay: .05s; }
.stars-animate.lit span:nth-child(2) { transition-delay: .18s; }
.stars-animate.lit span:nth-child(3) { transition-delay: .31s; }
.stars-animate.lit span:nth-child(4) { transition-delay: .44s; }
.stars-animate.lit span:nth-child(5) { transition-delay: .57s; }
.verdict-body h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 10px 0 14px; }
.verdict-body p { color: var(--muted); }
.verdict-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 20px 0 24px; }
.verdict-highlights li { font-weight: 600; color: var(--navy-soft); font-size: .95rem; }

/* ---------- Pros & Cons ---------- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pc-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.pc-card h3 { font-size: 1.4rem; margin-bottom: 18px; }
.pc-card li { padding: 11px 0 11px 34px; position: relative; border-bottom: 1px dashed var(--line); font-weight: 500; color: var(--navy-soft); }
.pc-card li:last-child { border-bottom: none; }
.pc-pros { border-top: 4px solid var(--green); }
.pc-pros li::before { content: "✔"; position: absolute; left: 0; top: 11px; color: var(--green); font-weight: 800; }
.pc-cons { border-top: 4px solid var(--danger); }
.pc-cons li::before { content: "✖"; position: absolute; left: 0; top: 11px; color: var(--danger); font-weight: 800; }

/* ---------- Analysis ---------- */
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; }
.analysis-row { padding: 6px 0; }
.ar-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.ar-head span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.ar-head strong { color: var(--green); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; }
.bar { height: 12px; background: var(--bg-tint); border-radius: var(--radius-pill); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--blue-light), var(--green)); transition: width 1.4s var(--ease); }
.bar.animate i { width: var(--w); }
.analysis-row p { color: var(--muted); font-size: .92rem; margin-top: 10px; }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.b-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; background: var(--bg-tint); border-radius: 18px; margin-bottom: 18px; }
.benefit-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.benefit-card p { color: var(--muted); font-size: .94rem; }

/* ---------- How It Works ---------- */
.how-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.how-visual { position: relative; }
.how-visual > img:first-child { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.how-mol { position: absolute; bottom: -24px; right: -10px; width: 110px; filter: drop-shadow(0 12px 22px rgba(13,40,71,.2)); animation: floaty 4s ease-in-out infinite; }
.timeline { position: relative; padding-left: 8px; }
.timeline li { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.timeline li:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 46px; bottom: 4px; width: 2px; background: var(--line); }
.t-num { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-light), var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; box-shadow: 0 8px 18px rgba(26,127,196,.35); }
.timeline h3 { font-size: 1.15rem; margin-bottom: 4px; }
.timeline p { color: var(--muted); font-size: .94rem; }

/* ---------- Ingredients ---------- */
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ing-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ing-card img { width: 140px; height: 140px; object-fit: contain; margin: 0 auto 14px; }
.ing-card h3 { font-size: 1.15rem; }
.ing-card p { color: var(--muted); font-size: .9rem; margin: 8px 0 14px; }
.ing-benefit { display: inline-block; background: var(--bg-tint); color: var(--blue-dark); font-weight: 600; font-size: .82rem; padding: 7px 14px; border-radius: var(--radius-pill); }
.ing-label { text-align: center; margin-top: 44px; }
.ing-label img { margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.label-note { color: var(--muted); font-size: .9rem; margin-top: 14px; }

/* ---------- Comparison Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 36px; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 540px; }
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table thead th { background: var(--navy); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; }
.compare-table td:first-child { font-weight: 600; color: var(--navy-soft); }
.compare-table .col-highlight { background: var(--bg-tint); font-weight: 700; color: var(--green-dark); }
.compare-table thead .col-highlight { background: var(--blue); color: #fff; }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rv-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rv-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-light), var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.rv-head strong { display: block; color: var(--navy); font-size: .98rem; }
.rv-head span { font-size: .82rem; color: var(--muted); }
.review-card p { color: var(--navy-soft); font-size: .95rem; margin: 12px 0 16px; }
.verified { font-size: .8rem; font-weight: 700; color: var(--green-dark); }

/* ---------- Offer ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.offer-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px 30px; text-align: center; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.offer-best { border: 2px solid var(--blue); box-shadow: var(--shadow-md); transform: scale(1.03); }
.offer-best:hover { transform: scale(1.03) translateY(-8px); }
.offer-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 18px; border-radius: var(--radius-pill); white-space: nowrap; }
.tag-best { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.tag-value { background: var(--green); }
.offer-card img { height: 170px; object-fit: contain; margin: 18px auto 14px; }
.offer-card h3 { font-size: 1.4rem; }
.offer-sub { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.price { margin: auto 0 8px; }
.price .old { display: block; color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.price strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.8rem; color: var(--navy); display: block; line-height: 1; }
.price small { color: var(--muted); font-size: .82rem; }
.ship { font-size: .88rem; color: var(--green-dark); font-weight: 600; margin: 12px 0 18px; }

/* ---------- Stock Indicator ---------- */
.stock { max-width: 640px; margin: 48px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 30px; box-shadow: var(--shadow-sm); text-align: center; }
.stock-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.stock-head span { color: var(--danger); font-weight: 700; font-size: .85rem; letter-spacing: .04em; }
.stock-head strong { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--navy); font-size: 1.25rem; }
.stock-bar { height: 14px; background: var(--bg-tint); border-radius: var(--radius-pill); overflow: hidden; }
.stock-bar i { display: block; height: 100%; width: 77%; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--gold), var(--danger)); position: relative; animation: pulseStock 2.4s ease-in-out infinite; }
@keyframes pulseStock { 0%,100% { opacity: 1; } 50% { opacity: .82; } }
.stock-note { color: var(--muted); font-size: .85rem; margin-top: 12px; }

/* ---------- Guarantee ---------- */
.section-guarantee { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); color: #fff; }
.guarantee-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.guarantee-seal img { margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.guarantee-copy .kicker { background: rgba(255,255,255,.12); color: #fff; }
.guarantee-copy h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.guarantee-copy p { color: #c9dcec; margin-top: 16px; }
.guarantee-copy .btn { margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.04rem; color: var(--navy); text-align: left; }
.faq-icon { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: transform .3s var(--ease), background .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }
.faq-a a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(180deg, var(--bg-tint), #fff); padding: 72px 0; }
.final-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.final-media img { margin: 0 auto; filter: drop-shadow(0 26px 46px rgba(13,40,71,.18)); }
.final-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.final-copy p { color: var(--muted); font-size: 1.08rem; margin: 16px 0 26px; }
.final-note { font-size: .9rem; color: var(--muted); margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9cde0; padding: 56px 0 30px; font-size: .9rem; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 420px; }
.footer-brand .logo { font-size: 1.5rem; }
.footer-brand .logo-mark { color: #fff; }
.footer-brand p { margin-top: 12px; color: #93acc6; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #c2d5e8; font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-disclaimers { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 14px; }
.footer-disclaimers p { color: #87a1bc; font-size: .82rem; line-height: 1.7; }
.footer-disclaimers strong { color: #d7e5f2; }
.footer-disclaimers a { color: var(--blue-light); text-decoration: underline; }
.footer-bottom { padding-top: 22px; text-align: center; color: #7e98b4; font-size: .82rem; }
.footer-bottom a { color: var(--blue-light); text-decoration: underline; }

/* ---------- Floating Mobile CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(13,40,71,.12);
  padding: 11px 16px; transform: translateY(110%); transition: transform .4s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--navy); font-size: .95rem; }
.mobile-cta span { font-size: .76rem; color: var(--muted); }
.mobile-cta .btn { padding: 12px 22px; font-size: .92rem; white-space: nowrap; }

/* ---------- Exit Intent Popup ---------- */
.exit-overlay {
  position: fixed; inset: 0; z-index: 80; background: rgba(8,24,43,.66); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.exit-overlay.show { opacity: 1; visibility: visible; }
.exit-modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 440px; width: 100%;
  padding: 38px 32px 30px; text-align: center; position: relative; box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.96); transition: transform .35s var(--ease);
}
.exit-overlay.show .exit-modal { transform: translateY(0) scale(1); }
.exit-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.9rem; line-height: 1; color: var(--muted); cursor: pointer; transition: color .2s; }
.exit-close:hover { color: var(--navy); }
.exit-img { width: 230px; margin: 0 auto 14px; filter: drop-shadow(0 16px 28px rgba(13,40,71,.2)); }
.exit-modal h2 { font-size: 1.5rem; color: var(--danger); }
.exit-modal p { color: var(--muted); margin: 12px 0 22px; }
.exit-decline { display: block; width: 100%; margin-top: 14px; background: none; border: none; color: var(--muted); font-size: .85rem; cursor: pointer; text-decoration: underline; }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal[data-anim="fade-left"] { transform: translateX(40px); }
.reveal[data-anim="fade-right"] { transform: translateX(-40px); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-rating, .hero-badges { justify-content: center; }
  .hero-media { order: -1; }
  .verdict-card { grid-template-columns: 1fr; text-align: center; }
  .verdict-card::before { width: 100%; height: 6px; inset: 0 0 auto 0; }
  .verdict-highlights { max-width: 460px; margin-inline: auto; }
  .how-grid, .guarantee-grid, .final-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-visual { max-width: 420px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid, .reviews-grid, .offer-grid { grid-template-columns: 1fr 1fr; }
  .analysis-grid { grid-template-columns: 1fr; }
  .final-media { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .main-nav, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .promo-text { font-size: .78rem; }
  .cd-block { min-width: 40px; padding: 4px 7px; }
  .mobile-cta { display: flex; }
  .section { padding: 54px 0; }
  .proscons { grid-template-columns: 1fr; }
  .offer-best { transform: none; }
  .offer-best:hover { transform: translateY(-8px); }
  body { padding-bottom: 72px; } /* room for floating mobile CTA */
}
@media (max-width: 540px) {
  .benefits-grid, .ingredients-grid, .reviews-grid, .offer-grid { grid-template-columns: 1fr; }
  .verdict-highlights { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 1.85rem; }
  .footer-top { flex-direction: column; }
  .promo-inner { gap: 10px; }
  .countdown { transform: scale(.92); }
}

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