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

:root {
  --purple-deep: #0D0118;
  --purple-dark: #1A0533;
  --purple-mid: #5B21B6;
  --purple-bright: #8B5CF6;
  --purple-glow: #A78BFA;
  --gold: #F59E0B;
  --gold-light: #FDE68A;
  --gold-bright: #FBBF24;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --green: #10B981;
  --radius: 20px;
  --radius-lg: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--purple-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== ANIMATED BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(139,92,246,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(245,158,11,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 30%, rgba(91,33,182,0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
  color: white;
  box-shadow: 0 0 30px rgba(245,158,11,0.4), 0 4px 16px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(245,158,11,0.6), 0 8px 30px rgba(0,0,0,0.4);
}
.btn-ghost {
  background: var(--glass);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--purple-glow);
  border: 1.5px solid rgba(139,92,246,0.4);
}
.btn-outline:hover {
  background: rgba(139,92,246,0.1);
  border-color: var(--purple-bright);
  transform: translateY(-2px);
}
.btn-nav {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
  color: white;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
}
.btn-nav:hover { box-shadow: 0 0 30px rgba(139,92,246,0.5); transform: translateY(-2px); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(13,1,24,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { font-size: 30px; filter: drop-shadow(0 0 12px rgba(245,158,11,0.6)); }
.logo-img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; filter: drop-shadow(0 0 8px rgba(245,158,11,0.5)); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 36px; margin-left: auto; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: white; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 28px 100px;
  position: relative;
  text-align: center;
  z-index: 1;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(139,92,246,0.3); top: -100px; left: -150px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(245,158,11,0.15); bottom: 0; right: -100px; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: rgba(91,33,182,0.25); top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  color: var(--gold-light);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease;
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title .line2 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 24px 48px;
  animation: fadeInUp 0.9s ease 0.4s both;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 36px; }
.stat-num {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--glass-border); }

/* ===== GENIE ILLUSTRATION ===== */
.genie-illustration {
  position: relative;
  margin-top: 60px;
  width: 340px;
  filter: drop-shadow(0 0 40px rgba(34,211,238,0.25));
  animation: genieFloat 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes genieFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ===== PHONE MOCKUP ===== */
.hero-mockup {
  position: relative;
  margin-top: 72px;
  animation: fadeInUp 1s ease 0.5s both;
}
.phone-wrap {
  position: relative;
  display: inline-block;
}
.phone-frame {
  width: 290px;
  background: linear-gradient(145deg, #1a1a2e, #0d0118);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(139,92,246,0.2);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 90px; height: 26px;
  background: #0d0118;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: linear-gradient(160deg, #0f0824 0%, #1a0533 100%);
  border-radius: 32px;
  overflow: hidden;
  padding: 18px;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.app-logo {
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.app-loc { font-size: 10px; color: rgba(255,255,255,0.4); }
.app-list-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 12px; letter-spacing: 0.5px; }
.store-cards { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.store-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-card.best {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
  border-color: rgba(16,185,129,0.3);
}
.store-left { display: flex; flex-direction: column; gap: 3px; }
.store-badge { font-size: 8px; font-weight: 800; color: var(--green); letter-spacing: 1px; }
.store-name { font-size: 13px; font-weight: 700; color: white; }
.store-savings { font-size: 9px; color: var(--green); }
.store-price { font-size: 20px; font-weight: 800; color: white; }
.store-card:not(.best) .store-price { color: rgba(255,255,255,0.6); font-size: 16px; }
.app-cta-btn {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(139,92,246,0.4);
}

/* Phone glow rings */
.phone-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 350px; height: 350px; border-color: rgba(139,92,246,0.15); animation-delay: 0s; }
.ring-2 { width: 460px; height: 460px; border-color: rgba(139,92,246,0.08); animation-delay: -1s; }
.ring-3 { width: 570px; height: 570px; border-color: rgba(245,158,11,0.05); animation-delay: -2s; }
@keyframes ringPulse { 0%,100%{opacity:1;transform:translate(-50%,-50%) scale(1)} 50%{opacity:0.5;transform:translate(-50%,-50%) scale(1.05)} }

/* ===== SECTIONS ===== */
.section { padding: 110px 0; position: relative; z-index: 1; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05));
  color: var(--purple-glow);
  border: 1px solid rgba(139,92,246,0.25);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.75;
}
.how, .faq, .testimonials, .pricing { text-align: center; }

/* ===== HOW IT WORKS ===== */
.how { background: linear-gradient(180deg, transparent 0%, rgba(91,33,182,0.08) 50%, transparent 100%); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(16.6% + 24px); right: calc(16.6% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.4), rgba(245,158,11,0.4), transparent);
}
.step {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.step:hover { transform: translateY(-8px); border-color: rgba(139,92,246,0.3); }
.step:hover::before { opacity: 1; }
.step-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(245,158,11,0.2));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(139,92,246,0.2);
}
.step-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--purple-glow);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== FEATURES ===== */
.features { background: linear-gradient(180deg, transparent, rgba(13,1,24,0.8), transparent); }
.features .section-sub { margin-bottom: 64px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-bright), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(139,92,246,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(139,92,246,0.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(139,92,246,0.2);
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.2); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: white;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
}
.testimonial-author strong { display: block; color: white; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== PRICING ===== */
.pricing { background: linear-gradient(180deg, transparent, rgba(91,33,182,0.06), transparent); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 36px;
}
.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  text-align: left;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: linear-gradient(145deg, rgba(139,92,246,0.2), rgba(91,33,182,0.1));
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 0 60px rgba(139,92,246,0.2), 0 0 0 1px rgba(139,92,246,0.3);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #D97706);
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(245,158,11,0.4);
}
.plan-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--purple-glow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.price-period { font-size: 14px; color: rgba(255,255,255,0.4); }
.plan-desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--glass-border); }
.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 13px; flex-shrink: 0; }
.plan-features li.muted { color: rgba(255,255,255,0.25); }
.plan-features li.muted::before { content: '✗'; color: rgba(255,255,255,0.2); }
.pricing-card .btn { width: 100%; }
.pricing-note { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== WAITLIST ===== */
.waitlist { text-align: center; padding: 120px 0; }
.waitlist-inner {
  max-width: 620px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 64px 48px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.waitlist-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--purple-bright), transparent);
}
.waitlist-genie { font-size: 72px; display: block; margin-bottom: 24px; filter: drop-shadow(0 0 20px rgba(245,158,11,0.4)); }
.waitlist-genie-img { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; margin-bottom: 24px; filter: drop-shadow(0 0 24px rgba(245,158,11,0.5)); animation: genieFloat 6s ease-in-out infinite; }
.waitlist h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  background: linear-gradient(135deg, white, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.waitlist > .container > .waitlist-inner > p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 36px; }
.waitlist-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.waitlist-form input {
  flex: 1;
  min-width: 240px;
  padding: 15px 22px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.07);
  color: white;
  font-size: 15px;
  outline: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.waitlist-form input::placeholder { color: rgba(255,255,255,0.3); }
.waitlist-form input:focus {
  border-color: rgba(245,158,11,0.5);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(245,158,11,0.1);
}
.waitlist-note { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== FAQ ===== */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(139,92,246,0.3); }
.faq-q {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: white; }
.faq-icon {
  width: 28px; height: 28px;
  background: rgba(139,92,246,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--purple-glow);
  flex-shrink: 0;
  transition: all 0.3s;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { background: rgba(139,92,246,0.3); transform: rotate(45deg); }
.faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { padding: 0 28px 22px; max-height: 200px; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 36px;
  backdrop-filter: blur(10px);
}
.footer-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 12px; max-width: 220px; line-height: 1.6; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ===== SECTION DIVIDERS ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), rgba(245,158,11,0.2), transparent);
  margin: 0;
}

/* ===== SUCCESS STATE ===== */
.success-msg {
  display: none;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6EE7B7;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  backdrop-filter: blur(8px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .features-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-card.featured { transform: none; }
  .hero-stats { padding: 20px 24px; }
  .stat { padding: 0 20px; }
  .waitlist-inner { padding: 40px 24px; }
  .footer-inner { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
