:root {
  /* Dark Mode - Solar Funnel */
  --bg-primary: #0A1628;
  --bg-secondary: #0D1E36;
  --bg-tertiary: #162744;
  --bg-warm: #0F1A2E;
  --bg-card: #111E35;

  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Electric colors - brightened for dark */
  --electric-blue: #3B82F6;
  --electric-blue-dark: #2563EB;
  --electric-blue-light: rgba(59, 130, 246, 0.12);
  --electric-orange: #FF7A1A;
  --electric-orange-dark: #E56D00;
  --electric-orange-light: rgba(255, 122, 26, 0.12);
  --electric-green: #22C55E;
  --electric-green-dark: #16A34A;
  --electric-red: #EF4444;
  --electric-yellow: #FBBF24;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.25);
  --shadow-glow-orange: 0 0 40px rgba(255, 122, 26, 0.25);

  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --max-width: 680px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
  overscroll-behavior-x: none;
  overflow-x: clip;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  line-height: 1.5;
  overflow-x: clip;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
  overscroll-behavior-x: none;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes count-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes aurora-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glow-breathe {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 122, 255, 0.15), 0 0 60px rgba(0, 122, 255, 0.06); }
  50% { box-shadow: 0 0 30px rgba(0, 122, 255, 0.25), 0 0 80px rgba(0, 122, 255, 0.1); }
}
@keyframes float-stagger-1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes float-stagger-2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes float-stagger-3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes number-shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-scale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ========== UTILITIES ========== */
.gradient-text {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-blue {
  background: linear-gradient(180deg, transparent 60%, var(--electric-blue-light) 60%);
  font-weight: 700;
}

/* ========== LOADING OVERLAY ========== */
.loading-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.loading-content {
  text-align: center;
  padding: 40px;
  max-width: 400px;
}
.loading-logo img {
  width: 100px;
  height: auto;
  margin-bottom: 32px;
}
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--bg-tertiary);
  border-top-color: var(--electric-blue);
  border-radius: 50%;
  margin: 0 auto 28px;
  animation: spin 0.8s linear infinite;
}
.loading-message {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  min-height: 28px;
}
.loading-progress {
  width: 100%;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 32px;
}
.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--electric-blue) 0%, var(--electric-orange) 100%);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 0.1s linear;
}
.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.loading-step svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  transition: all 0.3s ease;
}
.loading-step.active {
  color: var(--text-primary);
}
.loading-step.active svg {
  stroke: var(--electric-blue);
}
.loading-step.done {
  color: var(--electric-green);
}
.loading-step.done svg {
  stroke: var(--electric-green);
}

/* ========== STICKY BAR ========== */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #1a0f00 0%, #2a1805 25%, #1a0f00 50%, #2a1805 75%, #1a0f00 100%);
  background-size: 200% 100%;
  animation: urgency-shift 8s linear infinite;
  border-bottom: 1px solid rgba(255, 122, 26, 0.15);
  padding: 14px 20px;
  text-align: center;
  overflow: hidden;
}
.urgency-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 26, 0.08) 50%, transparent 100%);
  animation: urgency-scan 3s ease-in-out infinite;
  pointer-events: none;
}
.urgency-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 122, 26, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes urgency-shift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes urgency-scan {
  0% { left: -50%; }
  100% { left: 150%; }
}
.urgency-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.urgency-icon-svg {
  width: 18px;
  height: 18px;
  color: var(--electric-orange);
  animation: pulse-icon 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 122, 26, 0.4));
}
@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
.urgency-text strong {
  color: var(--electric-orange);
  font-weight: 800;
}
.urgency-separator { 
  opacity: 0.25; 
  color: var(--electric-orange);
}
.urgency-update { 
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px; 
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric-green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { transform: scale(1.3); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.urgency-update #update-time {
  display: inline-block;
  min-width: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  transition: opacity 0.3s ease;
}

/* ========== CONTAINER ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

/* ========== HEADER ========== */
.header {
  padding: 24px 20px;
  text-align: center;
}
.logo-official img {
  max-width: 160px;
  height: auto;
}
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.02) 100%);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-top: 14px;
  border: 1px solid rgba(34, 197, 94, 0.12);
  position: relative;
}
.header-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
  z-index: -1;
  opacity: 0.6;
}
.header-badge svg {
  width: 16px;
  height: 16px;
  color: var(--electric-green);
  animation: check-pop 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.3));
}
@keyframes check-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.header-badge strong {
  color: var(--electric-orange);
  font-weight: 800;
}

