/* ═══════════════════════════════════════════════════════════
   JellyFil — Main Stylesheet
   Palette: strict blue + white only
   ═══════════════════════════════════════════════════════════ */

:root {
  --royal: #0F3F8E;
  --navy: #051836;
  --accent-blue: #1E5FCB;
  --sky-tint: #DCE7F7;
  --soft-bg: #F5F8FD;
  --white: #FFFFFF;
  --text: #1A2233;
  --text-mid: #4A5468;
  --text-light: #8592A6;
  --border: #E1E9F5;
  --hero-gradient: radial-gradient(at center center, #0F3F8E 0%, #051836 100%);
  --shadow-sm: 0 2px 8px rgba(15,63,142,0.08);
  --shadow-md: 0 10px 30px rgba(15,63,142,0.12);
  --shadow-lg: 0 20px 50px rgba(15,63,142,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

strong { font-weight: 700; color: var(--navy); }
em { font-style: italic; color: var(--royal); }

/* ═══════════════ LAYOUT ═══════════════ */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal);
  background: var(--sky-tint);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 32px;
}
.s-head { text-align: center; margin-bottom: 50px; }
.s-head h2 { margin-bottom: 12px; }

/* ═══════════════ TICKER ═══════════════ */
.ticker {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: slide 30s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ticker-track span { padding: 0 32px; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand span { color: var(--royal); }
.nav-links { display: flex; gap: 30px; font-size: 15px; font-weight: 600; color: var(--text-mid); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--royal); }
.nav-btn {
  background: var(--royal);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: background 0.25s;
}
.nav-btn:hover { background: var(--navy); }
.nav-mobile-btn {
  display: none;
  background: var(--royal);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
}

/* ═══════════════ COUNTDOWN BAR ═══════════════ */
.timer-bar {
  background: var(--sky-tint);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.timer-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.timer-clock { display: flex; gap: 5px; align-items: center; }
.tnum {
  background: var(--royal);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  min-width: 46px;
  text-align: center;
}
.tcolon { color: var(--royal); font-weight: 700; font-size: 20px; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  background-image: var(--hero-gradient);
  background-color: var(--royal);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1, .hero h2, .hero h3 { color: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  margin: 22px 0 30px;
  max-width: 560px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}
.chip::before { content: "✓"; font-weight: 800; color: var(--white); }
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  color: var(--royal);
  font-weight: 800;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.cta-primary:hover {
  background: var(--sky-tint);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.32);
}
.cta-primary::after { content: "→"; font-size: 20px; transition: transform 0.25s; }
.cta-primary:hover::after { transform: translateX(4px); }
.hero-rating { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-rating .s { color: var(--white); letter-spacing: 3px; font-size: 15px; }
.hero-img-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-img-wrap img { max-width: 100%; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4)); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .chips { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* ═══════════════ TRUST STRIP ═══════════════ */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 32px 48px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item img { height: 44px; width: auto; opacity: 0.85; }

/* ═══════════════ TWO-COL ═══════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.two-col.reverse { grid-template-columns: 1.1fr 1fr; }
.two-col img { border-radius: var(--radius-lg); }
.two-col p { margin-bottom: 18px; color: var(--text-mid); font-size: 1.05rem; line-height: 1.8; }
.two-col p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════ WHY CHOOSE / BENEFITS CARDS ═══════════════ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--royal);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sky-tint);
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--text-mid); font-size: 15.5px; line-height: 1.65; }
@media (max-width: 880px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }

.section-soft { background: var(--soft-bg); }

/* ═══════════════ INGREDIENTS ═══════════════ */
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.ing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ing-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal);
  box-shadow: var(--shadow-md);
}
.ing-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.ing-latin { color: var(--text-light); font-size: 13px; font-style: italic; margin-bottom: 12px; }
.ing-desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.65; }
.blend-note {
  background: var(--sky-tint);
  border-left: 4px solid var(--royal);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 30px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
}
@media (max-width: 880px) { .ing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ing-grid { grid-template-columns: 1fr; } }

/* ═══════════════ HOW IT WORKS STEPS ═══════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: var(--royal); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 800;
  color: var(--royal);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-mid); font-size: 15px; line-height: 1.6; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ═══════════════ WHO IS IT FOR ═══════════════ */
.who-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; max-width: 780px; margin-left: auto; margin-right: auto; }
.who-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.who-item::before {
  content: "✓";
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sky-tint);
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 560px) { .who-list { grid-template-columns: 1fr; } }

