:root {
  --nav-bg: #0a1628;
  --bg: #070e1a;
  --surface: #0d1a2e;
  --surface-2: #122035;
  --amber: #f5a623;
  --amber-dim: rgba(245,166,35,0.15);
  --green: #00c896;
  --green-dim: rgba(0,200,150,0.15);
  --red: #ff6b6b;
  --text: #e8edf5;
  --text-muted: #7a8ba3;
  --text-dim: #4a5d73;
  --border: rgba(255,255,255,0.06);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

/* NAV */
.nav {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  background: linear-gradient(135deg, var(--nav-bg) 0%, var(--bg) 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 2px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.proof-stat {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.proof-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
  max-width: 80px;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-right { display: flex; justify-content: flex-end; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  max-width: 320px;
}
.card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.card-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: var(--green); }
.dot-amber { background: var(--amber); }
.dot-red { background: var(--red); }
.card-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}
.card-metric {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.3rem 0;
}
.metric-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SECTION SHARED */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

/* PROBLEM */
.problem { padding: 5rem 2rem; background: var(--bg); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}
.problem-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,107,107,0.15);
  color: var(--red);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 700;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.problem-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* SOLUTION */
.solution { padding: 5rem 2rem; background: var(--nav-bg); }
.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.solution-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.solution-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.15);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.step-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.channels { margin-top: 2.5rem; }
.channels-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.channel {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 3px;
  padding: 0.3rem 0.75rem;
}
.compliance-note {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.compliance-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 2px;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.6rem;
}
.compliance-note p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* OUTCOMES */
.outcomes { padding: 5rem 2rem; background: var(--bg); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.outcome {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.outcome::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--amber);
  opacity: 0.6;
}
.outcome-icon {
  width: 36px; height: 36px;
  background: var(--amber-dim);
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid rgba(245,166,35,0.15);
}
.outcome h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.outcome p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* PACKAGES */
.packages { padding: 5rem 2rem; background: var(--nav-bg); }
.packages-inner { max-width: 1200px; margin: 0 auto; }
.packages-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.pricing-card.featured {
  background: var(--surface-2);
  border-color: rgba(245,166,35,0.3);
  box-shadow: 0 0 40px rgba(245,166,35,0.08);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nav-bg);
  background: var(--amber);
  border-radius: 2px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}
.pkg-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.pkg-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.pkg-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pkg-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}
.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

/* CLOSING */
.closing { padding: 5rem 2rem; background: var(--bg); }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
.closing-stat { display: flex; flex-direction: column; align-items: center; }
.cstat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.cstat-lbl { font-size: 0.78rem; color: var(--text-muted); max-width: 120px; text-align: center; line-height: 1.3; }

/* FOOTER */
.footer { padding: 3rem 2rem; background: var(--nav-bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-links { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* SOCIAL PROOF BAR */
.social-proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.proof-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.proof-bar-label { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.proof-bar-cities { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.proof-city { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); border-radius: 3px; padding: 0.3rem 0.7rem; }
.proof-sep { color: var(--text-dim); }

/* HOW IT WORKS */
.how { padding: 5rem 2rem; background: var(--bg); }
.how-head { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
.how-steps-strip { max-width: 1200px; margin: 2.5rem auto 0; display: flex; align-items: flex-start; gap: 1.5rem; }
.how-step-item { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.how-step-icon { width: 52px; height: 52px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--amber); margin-bottom: 1rem; }
.how-step-body h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.how-step-body p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.how-step-arrow { display: flex; align-items: center; padding-top: 1.25rem; flex-shrink: 0; }

/* FAQ */
.faq { padding: 5rem 2rem; background: var(--nav-bg); }
.faq-inner { max-width: 1200px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.faq-item { padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.6rem; }
.faq-a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* CTA BUTTON */
.cta-primary {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--nav-bg);
  background: var(--amber);
  border-radius: 5px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  transition: background 0.2s ease;
}
.cta-primary:hover { background: #e0961c; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner, .solution-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .problem-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 2rem; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .proof-divider { display: none; }
  .how-steps-strip { flex-direction: column; gap: 1rem; }
  .how-step-arrow { display: none; }
  .proof-bar-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1rem 2rem; }
  .section-headline { font-size: 1.6rem; }
  .pkg-price { font-size: 2rem; }
}