/* ========== HERO ========== */
.hero {
  padding: 20px 24px 40px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  right: -30%;
  bottom: -30%;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 122, 255, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255, 107, 0, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(52, 199, 89, 0.03) 0%, transparent 50%);
  animation: aurora-shift 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-prehead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric-orange);
  background: var(--electric-orange-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-prehead svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero h1 .hero-accent {
  display: block;
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-orange) 50%, var(--electric-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  line-height: 1.1;
  margin: 8px 0;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
}
.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Countdown Big */
.countdown-big {
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(255,122,26,0.04) 100%);
  border: 1px solid rgba(255, 59, 48, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0 auto 32px;
  max-width: 440px;
}
.countdown-big-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric-red);
  margin-bottom: 12px;
}
.countdown-big-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.countdown-big-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.countdown-big-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--electric-red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  animation: count-pulse 1s ease-in-out infinite;
}
.countdown-big-label-unit {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 600;
}
.countdown-big-sep {
  font-size: 24px;
  font-weight: 200;
  color: var(--text-muted);
  opacity: 0.4;
  margin-top: -14px;
}

/* Trust Badges */
.trust-badges-hero {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 10px 18px;
  border-radius: var(--radius-full);
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--electric-blue);
}

/* CTA Hero */
.btn-hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.25), 0 0 60px rgba(255, 122, 26, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 16px;
  animation: glow-breathe 3s ease-in-out infinite;
}
.btn-hero-scroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.4), 0 0 60px rgba(255, 122, 26, 0.2);
  animation: none;
}
.btn-hero-scroll svg {
  width: 18px;
  height: 18px;
}

.hero-microcopy {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-microcopy svg {
  width: 14px;
  height: 14px;
}

/* ========== PAIN SECTION ========== */
.pain-section {
  padding: 48px 24px;
  background: var(--bg-secondary);
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-primary);
  padding: 22px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pain-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--electric-red) 0%, #FF6B6B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}
.pain-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  padding-top: 4px;
}

/* ========== SOCIAL PROOF ========== */
.social-proof-section {
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}
.rating-block {
  margin-bottom: 20px;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.stars svg {
  width: 22px;
  height: 22px;
  color: var(--electric-yellow);
}
.rating-text {
  font-size: 15px;
  color: var(--text-secondary);
}
.rating-text strong {
  color: var(--text-primary);
  font-weight: 700;
}
.social-proof-toast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}
.social-proof-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-check {
  width: 16px;
  height: 16px;
  color: var(--electric-green);
}
.toast-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ========== SAVINGS TIMELINE SECTION ========== */
.savings-section {
  padding: 48px 24px;
  background: var(--bg-primary);
}
.savings-card {
  background: linear-gradient(135deg, var(--bg-warm) 0%, rgba(255,122,26,0.04) 100%);
  border: 1px solid rgba(255, 122, 26, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.savings-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(ellipse 40% 30% at 30% 20%, rgba(255, 107, 0, 0.04) 0%, transparent 70%),
              radial-gradient(ellipse 35% 30% at 70% 80%, rgba(0, 122, 255, 0.03) 0%, transparent 70%);
  animation: aurora-shift 15s ease-in-out infinite;
  pointer-events: none;
}
.savings-card > * { position: relative; z-index: 1; }
.savings-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--electric-orange) 0%, #FF8C42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.savings-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}
.savings-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Savings Timeline */
.savings-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  text-align: left;
}
.timeline-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-left: 3px solid var(--electric-blue);
  margin-left: 20px;
  padding-left: 24px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--electric-blue);
  border: 3px solid var(--bg-warm);
}
.timeline-item:last-child {
  border-left-color: var(--electric-green);
}
.timeline-item:last-child::before {
  background: var(--electric-green);
}
.timeline-period {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--electric-blue);
  margin-bottom: 4px;
}
.timeline-item:last-child .timeline-period {
  color: var(--electric-green);
}
.timeline-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.timeline-text strong {
  color: var(--text-primary);
  font-weight: 700;
}
.timeline-highlight {
  display: inline-block;
  background: linear-gradient(180deg, transparent 60%, var(--electric-blue-light) 60%);
  font-weight: 700;
  color: var(--text-primary);
}
.timeline-item:last-child .timeline-highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(52, 199, 89, 0.15) 60%);
}

