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

:root {
  --bg-primary: #080810;
  --bg-card: #0f0f1a;
  --bg-card2: #12121f;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --green: #10b981;
  --text-primary: #f1f0ff;
  --text-muted: #8b8ba8;
  --border: rgba(124, 58, 237, 0.2);
  --glow-purple: rgba(124, 58, 237, 0.4);
  --glow-pink: rgba(236, 72, 153, 0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active { color: var(--purple-light); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 120px 64px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(124,58,237,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(236,72,153,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(6,182,212,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a14 0%, #080810 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 900'%3E%3Cpath d='M900 900 Q920 600 880 300 Q860 200 840 100 Q870 150 890 200 Q930 150 950 80 Q940 200 910 300 Q950 250 980 180 Q960 280 930 380 Q970 300 1010 220 Q980 330 950 450 Q980 380 1020 320 Q990 430 960 550 Q990 490 1030 440 Q1000 540 970 650 Q1000 600 1040 570 Q1010 650 980 750 Q990 720 1010 700 Q1000 760 990 830 Q940 870 900 900Z' fill='rgba(20,10,40,0.6)'/%3E%3Cpath d='M100 900 Q80 650 120 400 Q140 280 150 160 Q130 200 110 260 Q80 200 60 120 Q70 240 100 340 Q60 280 30 200 Q50 310 80 430 Q50 360 10 290 Q40 400 70 520 Q40 450 5 400 Q30 510 60 630 Q30 570 0 530 Q20 620 50 720 Q30 690 10 670 Q25 740 40 820 Q80 870 100 900Z' fill='rgba(20,10,40,0.5)'/%3E%3C/svg%3E") no-repeat center/cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--pink) 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(124,58,237,0.6);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--purple-light);
  background: rgba(124,58,237,0.08);
}

.hero-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars-stack { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.avatar:first-child { margin-left: 0; }

.avatar-text { font-size: 13px; color: var(--text-muted); }
.avatar-text strong { color: var(--text-primary); }

/* ─── HERO IMAGE (right column) ─── */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  flex: 1 1 40%;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(124,58,237,0.35));
}

/* ─── SECTION WRAPPER ─── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}

.section-label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.27;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.centered { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ─── WELCOME CARDS ─── */
.welcome-section {
  background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.04) 50%, transparent 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-big { grid-column: span 2; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-3px);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(236,72,153,0.2));
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-highlight {
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── PAIN POINTS ─── */
.pain-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-primary);
  border: 1px solid rgba(236,72,153,0.15);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.pain-item:hover { border-color: rgba(236,72,153,0.4); }

.pain-x {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(239,68,68,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ef4444;
  font-weight: 700;
}

.pain-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.pain-item p strong { color: var(--text-primary); }

.pain-cta-box {
  margin-top: 40px;
  text-align: center;
  padding: 24px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 14px;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.pain-cta-box p { font-size: 15px; color: var(--text-muted); font-style: italic; }
.pain-cta-box p strong { color: var(--purple-light); }

/* ─── SOLUTION ─── */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-visual { position: relative; }

.code-mockup {
  background: #0d0d1a;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 16px;
  padding: 24px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.code-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan));
}

.code-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #10b981; }

.code-comment { color: #6b7280; font-style: italic; }
.code-keyword { color: #a855f7; font-weight: 600; }
.code-string { color: #10b981; }
.code-func { color: #06b6d4; }
.code-output {
  margin-top: 12px;
  padding: 12px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  color: #10b981;
  font-size: 12px;
}

.glow-blob {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.glow-blob-1 { background: rgba(124,58,237,0.3); top: -40px; left: -40px; }
.glow-blob-2 { background: rgba(236,72,153,0.2); bottom: -40px; right: -40px; }

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover { border-color: rgba(124,58,237,0.4); background: var(--bg-card2); }

.step-num {
  width: 32px; height: 32px; min-width: 32px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
}

.step-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.step-text p { font-size: 13px; color: var(--text-muted); }

/* ─── BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.benefit-card:hover {
  border-color: rgba(124,58,237,0.45);
  transform: translateY(-4px);
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover::after { opacity: 1; }

.benefit-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── CURRICULUM ─── */
.curriculum-section {
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04), transparent);
}

.weeks-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.week-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.week-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.week-card:nth-child(1)::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.week-card:nth-child(2)::before { background: linear-gradient(90deg, #ec4899, #f97316); }
.week-card:nth-child(3)::before { background: linear-gradient(90deg, #06b6d4, #10b981); }
.week-card:nth-child(4)::before { background: linear-gradient(90deg, #f59e0b, #ef4444); }

.week-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.week-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }

.week-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.week-items li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.week-items li::before {
  content: '›';
  color: var(--purple-light);
  font-weight: 700;
  margin-top: -1px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(124,58,237,0.4); }

.testi-quote {
  font-size: 32px;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
}

.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}

.testi-info strong { display: block; font-size: 14px; font-weight: 700; }
.testi-info span { font-size: 12px; color: var(--text-muted); }

.stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

/* ─── PRICING ─── */
.pricing-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.pricing-includes {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.pricing-includes h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; }

.include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.check {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: #10b981;
  font-weight: 700;
}

.include-list li strong { color: var(--text-primary); }

.pricing-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.08));
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink), #f97316);
}

.price-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.price-old { font-size: 18px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 8px; }

.price-new {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.price-period { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

.countdown { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; }

.count-box {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 56px;
}
.count-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-light);
  display: block;
  line-height: 1;
}
.count-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.count-sep { font-size: 20px; font-weight: 700; color: var(--purple-light); align-self: center; }

.btn-cta-big {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(124,58,237,0.4);
  text-align: center;
  margin-bottom: 16px;
}
.btn-cta-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(124,58,237,0.6);
}
.btn-cta-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.guarantee span { color: #10b981; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  user-select: none;
}
.faq-q:hover { color: var(--purple-light); }
.faq-q .arrow { font-size: 18px; color: var(--purple-light); transition: transform 0.3s; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.27;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.final-cta p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.slots-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #ef4444;
  margin-top: 24px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-copy { font-size: 13px; color: var(--text-muted); }

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple-light); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.4); border-radius: 3px; }

/* ─── DIVIDER ─── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
  margin: 12px 0 24px;
}
.centered .divider { margin-left: auto; margin-right: auto; }

/* ─── RESPONSIVE 1200px ─── */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 120px 48px 80px;
  }
  .hero-content { max-width: 640px; }
  .hero-image-wrap {
    flex: none;
    width: 100%;
    max-width: 560px;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero {
    padding: 100px 24px 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero-image-wrap {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero h1 { font-size: 34px; }
  .cards-grid, .benefits-grid { grid-template-columns: 1fr; }
  .card-big { grid-column: span 1; }
  .pain-grid { grid-template-columns: 1fr; }
  #solution { overflow: hidden; }
  .solution-layout { grid-template-columns: 1fr; gap: 40px; }
  .solution-visual { max-width: 100%; }
  .glow-blob { display: none; }
  .weeks-layout { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-wrapper { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 12px 24px; }
  .footer-links a { flex: 0 0 calc(50% - 12px); }
  .final-cta h2 { font-size: 26px; letter-spacing: -0.5px; }
  .hero-actions { flex-wrap: nowrap; }
  .btn-primary, .btn-secondary { white-space: nowrap; font-size: 13px; padding: 12px 18px; }
}
