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

:root {
  /* Colors */
  --bg:          #09090f;
  --bg-dark:     #0f0f1a;
  --bg-card:     #14141f;
  --border:      #252535;
  --border-soft: #1e1e2e;

  --purple-500:  #7c3aed;
  --purple-400:  #8b5cf6;
  --purple-300:  #a78bfa;
  --purple-200:  #c4b5fd;
  --purple-glow: rgba(124, 58, 237, 0.35);

  --text:        #f0f0f8;
  --text-muted:  #8888a8;
  --text-faint:  #55556a;

  --green:       #22c55e;
  --red:         #ef4444;
  --amber:       #f59e0b;

  /* Spacing scale */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Radius */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;  --r-xl: 24px;

  /* Typography */
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
ul { list-style: none; }

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section { padding: var(--sp-24) 0; }
.section-dark { background: var(--bg-dark); }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: var(--sp-4);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: var(--sp-12);
}

.highlight { color: var(--purple-300); }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 11px 24px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple-500);
  color: #fff;
  box-shadow: 0 0 28px var(--purple-glow);
}
.btn-primary:hover {
  background: var(--purple-400);
  box-shadow: 0 0 44px rgba(124,58,237,.55);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--purple-500);
  color: var(--purple-200);
}
.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-xl  { padding: 16px 40px; font-size: 1.05rem; border-radius: var(--r-md); }
.btn-block { width: 100%; display: flex; }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(9, 9, 15, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--purple-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--purple-500) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
  transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--purple-400) !important; }

.nav-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  padding: 130px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(124,58,237,.16) 0%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-bottom: var(--sp-20);
}

.badge {
  display: inline-block;
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(124,58,237,.38);
  color: var(--purple-200);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: var(--sp-5);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-5);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
}
.hero-trust li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual img {
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px var(--border);
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-300);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════
   PROBLEM
════════════════════════════════════════════ */
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(124,58,237,.4); }

.problem-emoji { font-size: 1.6rem; flex-shrink: 0; }

.problem-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--sp-1);
}
.problem-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.problem-cta {
  margin-top: var(--sp-12);
  text-align: center;
}
.problem-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--sp-5);
}

/* ════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════ */
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  transition: border-color 0.22s, transform 0.22s;
}
.benefit-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-5px);
}
.benefit-card-featured {
  border-color: var(--purple-500);
  box-shadow: 0 0 48px var(--purple-glow);
}
.featured-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-500);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  display: block;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: var(--sp-3);
}
.benefit-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.benefit-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: var(--sp-4);
  position: relative;
}
.benefit-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-400);
}

/* ════════════════════════════════════════════
   FOR WHOM
════════════════════════════════════════════ */
.forwhom-grid { align-items: start; gap: var(--sp-8); }

.forwhom-yes,
.forwhom-no {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}
.forwhom-yes { border-color: rgba(34,197,94,.25); }
.forwhom-no  { border-color: rgba(239,68,68,.18); }

.forwhom-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: var(--sp-5);
}
.forwhom-title-yes { color: var(--green); }
.forwhom-title-no  { color: var(--red); }

.forwhom-yes li,
.forwhom-no li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.6;
}
.forwhom-yes li:last-child,
.forwhom-no li:last-child { border-bottom: none; }

/* ════════════════════════════════════════════
   CURRICULUM
════════════════════════════════════════════ */
.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.module {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.module:hover { border-color: rgba(124,58,237,.35); }
.module.open  { border-color: var(--purple-500); }

.module-header {
  padding: var(--sp-5) var(--sp-6);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  cursor: pointer;
  user-select: none;
}
.module-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.module-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-400);
}
.module-duration {
  font-size: 0.72rem;
  color: var(--text-faint);
}
.module-header h3 {
  font-size: 1rem;
  font-weight: 700;
}
.module-toggle {
  font-size: 1.4rem;
  color: var(--purple-400);
  transition: transform 0.25s;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.module.open .module-toggle { transform: rotate(45deg); }

.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.module.open .module-body { max-height: 300px; }

.module-body ul {
  padding: 0 var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--sp-4);
}
.module-body li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
.lesson-icon { color: var(--purple-400); font-size: 0.7rem; flex-shrink: 0; }