.savings-compare {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-tertiary);
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-label {
  font-size: 14px;
  color: var(--text-secondary);
}
.compare-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.compare-value.negative {
  color: var(--electric-red);
}
.compare-value.positive {
  color: var(--electric-green);
}

/* ========== PROCESS SECTION ========== */
.process-section {
  padding: 48px 24px;
  background: var(--bg-secondary);
}
.process-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-card {
  background: var(--bg-primary);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0, 122, 255, 0.08);
}
.process-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, #E0E0E5 30%, var(--bg-tertiary) 60%, #E0E0E5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: number-shimmer 6s linear infinite;
}
.process-card:hover .process-number {
  animation: number-shimmer 2s linear infinite;
}
.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}
.process-card:nth-child(1) .process-icon { animation: float-stagger-1 4s ease-in-out infinite; }
.process-card:nth-child(2) .process-icon { animation: float-stagger-2 5s ease-in-out infinite 0.5s; }
.process-card:nth-child(3) .process-icon { animation: float-stagger-3 4.5s ease-in-out infinite 1s; }
.process-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}
.process-card:hover .process-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
}
.process-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ========== FORM SECTION ========== */
.form-section {
  padding: 48px 24px 56px;
  background: var(--bg-primary);
}
.form-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
}
.scarcity-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-tertiary);
}
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(239,68,68,0.08) 100%);
  color: var(--electric-red);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.scarcity-badge svg {
  width: 14px;
  height: 14px;
  animation: float 2.5s ease-in-out infinite;
}
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--electric-red) 0%, var(--electric-orange) 100%);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}
.scarcity-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-align: center;
}
.form-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.required { color: var(--electric-red); }
.input-text, .select-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  font-family: inherit;
  border: 2px solid var(--bg-tertiary);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s ease;
  outline: none;
}
.input-text::placeholder { color: var(--text-muted); }
.input-text:focus, .select-input:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}
.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.field-hint svg {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Radio Group */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.radio-option { position: relative; }
.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-label {
  display: block;
  text-align: center;
  padding: 16px;
  border: 2px solid var(--bg-tertiary);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-primary);
  color: var(--text-secondary);
}
.radio-option input[type="radio"]:checked + .radio-label {
  border-color: var(--electric-blue);
  background-color: var(--electric-blue-light);
  color: var(--electric-blue);
  font-weight: 700;
}

/* CTA Button */
.btn-submit {
  width: 100%;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.25), 0 0 60px rgba(255, 122, 26, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-family: inherit;
  animation: glow-breathe 3s ease-in-out infinite;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.4), 0 0 60px rgba(255, 122, 26, 0.2);
  animation: none;
}
.btn-main-text { font-size: 17px; font-weight: 700; }
.btn-sub-text { font-size: 13px; font-weight: 500; opacity: 0.9; }
.btn-pulse { animation: glow-breathe 3s ease-in-out infinite; }

