/* ============================================================
   SLIMLEAF™ — web-slimleaf.com — css/style.css
   Theme: Midnight Blue + Teal + Warm Amber
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

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

:root {
  --midnight:      #0F172A;
  --navy:          #1E293B;
  --navy-light:    #334155;
  --teal:          #0EA5E9;
  --teal-dark:     #0284C7;
  --teal-light:    #38BDF8;
  --teal-pale:     #F0F9FF;
  --amber:         #D97706;
  --amber-btn:     #F59E0B;
  --amber-hover:   #B45309;
  --amber-pale:    #FFFBEB;
  --white:         #FFFFFF;
  --off-white:     #F8FAFC;
  --text:          #0F172A;
  --muted:         #475569;
  --border:        #BAE6FD;
  --border-soft:   #E0F2FE;
  --radius:        10px;
  --radius-sm:     6px;
  --radius-pill:   50px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--midnight);
  padding: 0 24px;
  height: 70px;
  box-shadow: 0 2px 20px rgba(15,23,42,0.55);
  border-bottom: 3px solid var(--teal);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--teal-light);
  text-decoration: none;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }

.nav-links a {
  color: #94A3B8;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--teal-light); }

.btn-nav-order {
  background: var(--amber-btn) !important;
  color: var(--midnight) !important;
  font-weight: 700 !important;
  font-size: 0.87rem !important;
  letter-spacing: 0.5px;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  transition: background 0.2s !important;
  text-transform: uppercase;
}

.btn-nav-order:hover { background: var(--amber-hover) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 2.5px; background: var(--teal-light); display: block; border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--midnight);
  position: absolute; top: 70px; left: 0; right: 0;
  padding: 22px 30px; gap: 16px; z-index: 999;
  border-top: 1px solid var(--navy);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #94A3B8; text-decoration: none; font-size: 1.02rem; font-weight: 500; }
.mobile-menu a:hover { color: var(--teal-light); }
.mobile-menu .btn-mob-order {
  background: var(--amber-btn); color: var(--midnight);
  text-align: center; padding: 13px; border-radius: var(--radius-pill);
  font-weight: 700; margin-top: 6px; text-transform: uppercase; text-decoration: none;
}

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--amber-btn);
  color: var(--midnight);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(245,158,11,0.35);
}

.btn-primary:hover {
  background: var(--amber-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(180,83,9,0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--midnight);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--teal);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 11px 24px; font-size: 0.9rem; }
.btn-cta-final { font-size: 1.2rem; padding: 18px 50px; }

/* ============================================================
   SECTION TITLE BANDS
   ============================================================ */
.sec-title-band {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  padding: 52px 40px 44px;
  text-align: center;
  border-bottom: 3px solid var(--teal);
}

.sec-title-band h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.35rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sec-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.03rem;
  color: var(--teal-light);
  font-weight: 400;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(150deg, var(--teal-pale) 0%, var(--white) 55%);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-tag {
  display: inline-block;
  background: var(--midnight);
  color: var(--teal-light);
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.hero-editorial h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.85rem;
  line-height: 1.1;
  color: var(--midnight);
  margin-bottom: 22px;
}

.hero-deck {
  font-size: 1.1rem;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-proof-strip {
  display: flex;
  align-items: center;
  background: var(--midnight);
  border-radius: var(--radius);
  padding: 16px 24px;
  gap: 0;
  margin-bottom: 28px;
}

.hps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  gap: 3px;
}

.hps-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--teal-light);
  line-height: 1;
}

.hps-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hps-div { width: 1px; height: 32px; background: rgba(56,189,248,0.2); flex-shrink: 0; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-trust-chips span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-img-col { display: flex; justify-content: center; align-items: flex-start; }

.hero-img-frame {
  position: relative;
  display: inline-block;
}

.hero-img-frame a img {
  max-width: 440px;
  width: 100%;
  filter: drop-shadow(0 16px 40px rgba(15,23,42,0.2));
  transition: transform 0.4s ease;
}

.hero-img-frame a:hover img { transform: scale(1.04); }

.img-float-badge {
  position: absolute;
  bottom: 16px;
  left: -20px;
  background: var(--midnight);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.3);
}