.curriculum-bonus {
  background: rgba(124,58,237,.1);
  border: 1px dashed rgba(124,58,237,.4);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  font-size: 0.9rem;
  color: var(--purple-200);
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-grid { align-items: start; }

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.testimonial-featured {
  border-color: var(--purple-500);
  box-shadow: 0 0 40px var(--purple-glow);
}
.testimonial-stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 2px; }
.testimonial blockquote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue, 270) 70% 35%), hsl(var(--hue, 270) 70% 55%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing-container { max-width: 640px; }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: 0 0 64px var(--purple-glow);
  margin-top: var(--sp-12);
}
.pricing-badge {
  display: inline-block;
  background: var(--purple-500);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: var(--sp-8);
}
.pricing-top {
  display: flex;
  gap: var(--sp-10);
  align-items: flex-end;
  margin-bottom: var(--sp-8);
}
.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.price-old {
  font-size: 1.2rem;
  color: var(--text-faint);
  text-decoration: line-through;
}
.price-main {
  font-size: 3rem;
  font-weight: 900;
  color: var(--purple-200);
  line-height: 1;
}
.price-main small {
  font-size: 1.4rem;
  font-weight: 700;
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.pricing-includes {
  margin-bottom: var(--sp-8);
}
.pricing-includes h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-includes ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pricing-includes li {
  font-size: 0.92rem;
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.pricing-includes li span {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--sp-4);
}

/* Countdown */
.countdown-box {
  margin-top: var(--sp-8);
  text-align: center;
}
.countdown-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.countdown {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.cd-unit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-5);
  text-align: center;
  min-width: 70px;
}
.cd-unit span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple-300);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-unit small {
  font-size: 0.68rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cd-sep { font-size: 1.5rem; font-weight: 700; color: var(--purple-400); }

/* ════════════════════════════════════════════
   REGISTER FORM
════════════════════════════════════════════ */
.form-container {
  max-width: 680px;
  text-align: center;
}
.form-container .section-sub { margin-left: auto; margin-right: auto; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  margin-top: var(--sp-10);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  margin-bottom: var(--sp-5);
  position: relative;
}
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.2px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
}
input:focus, select:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(124,58,237,.18);
}
input.input-error { border-color: var(--red); }
input::placeholder { color: var(--text-faint); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888a8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
select option { background: #1a1a28; }

.field-error {
  display: block;
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 5px;
  min-height: 1em;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: var(--sp-4);
}

/* Success state */
.form-success {
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--r-xl);
  padding: var(--sp-12) var(--sp-10);
  margin-top: var(--sp-10);
  text-align: center;
}
.success-icon { font-size: 3.5rem; margin-bottom: var(--sp-4); }
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: var(--sp-4); }
.form-success p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: var(--sp-3); }
.success-note { font-size: 0.85rem; color: var(--text-faint) !important; margin-bottom: var(--sp-6) !important; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-container { max-width: 740px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-12);
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(124,58,237,.45); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.18s;
}
.faq-question:hover { color: var(--purple-300); }

.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.18s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--purple-400);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon {
  background: var(--purple-500);
  border-color: var(--purple-500);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 250px; }
.faq-answer p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-soft);
  padding-top: var(--sp-4);
}

/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,.14) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner {
  text-align: center;
  max-width: 640px;
}
.final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.final-cta > .container > p {
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
}
.final-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: var(--sp-4);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  padding: var(--sp-10) 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  text-align: center;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--sp-1);
}
.footer-logo span { color: var(--purple-400); }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.83rem;
  color: var(--text-faint);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--purple-300); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* ════════════════════════════════════════════
   STICKY CTA (mobile only)
════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 60%, transparent);
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.55s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid    { grid-template-columns: 1fr; text-align: center; }
  .hero-visual  { display: none; }
  .hero-cta-group { justify-content: center; }
  .hero-trust   { justify-content: center; }
  .hero-sub     { margin-left: auto; margin-right: auto; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .stat-item strong { font-size: 1.2rem; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
════════════════════════════════════════════ */
@media (max-width: 600px) {
  .section { padding: var(--sp-16) 0; }

  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 62px; left: 0; right: 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); padding: var(--sp-4) 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px var(--sp-6); font-size: 0.95rem; }
  .nav-cta { margin: var(--sp-3) var(--sp-6); border-radius: var(--r-sm); text-align: center; }
  .nav-menu-btn { display: flex; align-items: center; justify-content: center; }

  .hero { padding-top: 80px; }
  .hero-cta-group { flex-direction: column; }
  .btn-lg { width: 100%; }

  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: var(--sp-6); }
  .pricing-card { padding: var(--sp-6); }
  .pricing-top { flex-direction: column; gap: var(--sp-4); }

  .module-header { grid-template-columns: auto 1fr auto; gap: var(--sp-3); }

  .sticky-cta { display: block; }

  .final-cta-inner .btn { width: 100%; }
}
