/* ═══════════════════════════════════════════════════════════════
   STORMPILOT — MEMORIAL DAY LANDING PAGE
   Brand design system + patriotic flair
═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core brand */
  --bg-base:       #06090f;
  --bg-surface:    #0a1018;
  --bg-card:       #0f1a27;
  --bg-card-hover: #142030;
  --bg-border:     #1a2d42;
  --brand-blue:    #00C2FF;
  --brand-cyan:    #00E5CC;
  --brand-purple:  #A78BFA;
  --brand-green:   #4ADE80;
  --brand-orange:  #FB923C;
  --brand-gold:    #FFD700;
  /* Memorial Day palette */
  --md-red:        #CC2936;
  --md-red-bright: #FF3B4A;
  --md-red-glow:   rgba(204,41,54,0.18);
  --md-blue:       #0A3161;
  --md-blue-bright:#1D5FA8;
  --md-blue-glow:  rgba(10,49,97,0.35);
  --md-white:      #F0F6FF;
  /* Text */
  --text-primary:  #F0F6FF;
  --text-secondary:#8BA3BE;
  --text-muted:    #4A6480;
  /* Misc */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
s { color: var(--md-red-bright); text-decoration-color: var(--md-red-bright); }

/* ─── CANVAS BACKGROUNDS ────────────────────────────────────── */
#starsCanvas, #fireworksCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
#starsCanvas  { z-index: 0; opacity: 0.6; }
#fireworksCanvas { z-index: 1; }

