/* ===========================
   DIVINE LANE — DARK THEME
   Palette: Dark Blue Gradient (#031d44, #04395e), Light Text, Pink Accent
   =========================== */

:root {
  /* Dark Theme Palette */
  --bg-dark-primary: #031d44;
  --bg-dark-secondary: #04395e;
  --bg-card-dark: #052a52;
  --bg-card-darker: #021833;
  --text-light: #e8f0f7;
  --text-muted-light: #b8c9db;
  --accent-pink: #f087b0;
  --accent-light-pink: #ff6b9d;
  --border-dark: #0a3a5f;
  --shadow-dark: 0 10px 30px rgba(0,0,0,0.4);

  /* Mapping old variables to new dark palette */
  --indigo: var(--bg-dark-primary);
  --deep-violet: var(--bg-dark-secondary);
  --saffron: var(--accent-pink);
  --saffron-lt: var(--accent-light-pink);
  --gold: var(--text-light);
  --magenta: var(--accent-pink);
  --magenta-lt: var(--accent-light-pink);
  --teal: var(--accent-pink);
  --teal-lt: var(--accent-light-pink);
  --cream: var(--bg-dark-primary);
  --bg: var(--bg-dark-primary);
  --bg-alt: var(--bg-dark-secondary);
  --text-white: var(--text-light);
  --text-cream: var(--text-muted-light);
  --border: var(--border-dark);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #031d44 0%, #04395e 100%);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   REUSABLE
   =========================== */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-pink);
  text-align: center;
  margin-bottom: 8px;
}

.section-h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.35;
}
.section-h2 .hl { color: var(--accent-pink); }
/* Removed glow text effect for cleaner look */
.glow-text { text-shadow: none; color: var(--accent-pink); }

.talk-text { font-size: 0.9rem; color: var(--text-muted-light); margin-bottom: 10px; text-align: center; }

/* ===========================
   CTA BUTTON
   =========================== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-light-pink));
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  margin: 18px auto;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(240, 135, 176, 0.5);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  letter-spacing: 0.2px;
  border: none;
  font-family: 'Poppins', sans-serif;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(240, 135, 176, 0.6);
  background: linear-gradient(135deg, var(--accent-light-pink), var(--accent-pink));
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: rgba(4, 57, 94, 0.8);
  color: var(--text-light);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 20px;
  letter-spacing: 0.5px;
  animation: none;
  border-bottom: 1px solid var(--border-dark);
}

/* ===========================
   COUNTDOWN FOOTER (STICKY)
   =========================== */
.countdown-header {
  position: sticky;
  bottom: 0;
  z-index: 999;
  background: rgba(3, 29, 68, 0.95);
  border-top: 1px solid var(--accent-pink);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.5);
}

.countdown-header-content {
  max-width: 1260px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card-dark);
  border: 2px solid var(--accent-pink);
  border-radius: 12px;
  padding: 8px 14px;
  min-width: 60px;
}

.countdown-digit {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1;
}

.countdown-label {
  font-size: 0.6rem;
  color: var(--text-muted-light);
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 700;
}

.countdown-sep {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-pink);
  animation: blink 1s infinite;
}

.countdown-cta {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-light-pink));
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(240, 135, 176, 0.5);
  font-family: 'Poppins', sans-serif;
}

.countdown-cta:hover {
  background: linear-gradient(135deg, var(--accent-light-pink), var(--accent-pink));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 135, 176, 0.6);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background: var(--bg-dark-primary);
  padding: 70px 0 55px;
  overflow: hidden;
}
/* Disable the dark glow effects */
.hero-glow { display: none; }