.form-trust-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-tertiary);
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}
.form-trust-item svg {
  width: 14px;
  height: 14px;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
  padding: 48px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.benefits-header {
  text-align: center;
  margin-bottom: 32px;
}
.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--electric-orange);
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.benefits-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--electric-orange);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}
.benefits-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.6;
}
.benefits-footer {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(17, 30, 53, 0.6) 0%, rgba(13, 30, 54, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
}
.benefits-footer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.benefits-footer p strong {
  color: var(--text-primary);
}
.btn-benefits-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 122, 26, 0.25);
  transition: all 0.3s ease;
}
.btn-benefits-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.35);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.benefit-card {
  background: var(--bg-primary);
  padding: 28px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0, 122, 255, 0.06);
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.2) 0%, rgba(255, 122, 26, 0.08) 100%);
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.15);
  transition: all 0.4s ease;
}
.benefit-card:hover .benefit-icon svg {
  color: var(--electric-orange);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--electric-blue-light) 0%, #E0EFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--electric-blue);
}
.benefit-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.benefit-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 48px 24px;
  background: var(--bg-secondary);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  padding: 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--electric-blue);
  font-weight: 300;
  width: 24px;
  text-align: center;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer {
  padding: 0 20px 20px;
  animation: fadeIn 0.3s ease;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.faq-answer strong { color: var(--text-primary); }

/* ========== FINAL CTA ========== */
.final-cta-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 30%, var(--bg-primary) 70%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 122, 26, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-card {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 36px;
  background: linear-gradient(135deg, rgba(17, 30, 53, 0.95) 0%, rgba(13, 30, 54, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.final-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 26, 0.4) 50%, transparent 100%);
}
.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric-orange);
  background: rgba(255, 122, 26, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 122, 26, 0.1);
}
.final-cta-badge svg {
  width: 14px;
  height: 14px;
}
.final-cta-card h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.final-cta-card p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-final-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 48px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255, 122, 26, 0.3), 0 0 0 1px rgba(255, 122, 26, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  animation: glow-breathe 3s ease-in-out infinite;
  width: 100%;
  max-width: 380px;
}
.btn-final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255, 122, 26, 0.4), 0 0 0 1px rgba(255, 122, 26, 0.15);
  animation: none;
}
.final-cta-guarantee {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.final-cta-guarantee svg {
  width: 18px;
  height: 18px;
  color: var(--electric-green);
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-tertiary);
  margin-top: auto;
}
.footer-logo-official {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-logo-official img {
  max-width: 120px;
  height: auto;
  opacity: 0.8;
}
.footer-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 600;
}
.footer-links a:hover { text-decoration: underline; }
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 90;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  background: var(--text-primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateX(10px);
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--text-primary);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ========== THANK YOU PAGE ========== */
.success-hero {
  padding: 40px 24px 28px;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}
.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--electric-green-dark);
  background: rgba(52, 199, 89, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid rgba(52, 199, 89, 0.12);
}
.success-badge svg {
  width: 14px;
  height: 14px;
  color: var(--electric-green);
}
.success-hero h1 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.success-line { display: block; }
.success-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Urgency Card */
.urgency-section { padding: 0 24px 32px; }
.urgency-card {
  background: var(--bg-primary);
  border: 2px solid var(--electric-red);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(255, 59, 48, 0.06);
  text-align: center;
}
.urgency-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.urgency-timer-icon {
  width: 24px;
  height: 24px;
  color: var(--electric-red);
}
.urgency-card h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}
.urgency-card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.countdown-box {
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(255,122,26,0.04) 100%);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}
.countdown-label {
  font-size: 12px;
  color: var(--electric-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.countdown-timer {
  font-size: 48px;
  font-weight: 900;
  color: var(--electric-red);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.countdown-progress { background: rgba(239, 68, 68, 0.12); }
.countdown-progress .progress-fill {
  background: linear-gradient(90deg, var(--electric-red) 0%, var(--electric-orange) 100%);
  transition: width 1s linear;
}

/* Advisor */
.advisor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 24px;
  text-align: left;
}
.advisor-avatar { position: relative; flex-shrink: 0; }
.advisor-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-secondary);
  background: var(--electric-green);
}
.advisor-name { font-weight: 700; font-size: 15px; color: var(--text-primary); }
.advisor-role { font-size: 13px; color: var(--text-secondary); }
.advisor-response {
  font-size: 12px;
  color: var(--electric-green);
  font-weight: 600;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* WhatsApp CTA */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-pulse { animation: pulse-soft 2.5s infinite; }
.btn-whatsapp-main { font-size: 16px; font-weight: 700; }
.btn-whatsapp-sub { font-size: 13px; opacity: 0.9; font-weight: 500; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-phone:hover { background: var(--bg-secondary); color: var(--text-primary); }

/* Warning Box */
.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: left;
}
.warning-icon {
  width: 22px;
  height: 22px;
  color: var(--electric-red);
  flex-shrink: 0;
  margin-top: 1px;
}
.warning-content {
  font-size: 13px;
  color: #FCA5A5;
  line-height: 1.6;
}
.warning-content strong {
  display: block;
  margin-bottom: 6px;
  color: var(--electric-red);
  font-weight: 700;
}
.warning-content ul { margin: 0; padding-left: 18px; }
.warning-content li { margin-bottom: 3px; }

/* Stats */
.stats-section { padding: 0 24px 32px; }
.stats-card {
  display: flex;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(59,130,246,0.04) 100%);
  border: 1px solid rgba(0, 122, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  gap: 20px;
  align-items: center;
}
.stat-item { flex: 1; text-align: center; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--electric-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  background: var(--electric-blue);
  opacity: 0.15;
  align-self: stretch;
}

/* Steps */
.next-steps-section { padding: 32px 24px; background: var(--bg-secondary); }
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-item { display: flex; align-items: flex-start; gap: 16px; }
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--bg-tertiary);
}
.step-number.active {
  background: var(--electric-blue);
  color: white;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}