.ifb-top {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber-btn);
}

.ifb-mid {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 400;
}

/* ============================================================
   MISSING PIECE SECTION
   ============================================================ */
.missing-section { background: var(--white); padding: 70px 48px; }

.missing-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.missing-text p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}

.missing-text p:last-child { color: var(--midnight); font-weight: 600; font-size: 1.1rem; }

.missing-stats h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--midnight);
  margin-bottom: 20px;
}

.stat-card {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  padding: 18px 20px;
  margin-bottom: 14px;
}

.sc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--teal-dark);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-card p { font-size: 0.95rem; line-height: 1.7; color: var(--muted); }

/* ============================================================
   WHAT IS
   ============================================================ */
.what-is-section { background: var(--off-white); padding: 70px 48px; }

.what-is-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 64px;
}

.what-is-img { display: flex; justify-content: center; }
.what-is-img img { max-width: 100%; filter: drop-shadow(0 10px 28px rgba(15,23,42,0.14)); }
.what-is-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }

/* ============================================================
   PRICING BAND
   ============================================================ */
.pricing-band {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  padding: 48px 40px 18px;
  text-align: center;
}

.pricing-band h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-band h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--teal-light);
  font-style: italic;
}

/* ============================================================
   PRICING IMAGE
   ============================================================ */
.price-img-section { background: var(--white); padding: 48px; text-align: center; }
.price-img-section a { display: inline-block; }
.price-img-section a img {
  max-width: 960px; width: 100%; height: auto;
  border-radius: var(--radius);
  transition: transform 0.3s;
  box-shadow: 0 4px 24px rgba(15,23,42,0.1);
}
.price-img-section a:hover img { transform: scale(1.01); }

/* ============================================================
   INGREDIENTS — 2-column
   ============================================================ */
.ingredients-section { background: var(--off-white); padding: 70px 48px; }

.ing-two-col {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ing-pair-col { display: flex; flex-direction: column; gap: 20px; }

.ing-block {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 24px;
  transition: box-shadow 0.3s;
}

.ing-block:hover { box-shadow: 0 6px 22px rgba(14,165,233,0.1); }

.ing-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.ing-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--teal-light);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}

.ing-category {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 4px;
}

.ing-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.12rem;
  color: var(--midnight);
  line-height: 1.3;
}

.ing-block p { font-size: 0.98rem; line-height: 1.8; color: var(--muted); }

.ing-summary-box {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  border-radius: var(--radius);
  padding: 26px 24px;
  color: var(--white);
}

.ing-summary-box h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--teal-light);
  margin-bottom: 12px;
}

.ing-summary-box p {
  font-size: 0.97rem;
  line-height: 1.78;
  color: #94A3B8;
  margin-bottom: 20px;
}

/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.timeline-section { background: var(--white); padding: 70px 48px; }

.timeline-inner {
  max-width: 820px;
  margin: 0 auto 40px;
}

.timeline-item {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
  flex-shrink: 0;
  margin-top: 4px;
}

.tl-dot-gold { background: var(--amber-btn); box-shadow: 0 0 0 2px var(--amber-btn); }

.tl-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  min-height: 30px;
  margin: 6px 0;
}

.tl-line-end { background: var(--amber-btn); }

.tl-content {
  padding: 0 0 40px 24px;
  flex: 1;
}

.tl-week {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.tl-week-gold { background: var(--amber-pale); color: var(--amber); }

.tl-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--midnight);
  margin-bottom: 10px;
}

.tl-content p { font-size: 1.02rem; line-height: 1.82; color: var(--muted); }

.timeline-cta { text-align: center; }

/* ============================================================
   REVIEWS — 2+1 staggered
   ============================================================ */
.reviews-section { background: var(--off-white); padding: 70px 48px; }