.hero-content {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero-text { flex: 1; min-width: 280px; }

.hero-badge {
  display: inline-block;
  background: rgba(4, 57, 94, 0.6);
  border: 1px solid var(--accent-pink);
  color: var(--accent-pink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 24px;
  text-shadow: none;
}

.hero-list { list-style: none; padding: 0; margin-bottom: 24px; }
.hero-list li {
  padding: 11px 16px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  background: rgba(4, 57, 94, 0.4);
  border-left: 3px solid var(--accent-pink);
  border-radius: 0 10px 10px 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-list li:hover { background: rgba(4, 57, 94, 0.7); transform: translateX(4px); }

.hero-sub { font-size: 0.93rem; color: var(--text-muted-light); margin-bottom: 28px; line-height: 1.65; }

.hero-image {
  flex: 1; min-width: 260px; max-width: 400px;
  position: relative; z-index: 2;
}
/* Disable the rotating ring */
.hero-img-ring { display: none; }
.hero-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  position: relative; z-index: 1; width: 100%;
}

/* Stats */
.stats-row {
  display: flex; gap: 0; margin-top: 52px;
  background: rgba(5, 42, 82, 0.6);
  border: 1px solid var(--border-dark);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: none;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-dark);
}
.stat-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 28px 16px;
  border-right: 1px solid var(--border-dark); text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--accent-pink);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.76rem; color: var(--text-muted-light); margin-top: 5px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  background: var(--bg-dark-secondary);
  padding: 80px 0; text-align: center;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 36px;
}
.step-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px; padding: 32px 20px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: var(--shadow-dark);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  border-color: var(--accent-pink);
}
.step-num {
  font-family: 'Cinzel', serif; font-size: 3rem; font-weight: 900;
  /* Change gradient to solid accent */
  background: none; -webkit-text-fill-color: initial;
  color: var(--accent-pink);
  line-height: 1; margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-light); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted-light); line-height: 1.65; }

/* ===========================
   LIFE CHANGE
   =========================== */
.life-change-section {
  background: linear-gradient(135deg, rgba(3, 29, 68, 0.9), rgba(4, 57, 94, 0.9));
  padding: 75px 0; text-align: center;
  position: relative; overflow: hidden;
}
.life-change-section::before { display: none; }

.life-badge {
  display: inline-block;
  background: rgba(5, 42, 82, 0.8);
  color: var(--accent-pink); font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.5px; padding: 9px 28px;
  border-radius: 50px; margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 1px solid var(--accent-pink);
}
/* Ensure h2 in this section is light */
.life-change-section h2 { color: var(--text-light); text-shadow: none; }

/* ===========================
   TESTIMONIALS SLIDER
   =========================== */
.image-testimonials {
  background: var(--bg-dark-primary);
  padding: 75px 0;
}
.slider-wrapper { position: relative; overflow: hidden; padding: 20px 0 40px;}
.slider-track {
  display: flex; gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-testi-card {
  flex: 0 0 calc((100% - 60px) / 4);
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px; padding: 26px 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-dark);
}
.img-testi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent-pink);
}
.img-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.8);
  border-color: var(--accent-pink);
}
.quote-mark { font-size: 2.5rem; color: var(--accent-pink); opacity: 0.4; line-height: 1; margin-bottom: 8px; }
.img-testi-text { font-size: 0.86rem; color: var(--text-muted-light); line-height: 1.72; margin-bottom: 18px; flex: 1; }
.img-testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--accent-pink); flex-shrink: 0;
}
.author-initial {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-pink);
  border: 2px solid var(--bg-card-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.author-name { font-size: 0.85rem; font-weight: 700; color: var(--text-light); }
/* Color the stars pink */
.author-stars { font-size: 0.72rem; margin-top: 2px; color: var(--accent-pink); }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--bg-card-dark);
  color: var(--accent-pink); border: 1px solid var(--border-dark); border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.1rem; cursor: pointer;
  z-index: 10; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.slider-btn:hover {
    transform: translateY(-50%) scale(1.14);
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    background: var(--accent-pink); color: #fff;
}
.slider-prev { left: -22px; }
.slider-next { right: -22px; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 0px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-dark); border: none;
  cursor: pointer; transition: background 0.25s, transform 0.25s;
}
.dot.active { background: var(--accent-pink); transform: scale(1.35); }

/* ===========================
   ALERT + CTA
   =========================== */
.alert-cta-section {
  background: var(--bg-dark-secondary);
  padding: 65px 0; text-align: center;
}
.alert-box {
  background: rgba(5, 42, 82, 0.6);
  border: 1.5px solid var(--accent-pink);
  border-radius: 22px; padding: 40px 36px;
  margin-bottom: 28px; max-width: 700px;
  margin-left: auto; margin-right: auto;
  position: relative; overflow: hidden;
}
.alert-box::after { display: none; }

