:root {
  --navy: #0a1628;
  --navy-mid: #111e35;
  --navy-light: #1a2d4a;
  --amber: #F59E0B;
  --amber-light: #fbbf24;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
}

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

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.accent { color: var(--amber); }

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
}
.nav-tagline {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 40px 64px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  max-width: 700px;
}
.stat {
  padding: 24px 32px;
  flex: 1;
}
.stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
}

/* Problem */
.problem { padding: 80px 40px; background: var(--navy-mid); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.problem-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 700px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.problem-icon {
  font-size: 16px;
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-card p {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.5;
}

/* How It Works */
.how { padding: 80px 40px; background: var(--navy); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.how-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 48px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(245,158,11,0.25);
  flex-shrink: 0;
  width: 80px;
  line-height: 1;
  padding-top: 4px;
}
.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.7;
}
.how-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray-500);
  max-width: 600px;
  padding: 16px 20px;
  border-left: 2px solid var(--amber);
  background: rgba(245,158,11,0.06);
  border-radius: 0 8px 8px 0;
}

/* Pricing */
.pricing { padding: 80px 40px; background: var(--navy-mid); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.pricing-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.4);
  position: relative;
}
.pricing-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.pricing-period {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-500);
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--gray-300);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 12px;
}
.pricing-note {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Who It's For */
.whoforit { padding: 80px 40px; background: var(--navy); }
.whoforit-inner { max-width: 1200px; margin: 0 auto; }
.whoforit-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.whoforit-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 700px;
}
.whoforit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
}
.who-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px;
}
.who-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.who-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.who-card p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; }
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.25;
}
.closing-sub {
  font-size: 17px;
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 48px 40px 32px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: var(--gray-500);
  max-width: 300px;
}
.footer-links {
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray-500);
}

/* Buttons */
.btn-pricing {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 16px;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
}
.btn-pricing:hover { background: var(--amber-light); transform: translateY(-1px); }

.btn-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 40px;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
}
.btn-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* Responsive */
@media (max-width: 768px) {
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .whoforit-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 12px; }
  .step-num { font-size: 36px; width: auto; }
  .footer-inner { flex-direction: column; gap: 24px; }
}