.reviews-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.reviews-col-main { display: flex; flex-direction: column; gap: 24px; }
.reviews-col-side { display: flex; flex-direction: column; gap: 24px; padding-top: 50px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover { box-shadow: 0 8px 28px rgba(14,165,233,0.1); transform: translateY(-3px); }

.review-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }

.reviewer-photo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--teal); flex-shrink: 0;
}

.review-stars { height: 20px; display: block; margin-bottom: 4px; }
.reviewer-name { font-family: 'DM Serif Display', serif; font-size: 0.98rem; color: var(--midnight); }
.review-badge { font-size: 0.8rem; font-weight: 500; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.3px; }

.review-text { font-size: 1rem; line-height: 1.78; color: var(--muted); font-style: italic; }

.review-footer-mini {
  display: flex; gap: 10px; align-items: center;
  border-top: 1px solid var(--border-soft); padding-top: 14px; margin-top: 16px;
}

.reviewer-photo-sm { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal); }

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses-section { background: var(--white); padding: 70px 48px; }

.bonuses-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.bonus-card:hover { box-shadow: 0 8px 28px rgba(15,23,42,0.1); transform: translateY(-4px); }

.bonus-num-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--midnight);
  color: var(--teal-light);
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.bonus-img-wrap { background: var(--teal-pale); padding: 16px 16px 0; }
.bonus-img-wrap img { width: 100%; height: auto; border-radius: var(--radius-sm) var(--radius-sm) 0 0; display: block; }

.bonus-value-tag {
  background: var(--amber-btn);
  color: var(--midnight);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.08rem;
  color: var(--midnight);
  padding: 14px 18px 8px;
  line-height: 1.3;
}

.bonus-card p { font-size: 0.94rem; line-height: 1.72; color: var(--muted); padding: 0 18px 20px; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section { background: var(--off-white); padding: 70px 48px; }

.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 64px;
}

.guarantee-img-col { display: flex; justify-content: center; }
.guarantee-inner img { max-width: 100%; filter: drop-shadow(0 6px 20px rgba(15,23,42,0.12)); }

.guarantee-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--midnight);
  margin-bottom: 16px;
  line-height: 1.25;
}

.guarantee-text p { font-size: 1.06rem; line-height: 1.85; color: var(--muted); margin-bottom: 14px; }

/* ============================================================
   BENEFITS — 2-Column Checklist
   ============================================================ */
.benefits-section { background: var(--white); padding: 70px 48px; }

.benefits-two-col {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.benefit-item:last-child { border-bottom: none; }

.bi-check {
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item div { font-size: 1rem; line-height: 1.75; color: var(--muted); }
.benefit-item strong { color: var(--midnight); font-weight: 700; }

/* ============================================================
   FAQs
   ============================================================ */
.faq-section { background: var(--off-white); padding: 70px 48px; }

.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--teal); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.06rem;
  color: var(--midnight);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-question:hover { background: var(--teal-pale); }
.faq-item.open .faq-question { background: var(--teal-pale); color: var(--teal-dark); }

.faq-arrow { font-size: 1rem; transition: transform 0.3s; color: var(--amber-btn); flex-shrink: 0; }
.faq-answer {
  display: none; padding: 16px 26px 22px;
  font-size: 1.02rem; line-height: 1.8; color: var(--muted);
  border-top: 1px solid var(--border-soft); background: var(--white);
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow  { transform: rotate(180deg); }

/* ============================================================
   HOW TO ORDER
   ============================================================ */
.order-how-section { background: var(--white); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img {
  max-width: 960px; width: 100%; height: auto;
  border-radius: var(--radius); transition: transform 0.3s;
  box-shadow: 0 4px 24px rgba(15,23,42,0.1);
}
.order-img-wrap a:hover img { transform: scale(1.01); }

/* ============================================================
   PRICING DETAILS
   ============================================================ */
.pricing-details { background: var(--off-white); padding: 56px 48px; }
.pricing-details-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}

.info-block {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 24px 26px;
  border-top: 3px solid var(--teal);
}

.info-block h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--midnight); margin-bottom: 12px;
}