.alert-gem { font-size: 3rem; margin-bottom: 12px; }
.alert-box h3 {
  font-family: 'Cinzel', serif; font-size: 1.35rem; color: var(--text-light); margin-bottom: 14px;
}
.alert-box p { font-size: 0.97rem; color: var(--text-light); line-height: 1.78; }
.alert-box strong { color: var(--accent-pink); }
.alert-sub { margin-top: 14px !important; color: var(--text-muted-light) !important; font-weight: 600; }

/* ===========================
   BENEFIT IMAGES
   =========================== */
.benefit-images-section {
  background: var(--bg-dark-primary);
  padding: 75px 0; text-align: center;
}
.benefit-images-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-bottom: 32px;
}
.benefit-images-grid img {
  width: 100%; border-radius: 16px;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-images-grid img:hover { transform: scale(1.03); box-shadow: 0 18px 52px rgba(0,0,0,0.8); }
.cta-sub-text { color: var(--text-light); font-size: 1rem; margin-bottom: 10px; }

/* ===========================
   BENEFIT CARDS
   =========================== */
.benefits-cards-section {
  background: var(--bg-dark-secondary);
  padding: 80px 0; text-align: center;
}
.section-sub { color: var(--text-muted-light); font-size: 0.93rem; margin-bottom: 36px; margin-top: -18px; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.benefit-card {
  background: var(--bg-card-dark); border-radius: 22px;
  padding: 32px 18px 26px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid transparent;
  position: relative; overflow: hidden;
  border: 1px solid var(--border-dark);
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent-pink);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.8);
}
.benefit-img-wrap {
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(4, 57, 94, 0.6);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  border: 2px solid var(--accent-pink);
}
.benefit-img-wrap img { width: 68px; height: 68px; object-fit: contain; }
.benefit-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-light); margin-bottom: 8px; line-height: 1.35; }
.benefit-card p { font-size: 0.82rem; color: var(--text-muted-light); line-height: 1.65; }

/* ===========================
   BONUSES
   =========================== */
.bonuses-section {
  background: #ffffff;
  padding: 85px 0; text-align: center;
  position: relative; overflow: hidden;
}
.bonuses-section::before {
    background: radial-gradient(circle, rgba(180, 106, 133, 0.08), transparent 70%);
}

.bonus-headline-wrap { margin-bottom: 42px; }
.bonus-big-text {
  font-family: 'Cinzel', serif; font-size: 2.3rem; font-weight: 900;
  background: none; -webkit-text-fill-color: initial;
  color: var(--accent-pink);
}

/* 2-col portrait grid */
.bonus-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 820px; margin: 0 auto;
}

.bonus-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  padding-bottom: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent-pink);
}
.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  border-color: var(--accent-pink);
}

.bonus-badge {
  display: inline-block;
  background: var(--accent-pink);
  color: #fff; font-weight: 800; font-size: 0.75rem;
  letter-spacing: 2.5px; padding: 7px 24px;
  border-radius: 0 0 14px 14px; margin-bottom: 28px;
}

.bonus-img-wrap {
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: #fceef3;
  border-radius: 50%; margin: 0 auto 26px;
}
.bonus-img-wrap img { width: 140px; height: 140px; object-fit: contain; }