/* ═══════════════ DAILY USAGE TIMELINE ═══════════════ */
.timeline { max-width: 820px; margin: 40px auto 0; }
.tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: none; }
.tl-marker {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--royal);
  line-height: 1;
}
.tl-marker small { display: block; font-size: 12px; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.12em; color: var(--text-light); margin-top: 4px; text-transform: uppercase; }
.tl-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tl-body p { color: var(--text-mid); font-size: 15.5px; line-height: 1.65; }
@media (max-width: 560px) { .tl-item { grid-template-columns: 1fr; gap: 8px; } }

/* ═══════════════ COMPARISON TABLE ═══════════════ */
.compare {
  max-width: 900px; margin: 40px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.compare th { background: var(--royal); color: var(--white); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.compare th.brand-col { background: var(--navy); }
.compare td.check { color: var(--royal); font-weight: 800; text-align: center; font-size: 20px; }
.compare td.no { color: var(--text-light); font-weight: 700; text-align: center; font-size: 20px; }
.compare td:first-child { font-weight: 600; color: var(--navy); }
.compare tr:last-child td { border-bottom: none; }
@media (max-width: 640px) { .compare th, .compare td { padding: 12px; font-size: 13px; } }

/* ═══════════════ PRICING ═══════════════ */
.price-strip { background: var(--navy); padding: 50px 0; }
.price-strip h2 { color: var(--white); text-align: center; margin: 0; }
.price-strip p { color: rgba(255,255,255,0.8); text-align: center; margin-top: 8px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.pcard {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
  text-align: center;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard.feat { border-color: var(--royal); transform: scale(1.04); box-shadow: var(--shadow-md); }
.pcard.feat:hover { transform: scale(1.04) translateY(-4px); box-shadow: var(--shadow-lg); }
.p-top {
  background: var(--sky-tint);
  color: var(--navy);
  padding: 14px 0;
  font-weight: 800; letter-spacing: 0.12em;
  font-size: 13px; text-transform: uppercase;
}
.pcard.feat .p-top { background: var(--royal); color: var(--white); }
.p-body { padding: 30px 26px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.p-title { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.p-supply { color: var(--text-light); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.p-img { max-width: 200px; margin: 6px 0; }
.p-price-row { display: flex; align-items: baseline; gap: 4px; }
.p-price-row .dollar { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--navy); }
.p-price { font-family: var(--font-serif); font-size: 62px; font-weight: 800; color: var(--navy); line-height: 1; }
.pcard.feat .p-price, .pcard.feat .p-price-row .dollar { color: var(--royal); }
.p-perbottle { font-size: 13px; color: var(--text-light); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.p-perks { display: flex; flex-direction: column; gap: 8px; width: 100%; margin: 6px 0; }
.perk { font-size: 14px; font-weight: 700; color: var(--royal); display: flex; align-items: center; gap: 8px; justify-content: center; }
.perk::before { content: "✓"; font-weight: 900; }
.p-cta {
  width: 100%;
  background: var(--royal);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  padding: 15px 0;
  border-radius: 12px;
  letter-spacing: 0.06em;
  transition: background 0.25s;
}
.pcard:hover .p-cta { background: var(--navy); }
.p-note { font-size: 12px; color: var(--text-light); font-weight: 500; }
.p-note s { color: #b8c4d6; }
.p-note strong { color: var(--navy); }
.p-cards { max-width: 180px; margin-top: 4px; opacity: 0.75; }
@media (max-width: 880px) {
  .price-grid { grid-template-columns: 1fr; max-width: 380px; margin: 40px auto 0; }
  .pcard.feat { transform: none; }
  .pcard.feat:hover { transform: translateY(-4px); }
}

/* ═══════════════ GUARANTEE ═══════════════ */
.gtee-box {
  display: flex; align-items: center; gap: 40px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 860px; margin: 0 auto;
}
.gtee-badge img { max-width: 160px; }
.gtee-copy h3 { font-size: 1.5rem; margin-bottom: 12px; }
.gtee-copy p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.75; }
@media (max-width: 680px) { .gtee-box { flex-direction: column; text-align: center; padding: 32px 24px; gap: 24px; } }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testi-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi:hover { border-color: var(--royal); box-shadow: var(--shadow-md); }
.testi-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.testi-img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 3px solid var(--sky-tint); }
.testi-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.testi-loc { color: var(--text-light); font-size: 13px; font-weight: 600; }
.testi-stars { color: var(--royal); letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.testi-text { color: var(--text-mid); font-size: 15px; line-height: 1.7; font-style: italic; }
.testi-verify { color: var(--royal); font-size: 12px; font-weight: 700; margin-top: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.testi-note { text-align: center; color: var(--text-light); font-size: 13px; font-style: italic; margin-top: 24px; }
@media (max-width: 880px) { .testi-stack { grid-template-columns: 1fr; max-width: 500px; margin: 40px auto 0; } }

/* ═══════════════ FAQ ═══════════════ */
.faq { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.fq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.fq.open { border-color: var(--royal); }
.fq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 26px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  transition: background 0.2s;
}
.fq-q:hover { background: var(--soft-bg); }
.fq-q .chev {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sky-tint);
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  transition: transform 0.3s, background 0.25s;
  flex-shrink: 0;
}
.fq.open .chev { transform: rotate(45deg); background: var(--royal); color: var(--white); }
.fq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.fq.open .fq-a { max-height: 800px; padding: 0 26px 24px; }
.fq-a p { color: var(--text-mid); font-size: 15.5px; line-height: 1.75; }

/* ═══════════════ RELATED ARTICLES ═══════════════ */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.rel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
}
.rel-card:hover { transform: translateY(-4px); border-color: var(--royal); box-shadow: var(--shadow-md); }
.rel-cat { color: var(--royal); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.rel-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.rel-card p { color: var(--text-mid); font-size: 14.5px; line-height: 1.6; }
.rel-more { color: var(--royal); font-weight: 700; font-size: 14px; margin-top: 12px; display: inline-block; }
@media (max-width: 880px) { .rel-grid { grid-template-columns: 1fr; } }

/* ═══════════════ FINAL CTA ═══════════════ */
.final-cta {
  background-image: var(--hero-gradient);
  background-color: var(--royal);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 30px; max-width: 620px; margin-left: auto; margin-right: auto; }
.final-cta-img { max-width: 340px; margin: 0 auto 30px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.final-cta .trust-mini { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 30px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.06em; text-transform: uppercase; }

/* ═══════════════ FOOTER ═══════════════ */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  color: var(--text-mid);
}
.f-brand { text-align: center; color: var(--navy); font-family: var(--font-serif); font-size: 1.8rem; font-weight: 900; margin-bottom: 22px; }
.f-brand span { color: var(--royal); }
.f-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-bottom: 26px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.f-links a { color: var(--text-mid); transition: color 0.25s; }
.f-links a:hover { color: var(--royal); }
.f-disc { text-align: center; font-size: 12.5px; line-height: 1.75; max-width: 780px; margin: 0 auto; color: var(--text-light); }
.f-disc strong { color: var(--text-mid); }
.f-copy { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 20px; letter-spacing: 0.04em; }

/* ═══════════════ EXIT POPUP ═══════════════ */
.po { display: none; position: fixed; inset: 0; background: rgba(5,24,54,0.75); backdrop-filter: blur(8px); z-index: 9998; opacity: 0; transition: opacity 0.35s; }
.po.show { opacity: 1; }
.pb {
  display: none; position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 9999; width: 92%; max-width: 460px;
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.68,-.55,.265,1.55), opacity 0.35s;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.pb.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.pb-top { background: var(--royal); color: var(--white); padding: 24px; position: relative; }
.pb-top h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.pb-top p { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.pb-close { position: absolute; top: 16px; right: 20px; color: var(--white); font-size: 26px; font-weight: 300; line-height: 1; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; opacity: 0.85; transition: opacity 0.25s; }
.pb-close:hover { opacity: 1; }
.pb-body { padding: 24px; }
.pb-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.pb-perk {
  display: flex; align-items: center; gap: 12px;
  background: var(--sky-tint);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.pb-perk::before { content: "✓"; color: var(--royal); font-weight: 900; font-size: 18px; flex-shrink: 0; }
.pb-cta {
  display: block; width: 100%;
  background: var(--royal);
  color: var(--white);
  font-weight: 800; font-size: 16px;
  padding: 16px 0;
  border-radius: 12px;
  text-align: center; letter-spacing: 0.06em;
  transition: background 0.25s;
}
.pb-cta:hover { background: var(--navy); }
.pb-tiny { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 12px; font-weight: 600; letter-spacing: 0.04em; }

/* ═══════════════ MOBILE STICKY CTA ═══════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 90;
  box-shadow: 0 -6px 20px rgba(15,63,142,0.15);
}
.mobile-cta a {
  display: block;
  background: var(--royal);
  color: var(--white);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 800; font-size: 16px;
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .mobile-cta.show { display: block; }
  body { padding-bottom: 80px; }
}

/* ═══════════════ BACK TO TOP ═══════════════ */
.back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--royal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity 0.3s, background 0.25s;
  z-index: 80;
  pointer-events: none;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--navy); }
@media (max-width: 880px) { .back-top { bottom: 88px; } }

/* ═══════════════ FADE-UP ANIMATION ═══════════════ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: none; }