.info-block p, .info-block li { font-size: 1rem; line-height: 1.78; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; }
.info-block ul li { padding: 5px 0; }
.info-block ul li::before { content: "✦ "; color: var(--amber-btn); font-size: 0.75rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--white) 55%);
  padding: 80px 48px; text-align: center;
  border-top: 4px solid var(--amber-btn);
  border-bottom: 4px solid var(--amber-btn);
  position: relative; overflow: hidden;
}

.cta-final::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem; color: var(--midnight);
  margin-bottom: 10px; line-height: 1.18; position: relative;
}

.cta-subhead { font-size: 1.1rem; color: var(--muted); font-style: italic; margin-bottom: 36px; display: block; }

.cta-product-img { max-width: 380px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; filter: drop-shadow(0 12px 32px rgba(15,23,42,0.18)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.04); }

.cta-regular-price { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; color: var(--midnight); display: block; margin-bottom: 24px;
}

.cta-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-bottom: 32px; }
.cta-perks span { font-size: 0.92rem; font-weight: 500; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.2px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--midnight); padding: 52px 48px 28px; border-top: 3px solid var(--teal); }

.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.65rem; color: var(--teal-light); text-align: center; letter-spacing: 0.5px; margin-bottom: 6px; }
.footer-tagline { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--teal); text-align: center; font-style: italic; margin-bottom: 28px; }

.footer-cols { max-width: 1100px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; }
.footer-cols a { color: var(--teal-light); text-decoration: none; font-size: 0.9rem; font-weight: 400; font-family: 'DM Sans', sans-serif; transition: color 0.2s; padding: 5px 18px; border-right: 1px solid rgba(56,189,248,0.2); white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--white); }

.footer-legal { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(56,189,248,0.12); padding-top: 24px; }
.footer-legal p { font-size: 0.85rem; color: #4A5E7A; line-height: 1.75; margin-bottom: 12px; }
.footer-policy { text-align: center; margin-bottom: 18px; }
.footer-policy a { color: #3A5070; text-decoration: none; font-size: 0.88rem; margin: 0 10px; transition: color 0.2s; font-family: 'DM Sans', sans-serif; }
.footer-policy a:hover { color: var(--teal-light); }
.footer-copy { text-align: center; font-size: 0.84rem; color: #2A4060; font-family: 'DM Sans', sans-serif; }
.footer-copy a { color: #3A5575; text-decoration: none; }
.footer-copy a:hover { color: var(--teal-light); }

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .hero-editorial h1 { font-size: 2.35rem; }
  .what-is-inner { grid-template-columns: 340px 1fr; }
  .ing-two-col { grid-template-columns: 1fr; }
  .pricing-details-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-frame a img { max-width: 320px; }
  .img-float-badge { display: none; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-col-side { padding-top: 0; }
  .missing-inner { grid-template-columns: 1fr; gap: 40px; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .benefits-two-col { grid-template-columns: 1fr; gap: 0; }
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .hero-proof-strip { flex-wrap: wrap; }
  .hps-div { display: none; }
  .hps-item { width: 48%; }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 44px 20px; }
  .hero-editorial h1 { font-size: 2rem; }
  .sec-title-band { padding: 40px 20px 34px; }
  .sec-title-band h2 { font-size: 1.6rem; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .missing-section, .what-is-section, .ingredients-section,
  .timeline-section, .reviews-section, .bonuses-section,
  .guarantee-section, .benefits-section, .faq-section,
  .order-how-section { padding: 44px 20px; }
  .price-img-section, .pricing-details { padding: 28px 20px; }
  .pricing-details-inner { grid-template-columns: 1fr; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.8rem; }
  .cta-current-price { font-size: 2.2rem; }
  .cta-perks { flex-direction: column; align-items: center; gap: 8px; }
  footer { padding: 36px 20px 22px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}