/* ===========================
   DIVINE LANE — SPIRITUAL GEMSTONE LP
   Palette: Deep Indigo + Saffron + Magenta + Gold + Teal
   =========================== */

:root {
  --indigo:      #1a0845;
  --deep-violet: #2d0e6e;
  --saffron:     #ff8c00;
  --saffron-lt:  #ffb347;
  --gold:        #ffd700;
  --magenta:     #d4006a;
  --magenta-lt:  #ff4499;
  --teal:        #00c9a7;
  --teal-lt:     #7fffea;
  --cream:       #fff8ee;
  --bg:          #10023a;
  --bg-alt:      #1a0652;
  --text-white:  #ffffff;
  --text-cream:  #fff8ee;
  --text-muted:  #c8b8e8;
  --border:      rgba(255, 180, 50, 0.3);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-white);
  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(--teal);
  text-align: center;
  margin-bottom: 8px;
}

.section-h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.35;
}
.section-h2 .hl { color: var(--saffron); }
.glow-text { text-shadow: 0 0 30px rgba(255,215,0,0.6), 0 0 60px rgba(255,140,0,0.3); }

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

/* ===========================
   CTA BUTTON
   =========================== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--magenta) 100%);
  color: #fff;
  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 28px rgba(255,68,153,0.5), 0 2px 8px rgba(255,140,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  letter-spacing: 0.2px;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,68,153,0.65), 0 4px 16px rgba(255,140,0,0.5);
  background: linear-gradient(135deg, var(--saffron-lt) 0%, var(--magenta-lt) 100%);
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--magenta), var(--saffron), var(--gold), var(--saffron), var(--magenta));
  background-size: 300% 100%;
  animation: topbarShimmer 4s infinite linear;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 20px;
  letter-spacing: 0.5px;
}
@keyframes topbarShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 25% 60%, #2d0e6e 0%, #10023a 65%);
  padding: 70px 0 55px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.8;
}
.g1 { width: 520px; height: 520px; background: rgba(212,0,106,0.28); top: -120px; right: -100px; }
.g2 { width: 420px; height: 420px; background: rgba(255,140,0,0.22); bottom: -120px; left: -100px; }
.g3 { width: 320px; height: 320px; background: rgba(0,201,167,0.16); top: 50%; left: 50%; transform: translate(-50%,-50%); }

.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(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--gold);
  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(--gold);
  line-height: 1.25;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(255,215,0,0.4);
}

.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-cream);
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--saffron);
  border-radius: 0 10px 10px 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-list li:hover { background: rgba(255,140,0,0.12); transform: translateX(4px); }

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

.hero-image {
  flex: 1; min-width: 260px; max-width: 400px;
  position: relative; z-index: 2;
}
.hero-img-ring {
  position: absolute;
  inset: -14px;
  border-radius: 24px;
  background: conic-gradient(from 0deg, var(--saffron), var(--magenta), var(--teal), var(--gold), var(--saffron));
  animation: ringRotate 7s linear infinite;
  z-index: 0;
  opacity: 0.75;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }
.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  position: relative; z-index: 1; width: 100%;
}

/* Stats */
.stats-row {
  display: flex; gap: 0; margin-top: 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(12px);
  position: relative; z-index: 2;
}
.stat-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 28px 16px;
  border-right: 1px solid var(--border); text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.76rem; color: var(--text-muted); margin-top: 5px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  background: linear-gradient(180deg, #10023a 0%, #1f0560 100%);
  padding: 80px 0; text-align: center;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 36px;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 20px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(255,140,0,0.2);
  border-color: var(--saffron);
}
.step-num {
  font-family: 'Cinzel', serif; font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--saffron), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   LIFE CHANGE
   =========================== */
.life-change-section {
  background: linear-gradient(135deg, #1f0560, #3d0080, #1f0560);
  padding: 75px 0; text-align: center;
  position: relative; overflow: hidden;
}
.life-change-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,140,0,0.18) 0%, transparent 70%);
}
.life-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #1a0845; font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.5px; padding: 9px 28px;
  border-radius: 50px; margin-bottom: 24px;
}

/* ===========================
   TESTIMONIALS SLIDER
   =========================== */
.image-testimonials {
  background: linear-gradient(180deg, #1a0652 0%, #0e0236 100%);
  padding: 75px 0;
}
.slider-wrapper { position: relative; overflow: hidden; }
.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: linear-gradient(145deg, rgba(45,14,110,0.85), rgba(16,2,58,0.95));
  border: 1px solid rgba(255,180,50,0.2);
  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;
}
.img-testi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--magenta), var(--teal));
}
.img-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(255,140,0,0.22);
  border-color: rgba(255,180,50,0.5);
}
.quote-mark { font-size: 2.5rem; color: var(--saffron); opacity: 0.4; line-height: 1; margin-bottom: 8px; }
.img-testi-text { font-size: 0.86rem; color: var(--text-cream); 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(--saffron); flex-shrink: 0;
}
.author-initial {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--magenta));
  border: 2px solid var(--gold);
  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(--gold); }
.author-stars { font-size: 0.72rem; margin-top: 2px; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: linear-gradient(135deg, var(--saffron), var(--magenta));
  color: #fff; border: none; 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(255,68,153,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.slider-btn:hover { transform: translateY(-50%) scale(1.14); box-shadow: 0 8px 30px rgba(255,68,153,0.7); }
.slider-prev { left: -22px; }
.slider-next { right: -22px; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,215,0,0.2); border: 1.5px solid var(--gold);
  cursor: pointer; transition: background 0.25s, transform 0.25s;
}
.dot.active { background: var(--gold); transform: scale(1.35); }

/* ===========================
   ALERT + CTA
   =========================== */