.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Thank You Trust */
.thankyou-trust { padding: 24px; background: var(--bg-primary); }
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-block {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.trust-block svg { width: 14px; height: 14px; }

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.testimonials-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric-orange);
  margin-bottom: 8px;
}
.testimonials-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.testimonials-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 56px;
}
.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 4px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}
.testimonial-card {
  background: linear-gradient(135deg, rgba(17, 30, 53, 0.9) 0%, rgba(13, 30, 54, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}
.testimonial-visual {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.testimonial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.testimonial-card:hover .testimonial-visual img {
  transform: scale(1.04);
}
.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--electric-green);
  background: rgba(34, 197, 94, 0.08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.testimonial-tag svg {
  width: 12px;
  height: 12px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-quote strong {
  color: var(--text-primary);
  font-style: normal;
}
.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08) 0%, rgba(34, 197, 94, 0.06) 100%);
  border: 1px solid rgba(255, 122, 26, 0.1);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.testimonial-result-number {
  font-size: 26px;
  font-weight: 900;
  color: var(--electric-orange);
  line-height: 1;
}
.testimonial-result-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Navigation Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
  padding: 0;
}
.testimonial-arrow:hover {
  background: rgba(255, 122, 26, 0.1);
  color: var(--electric-orange);
  border-color: rgba(255, 122, 26, 0.2);
  transform: translateY(-50%) scale(1.08);
}
.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.testimonial-arrow svg {
  width: 18px;
  height: 18px;
}
.testimonial-arrow.prev { left: 0; }
.testimonial-arrow.next { right: 0; }

/* Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonials-dot.active {
  background: var(--electric-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.12);
  transform: scale(1.2);
}

/* ========== BIG 99% SECTION ========== */
.big-ninety-section {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}
.big-ninety-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  right: -30%;
  bottom: -30%;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 122, 26, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse 40% 30% at 30% 30%, rgba(0, 122, 255, 0.04) 0%, transparent 50%);
  animation: aurora-shift 15s ease-in-out infinite;
  pointer-events: none;
}
.big-ninety-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.big-ninety-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--electric-orange);
  margin-bottom: 16px;
}
.big-ninety-number {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--electric-orange) 0%, #FFB347 25%, var(--electric-orange) 50%, #FF6B35 75%, var(--electric-orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  margin-bottom: 8px;
}
.big-ninety-suffix {
  font-size: 48px;
  font-weight: 900;
  color: var(--electric-orange);
  line-height: 1;
  margin-bottom: 24px;
}
.big-ninety-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.big-ninety-text strong {
  color: var(--text-primary);
}
.big-ninety-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 44px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.25), 0 0 60px rgba(255, 122, 26, 0.1);
  transition: all 0.3s ease;
  animation: glow-breathe 3s ease-in-out infinite;
}
.big-ninety-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.4), 0 0 60px rgba(255, 122, 26, 0.15);
  animation: none;
}
.big-ninety-cta svg {
  width: 22px;
  height: 22px;
}

/* ========== RESPONSIVE ========== */