.bonus-body { padding: 0 26px; }
.bonus-body h3 {
  font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700;
  color: #222222 !important; margin-bottom: 10px;
}
.bonus-value { font-size: 0.85rem; color: var(--accent-pink) !important; font-weight: 600; margin-bottom: 12px; }
.bonus-value s { color: #666666 !important; }
.bonus-body > p { font-size: 0.88rem; color: #666666 !important; line-height: 1.72; }

/* ===========================
   COUNTDOWN
   =========================== */
.countdown-section {
  background: linear-gradient(135deg, rgba(3, 29, 68, 0.95), rgba(4, 57, 94, 0.95));
  animation: none;
  padding: 75px 0; text-align: center;
  position: relative; overflow: hidden;
}
.countdown-section::before { display: none; }

.timer-row {
  display: flex; justify-content: center; align-items: center;
  gap: 14px; margin: 24px 0 36px; position: relative;
}
.timer-block {
  display: flex; flex-direction: column; align-items: center;
  background: var(--bg-card-dark); border: 2px solid var(--accent-pink);
  border-radius: 18px; padding: 18px 28px; min-width: 94px;
  backdrop-filter: none; color: var(--text-light);
}
.timer-num {
  font-family: 'Cinzel', serif; font-size: 2.8rem; font-weight: 900;
  color: var(--text-light); line-height: 1;
}
.timer-label {
  font-size: 0.68rem; color: var(--text-muted-light);
  letter-spacing: 2px; margin-top: 7px; font-weight: 700;
}
.timer-colon {
  font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 900;
  color: var(--accent-pink); margin-bottom: 20px;
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.countdown-headline { font-size: 1.4rem; font-weight: 700; color: var(--text-light); margin-bottom: 14px; }
.countdown-sub {
  font-size: 0.97rem; color: var(--text-muted-light);
  max-width: 600px; margin: 0 auto 20px; line-height: 1.72;
}
.midnight-text {
  font-size: 0.82rem; color: var(--text-muted-light);
  margin-top: 18px; letter-spacing: 0.5px; text-transform: uppercase;
}
.midnight-text strong { color: var(--accent-pink); }

/* ===========================
   FAQ
   =========================== */
.faq-section {
  background: var(--bg-dark-primary);
  padding: 80px 0;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover { border-color: var(--accent-pink); box-shadow: var(--shadow-dark); }
.faq-question {
  width: 100%; background: transparent; border: none; padding: 22px 26px;
  text-align: left; font-family: 'Poppins', sans-serif;
  font-size: 0.97rem; font-weight: 600; color: var(--text-light);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; transition: color 0.2s;
}
.faq-question:hover, .faq-question.active { color: var(--accent-pink); }
.faq-icon { font-size: 1.5rem; color: var(--accent-pink); flex-shrink: 0; transition: transform 0.3s; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 26px;
}
.faq-answer.open { max-height: 300px; padding: 0 26px 22px; }
.faq-answer p { font-size: 0.93rem; color: var(--text-muted-light); line-height: 1.75; }
.faq-question.active .faq-icon { transform: rotate(45deg); }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--bg-card-darker); border-top: 1px solid var(--border-dark); padding: 32px 0; text-align: center; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--text-light); margin-bottom: 8px; letter-spacing: 1px; }
.site-footer p { color: var(--text-muted-light); font-size: 0.85rem; }
.site-footer a { color: var(--accent-pink) !important; }


/* ===========================
   RESPONSIVE (Kept mostly the same, just ensuring colors apply)
   =========================== */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid .step-card { max-width: 500px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .hero-content { flex-direction: column; }
  .hero-image { max-width: 100%; }
  .hero-headline { font-size: 1.55rem; }
  .section-h2 { font-size: 1.3rem; }
  .bonus-big-text { font-size: 1.6rem; }

  /* Slider: 1 card on mobile */
  .img-testi-card { flex: 0 0 100%; }
  .slider-prev { left: 0; }
  .slider-next { right: 0; }

  /* Benefit images: 1-col */
  .benefit-images-grid { grid-template-columns: 1fr; }

  /* Bonus cards: 1-col */
  .bonus-grid { grid-template-columns: 1fr; max-width: 420px; }

  .timer-block { min-width: 74px; padding: 14px 18px; }
  .timer-num { font-size: 2rem; }
  
  /* Countdown header responsive */
  .countdown-header-content { gap: 16px; padding: 12px 16px; }
  .countdown-text { font-size: 0.9rem; }
  .countdown-unit { min-width: 50px; padding: 6px 10px; }
  .countdown-digit { font-size: 1.4rem; }
  .countdown-cta { font-size: 0.85rem; padding: 10px 20px; }
}

@media (max-width: 480px) {
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-item:last-child { border-bottom: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cta-btn { font-size: 0.88rem; padding: 16px 22px; }
  .hero-headline { font-size: 1.3rem; }
  .alert-box { padding: 28px 20px; }
  
  /* Countdown header mobile */
  .countdown-header-content { 
    flex-direction: column; 
    gap: 12px; 
    padding: 12px 12px; 
  }
  .countdown-text { font-size: 0.8rem; }
  .countdown-unit { min-width: 45px; padding: 5px 8px; }
  .countdown-digit { font-size: 1.2rem; }
  .countdown-label { font-size: 0.55rem; }
  .countdown-cta { font-size: 0.8rem; padding: 10px 24px; width: 100%; }
}