.alert-cta-section {
  background: linear-gradient(135deg, #0e0236, #2d0e6e);
  padding: 65px 0; text-align: center;
}
.alert-box {
  background: linear-gradient(135deg, rgba(212,0,106,0.15), rgba(255,140,0,0.1));
  border: 1.5px solid rgba(255,140,0,0.5);
  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 {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,140,0,0.06), transparent 70%);
  pointer-events: none;
}
.alert-gem { font-size: 3rem; margin-bottom: 12px; }
.alert-box h3 {
  font-family: 'Cinzel', serif; font-size: 1.35rem; color: var(--gold); margin-bottom: 14px;
}
.alert-box p { font-size: 0.97rem; color: var(--text-cream); line-height: 1.78; }
.alert-box strong { color: var(--saffron-lt); }
.alert-sub { margin-top: 14px !important; color: var(--teal-lt) !important; font-weight: 500; }

/* ===========================
   BENEFIT IMAGES — 3-col desktop, 1-col mobile
   =========================== */
.benefit-images-section {
  background: linear-gradient(180deg, #10023a 0%, #1f0560 100%);
  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: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-images-grid img:hover { transform: scale(1.03); box-shadow: 0 18px 52px rgba(255,140,0,0.3); }
.cta-sub-text { color: var(--text-cream); font-size: 1rem; margin-bottom: 10px; }

/* ===========================
   BENEFIT CARDS — white, 3-col desktop
   =========================== */
.benefits-cards-section {
  background: linear-gradient(180deg, #1f0560 0%, #3d0080 50%, #1f0560 100%);
  padding: 80px 0; text-align: center;
}
.section-sub { color: var(--text-muted); 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: #ffffff; border-radius: 22px;
  padding: 32px 18px 26px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid transparent;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--magenta), var(--teal));
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(212,0,106,0.2), 0 8px 20px rgba(0,0,0,0.15);
}
.benefit-img-wrap {
  width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(135deg, #fff4f8, #fff8ec);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(212,0,106,0.15);
}
.benefit-img-wrap img { width: 68px; height: 68px; object-fit: contain; }
.benefit-card h3 { font-size: 0.95rem; font-weight: 700; color: #1a0845; margin-bottom: 8px; line-height: 1.35; }
.benefit-card p { font-size: 0.82rem; color: #555; line-height: 1.65; }

/* ===========================
   BONUSES — portrait 2-col
   =========================== */
.bonuses-section {
  background: linear-gradient(135deg, #0e0236 0%, #2d0e6e 50%, #0e0236 100%);
  padding: 85px 0; text-align: center;
  position: relative; overflow: hidden;
}
.bonuses-section::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.06), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

.bonus-headline-wrap { margin-bottom: 42px; }
.bonus-big-text {
  font-family: 'Cinzel', serif; font-size: 2.3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--saffron), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

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

.bonus-card {
	background: #f4c8c3;
 /* background: linear-gradient(175deg, rgba(45,14,110,0.9), rgba(16,2,58,0.97)); */
  border: 1.5px solid rgba(255,215,0,0.3);
  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;
}
.bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--magenta));
}
.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(255,140,0,0.25), 0 0 0 1px rgba(255,215,0,0.35);
  border-color: rgba(255,215,0,0.5);
}

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--magenta));
  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: radial-gradient(circle, rgba(255,215,0,0.1), transparent 70%);
  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: var(--gold); margin-bottom: 10px;
}
.bonus-value { font-size: 0.85rem; color: var(--teal-lt); font-weight: 600; margin-bottom: 12px; }
.bonus-value s { color: var(--text-muted); }
.bonus-body > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; }

/* ===========================
   COUNTDOWN
   =========================== */
.countdown-section {
  background: linear-gradient(135deg, #3d0080, var(--magenta), #3d0080);
  background-size: 200% 100%;
  animation: cdBg 8s infinite alternate;
  padding: 75px 0; text-align: center;
  position: relative; overflow: hidden;
}
@keyframes cdBg {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
.countdown-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06), transparent 70%);
}
.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: rgba(0,0,0,0.35); border: 2px solid rgba(255,255,255,0.35);
  border-radius: 18px; padding: 18px 28px; min-width: 94px;
  backdrop-filter: blur(10px);
}
.timer-num {
  font-family: 'Cinzel', serif; font-size: 2.8rem; font-weight: 900;
  color: #fff; line-height: 1;
}
.timer-label {
  font-size: 0.68rem; color: rgba(255,255,255,0.7);
  letter-spacing: 2px; margin-top: 7px; font-weight: 700;
}
.timer-colon {
  font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 900;
  color: rgba(255,255,255,0.6); 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: #fff; margin-bottom: 14px; }
.countdown-sub {
  font-size: 0.97rem; color: rgba(255,255,255,0.88);
  max-width: 600px; margin: 0 auto 20px; line-height: 1.72;
}
.midnight-text {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  margin-top: 18px; letter-spacing: 0.5px; text-transform: uppercase;
}
.midnight-text strong { color: var(--gold); }

/* ===========================
   FAQ
   =========================== */
.faq-section {
  background: linear-gradient(180deg, #0e0236 0%, #10023a 100%);
  padding: 80px 0;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 740px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: var(--saffron); }
.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-cream);
  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(--gold); }
.faq-icon { font-size: 1.5rem; color: var(--saffron); 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); line-height: 1.75; }
.faq-question.active .faq-icon { transform: rotate(45deg); }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: #06011a; border-top: 1px solid var(--border); padding: 32px 0; text-align: center; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; }
.site-footer p { color: var(--text-muted); font-size: 0.85rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@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; }
}

@media (max-width: 480px) {
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .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; }
}