/* ─── EXPIRED OVERLAY ───────────────────────────────────────── */
.expired-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,9,15,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.expired-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 480px;
}
.expired-icon { font-size: 48px; margin-bottom: 20px; }
.expired-box h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.expired-box p { font-size: 16px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.65; }

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.gradient-text-memorial {
  background: linear-gradient(135deg, var(--md-red-bright) 0%, #FF8C00 50%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-lg  { padding: 13px 26px; font-size: 15px; font-weight: 700; }
.btn-xl  { padding: 17px 34px; font-size: 16px; font-weight: 700; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }

/* Memorial Day button — red/white/blue gradient */
.btn-memorial {
  background: linear-gradient(135deg, var(--md-red) 0%, #B71C2A 40%, var(--md-blue-bright) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(204,41,54,0.35), 0 2px 8px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-memorial:hover {
  background: linear-gradient(135deg, var(--md-red-bright) 0%, #CC2936 40%, #2470C8 100%);
  box-shadow: 0 6px 32px rgba(204,41,54,0.5), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* Pulse */
@keyframes memorialPulse {
  0%   { box-shadow: 0 4px 24px rgba(204,41,54,0.35), 0 2px 8px rgba(0,0,0,0.4); }
  50%  { box-shadow: 0 4px 48px rgba(204,41,54,0.65), 0 0 0 8px rgba(204,41,54,0.1), 0 2px 8px rgba(0,0,0,0.4); }
  100% { box-shadow: 0 4px 24px rgba(204,41,54,0.35), 0 2px 8px rgba(0,0,0,0.4); }
}
.pulse-btn { animation: memorialPulse 2.5s ease-in-out infinite; }
.pulse-btn:hover { animation: none; }

/* ─── ANNOUNCE BAR ──────────────────────────────────────────── */
.announce-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, var(--md-red) 0%, #8B0000 30%, var(--md-blue) 70%, #0A1F4A 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.announce-stars { color: rgba(255,255,255,0.6); font-size: 10px; letter-spacing: 4px; }
.announce-text strong { color: #fff; }
.announce-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 3px 12px;
}
.announce-cd-label { font-size: 11px; color: rgba(255,255,255,0.6); }
.announce-cd-value { font-size: 12px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.announce-cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
}
.announce-cta:hover { background: rgba(255,255,255,0.25); }

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,9,15,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta-btn { flex-shrink: 0; }
.nav-deadline {
  font-size: 11px;
  background: rgba(255,255,255,0.15);
  padding: 2px 8px;
  border-radius: 100px;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--bg-border);
  background: var(--bg-base);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bg-border);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 30%, transparent 100%);
  z-index: 1;
}
.hero-glow-red {
  position: absolute;
  top: -150px; left: 20%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(204,41,54,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-blue {
  position: absolute;
  top: -100px; right: 15%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,194,255,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Badge */
.hero-badge-row { margin-bottom: 28px; }
.memorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(204,41,54,0.2) 0%, rgba(10,49,97,0.3) 100%);
  border: 1px solid rgba(204,41,54,0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.badge-flag { font-size: 16px; }

/* Headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.hero-line-1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--md-white);
  line-height: 1.05;
}
.hero-line-2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--md-white);
  line-height: 1.05;
}
.hero-line-3 {
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-top: 4px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--text-primary); }

/* Hero countdown */
.hero-countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-cd-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--md-red-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(204,41,54,0.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  min-width: 80px;
  box-shadow: 0 0 20px rgba(204,41,54,0.1);
}
.cd-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 6px;
}
.cd-sep {
  font-size: 36px;
  font-weight: 700;
  color: var(--md-red-bright);
  opacity: 0.7;
  margin-bottom: 20px;
}
.hero-cd-deadline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Hero offer card */
.hero-offer-card {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(204,41,54,0.25);
  border-radius: var(--radius-xl);
  padding: 32px 44px;
  margin-bottom: 40px;
  box-shadow: 0 0 80px rgba(204,41,54,0.08), 0 0 40px rgba(0,194,255,0.05);
  position: relative;
  overflow: hidden;
}
.hero-offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--md-red) 0%, #fff 33%, var(--md-blue-bright) 66%, var(--md-red) 100%);
}

.hero-offer-left { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-offer-was { font-size: 14px; color: var(--text-muted); }
.hero-offer-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.price-dollar { font-size: 28px; font-weight: 700; color: var(--text-secondary); }
.price-amount {
  font-size: 88px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}
.price-period { font-size: 20px; color: var(--text-secondary); }
.hero-offer-save {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-offer-right { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-offer-note { font-size: 12px; color: var(--text-muted); text-align: center; }
.hero-offer-expires {
  font-size: 12px;
  font-weight: 700;
  color: var(--md-red-bright);
  text-align: center;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-num sup { font-size: 14px; }
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 3px; text-align: center; }
.stat-div { width: 1px; height: 32px; background: var(--bg-border); flex-shrink: 0; }

/* ─── RIBBON DIVIDER ────────────────────────────────────────── */
.ribbon-divider {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--md-red) 0%, #8B0000 25%, var(--md-blue) 50%, #8B0000 75%, var(--md-red) 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  padding: 12px 0;
}
.ribbon-inner {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  animation: ribbonScroll 18s linear infinite;
  width: max-content;
}
.ribbon-inner span { color: rgba(255,255,255,0.5); }
@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── WHY SECTION ───────────────────────────────────────────── */
.why-section {
  padding: 96px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--bg-border);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.why-left > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.why-left em { color: var(--text-primary); font-style: normal; font-weight: 600; }
.why-left strong { color: var(--text-primary); }

.why-right { display: flex; flex-direction: column; gap: 14px; }
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.compare-card--good {
  border-color: rgba(74,222,128,0.2);
  background: rgba(74,222,128,0.02);
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-border);
}
.compare-header--bad  { color: var(--md-red-bright); }
.compare-header--good { color: var(--brand-green); }
.compare-list { display: flex; flex-direction: column; gap: 9px; }
.compare-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.compare-list--good li { color: var(--text-primary); }
.compare-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.compare-list--bad  li::before { background: rgba(255,107,107,0.5); }
.compare-list--good li::before { background: var(--brand-green); }

/* ─── FEATURES ──────────────────────────────────────────────── */
.features-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--bg-border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.feat-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,194,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.feat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-icon--blue   { background: rgba(0,194,255,0.1); }
.feat-icon--cyan   { background: rgba(0,229,204,0.1); }
.feat-icon--purple { background: rgba(167,139,250,0.1); }
.feat-icon--green  { background: rgba(74,222,128,0.1); }
.feat-icon--orange { background: rgba(251,146,60,0.1); }
.feat-card h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.feat-list { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.feat-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.feat-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  opacity: 0.6;
}

/* ─── VALUE CALLOUT ─────────────────────────────────────────── */
.value-section {
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(204,41,54,0.06) 0%, rgba(10,49,97,0.12) 100%);
  border-top: 1px solid rgba(204,41,54,0.15);
  border-bottom: 1px solid rgba(10,49,97,0.3);
}
.value-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 36px;
}
.value-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.value-desc { font-size: 13px; color: var(--text-secondary); max-width: 180px; line-height: 1.45; }
.value-div { width: 1px; height: 56px; background: var(--bg-border); flex-shrink: 0; }

/* ─── OFFER SECTION ─────────────────────────────────────────── */
.offer-section {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  position: relative;
  overflow: hidden;
}
.offer-bg-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.offer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

/* Offer card */
.offer-card {
  background: var(--bg-card);
  border: 1px solid rgba(204,41,54,0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(204,41,54,0.1), 0 0 40px rgba(0,194,255,0.05);
}
.offer-card-top-bar {
  background: linear-gradient(90deg, var(--md-red) 0%, #8B0000 40%, var(--md-blue) 100%);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.offer-card-body { padding: 32px; }
.offer-card-title { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.offer-card-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }

.offer-price-block { margin-bottom: 28px; }
.offer-was-row { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 10px;
}
.op-dollar { font-size: 26px; font-weight: 700; color: var(--text-secondary); }
.op-amount { font-size: 72px; font-weight: 900; color: var(--text-primary); letter-spacing: -0.04em; }
.op-period { font-size: 18px; color: var(--text-secondary); }
.offer-save-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.save-pill {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}
.offer-renews { font-size: 12px; color: var(--text-muted); }

.offer-cta-btn { margin-bottom: 16px; }
.offer-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-border);
}
.offer-trust-row span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Feature checklist */
.offer-feats { }
.offer-feat-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.offer-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.offer-feat-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-secondary);
}
.feat-check {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* Sidebar */
.offer-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* Deadline box */
.deadline-box {
  background: rgba(204,41,54,0.05);
  border: 1px solid rgba(204,41,54,0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.deadline-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--md-red-bright);
  margin-bottom: 8px;
}
.deadline-date {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.deadline-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.dl-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-base);
  border: 1px solid rgba(204,41,54,0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  min-width: 52px;
}
.dl-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.dl-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 3px;
}
.dl-sep {
  font-size: 18px;
  font-weight: 700;
  color: var(--md-red-bright);
  opacity: 0.6;
  margin-bottom: 14px;
}
.deadline-note { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

/* Why now box */
.why-now-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.why-now-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-border);
}
.why-now-list { display: flex; flex-direction: column; gap: 14px; }
.why-now-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.why-now-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.why-now-list li div { display: flex; flex-direction: column; gap: 2px; }
.why-now-list li strong { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.why-now-list li span { font-size: 13px; color: var(--text-secondary); }

/* Guarantee */
.guarantee-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(74,222,128,0.04);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.guarantee-shield { flex-shrink: 0; margin-top: 2px; }
.guarantee-title { font-size: 15px; font-weight: 700; color: var(--brand-green); margin-bottom: 6px; }
.guarantee-text { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,194,255,0.2); }
.faq-item h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.35; }
.faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── FINAL CTA ─────────────────────────────────────────────── */
.final-cta-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  position: relative;
  overflow: hidden;
}
.final-cta-glow-red {
  position: absolute;
  top: -100px; left: 20%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(204,41,54,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-glow-blue {
  position: absolute;
  top: -80px; right: 15%;
  width: 400px; height: 350px;
  background: radial-gradient(ellipse at center, rgba(0,194,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--bg-card);
  border: 1px solid rgba(204,41,54,0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--md-red) 0%, #fff 33%, var(--md-blue-bright) 66%, var(--md-red) 100%);
}
.final-flag-row {
  font-size: 28px;
  letter-spacing: 8px;
  margin-bottom: 24px;
}
.final-cta-headline {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.final-cta-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.final-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.final-was { font-size: 16px; color: var(--text-muted); }
.final-arrow { font-size: 20px; color: var(--text-muted); }
.final-now { font-size: 40px; font-weight: 900; color: var(--text-primary); letter-spacing: -0.02em; }
.final-now-sub { font-size: 20px; font-weight: 500; color: var(--text-secondary); }
.final-save {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}
.final-cta-btn { margin-bottom: 16px; }
.final-cta-note { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.final-deadline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--md-red-bright);
  font-weight: 600;
}
.final-deadline-row strong { font-variant-numeric: tabular-nums; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  padding-top: 56px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; max-width: 340px; }
.footer-note { font-size: 12px !important; color: var(--text-muted) !important; margin-top: 12px; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--bg-border); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: center; }
.footer-bottom span { font-size: 13px; color: var(--text-muted); text-align: center; }

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .offer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta-btn { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { min-height: auto; padding: 60px 0 52px; }
  .hero-offer-card { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .price-amount { font-size: 72px; }
  .hero-countdown { gap: 6px; }
  .cd-block { min-width: 64px; padding: 10px 12px; }
  .cd-num { font-size: 32px; }
  .hero-stats { flex-direction: column; gap: 12px; padding: 16px; }
  .stat-div { width: 80%; height: 1px; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .offer-feat-grid { grid-template-columns: 1fr; }
  .value-grid { flex-direction: column; gap: 0; }
  .value-div { width: 80%; height: 1px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .final-cta-inner { padding: 40px 24px; }
  .final-price-row { flex-direction: column; gap: 8px; }
  .final-arrow { display: none; }
  .announce-bar { gap: 8px; font-size: 12px; }
}
@media (max-width: 480px) {
  .hero-line-1, .hero-line-2 { font-size: 30px; }
  .hero-line-3 { font-size: 36px; }
  .cd-block { min-width: 54px; }
  .cd-num { font-size: 26px; }
}