/* Small phones (up to 374px) */
@media (max-width: 374px) {
  .hero { padding: 16px 16px 32px; }
  .hero h1 { font-size: 32px; }
  .hero h1 .hero-accent { font-size: 48px; }
  .hero-subtitle { font-size: 15px; }
  .trust-badges-hero { gap: 6px; }
  .trust-item { padding: 8px 12px; font-size: 11px; }
  .btn-hero-scroll { padding: 16px 28px; font-size: 15px; width: 100%; max-width: 320px; }
  .countdown-big { padding: 16px; }
  .countdown-big-number { font-size: 28px; }
  .section-title { font-size: 24px; }
  .pain-card { padding: 18px 16px; }
  .savings-card { padding: 24px 20px; }
  .timeline-item { padding-left: 16px; margin-left: 14px; }
  .process-card { padding: 24px 20px; }
  .process-number { font-size: 56px; }
  .form-card { padding: 28px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 24px 20px; }
  .benefits-subtitle { font-size: 14px; }
  .benefits-footer { padding: 20px 16px; }
  .btn-benefits-cta { width: 100%; padding: 14px 24px; font-size: 14px; }
  .big-ninety-number { font-size: 80px; }
  .big-ninety-suffix { font-size: 36px; }
  .big-ninety-cta { padding: 18px 28px; font-size: 16px; width: 100%; }
  .final-cta-card { padding: 36px 24px; }
  .final-cta-card h2 { font-size: 26px; }
  .btn-final-cta { padding: 20px 28px; font-size: 16px; width: 100%; }
  .radio-group { grid-template-columns: 1fr; }
  .testimonials-carousel { padding: 0 36px; }
  .testimonial-arrow { width: 32px; height: 32px; }
  .testimonial-arrow svg { width: 14px; height: 14px; }
  .testimonial-card { padding: 20px 16px; }
  .testimonial-visual { height: 110px; }
}

/* Phones (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
  .hero h1 { font-size: 36px; }
  .hero h1 .hero-accent { font-size: 56px; }
  .btn-hero-scroll { width: 100%; max-width: 340px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .btn-benefits-cta { width: 100%; }
  .big-ninety-number { font-size: 96px; }
  .big-ninety-suffix { font-size: 40px; }
  .final-cta-card { padding: 40px 28px; }
  .btn-final-cta { width: 100%; }
  .testimonials-carousel { padding: 0 40px; }
  .testimonial-arrow { width: 36px; height: 36px; }
  .testimonial-card { padding: 24px 20px; }
}

/* Large phones / Small tablets (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
  .hero h1 { font-size: 40px; }
  .hero h1 .hero-accent { font-size: 64px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .big-ninety-number { font-size: 110px; }
  .testimonials-carousel { padding: 0 48px; }
}

/* Tablets and up (640px+) */
@media (min-width: 640px) {
  .hero h1 { font-size: 52px; }
  .hero h1 .hero-accent { font-size: 80px; }
  .hero-subtitle { font-size: 20px; }
  .section-title { font-size: 32px; }
  .process-grid { flex-direction: row; }
  .process-card { flex: 1; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-card { padding: 32px; }
  .form-card { padding: 40px 36px; }
  .final-cta-card { padding: 56px 48px; }
  .final-cta-card h2 { font-size: 36px; }
  .big-ninety-number { font-size: 140px; }
  .big-ninety-suffix { font-size: 56px; }
}

/* Tablets landscape (768px+) */
@media (min-width: 768px) {
  .hero { padding: 32px 40px 48px; }
  .pain-section { padding: 64px 40px; }
  .savings-section { padding: 64px 40px; }
  .process-section { padding: 64px 40px; }
  .form-section { padding: 64px 40px 72px; }
  .benefits-section { padding: 64px 40px; }
  .faq-section { padding: 64px 40px; }
  .big-ninety-section { padding: 100px 40px; }
  .final-cta-section { padding: 80px 40px; }
  .container { padding: 0; }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  :root { --max-width: 720px; }
  .hero h1 { font-size: 56px; }
  .hero h1 .hero-accent { font-size: 96px; }
  .big-ninety-number { font-size: 180px; }
  .big-ninety-suffix { font-size: 72px; }
}

/* Large desktop (1280px+) */
@media (min-width: 1280px) {
  :root { --max-width: 760px; }
  .hero h1 { font-size: 60px; }
  .hero h1 .hero-accent { font-size: 110px; }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
*:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 3px;
}

/* ========== PRINT ========== */
@media print {
  .urgency-bar, .whatsapp-float, .social-proof-toast, .btn-pulse, .countdown-big, .loading-overlay {
    display: none !important;
  }
}
