:root {
  --bg: #0D1B2A;
  --bg-2: #0F2137;
  --fg: #F8F9FB;
  --fg-muted: #94A3B8;
  --accent: #F59E0B;
  --accent-dim: #B4730A;
  --surface: #162434;
  --border: #1E3450;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0D1B2A;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #D97706;
  transform: translateY(-1px);
}
.btn-full { width: 100%; text-align: center; }

/* CALL FLOW */
.call-flow {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.call-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.call-step:last-child { border-bottom: none; }
.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,158,11,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text { display: flex; flex-direction: column; gap: 4px; }
.step-label { font-size: 15px; font-weight: 600; color: var(--fg); }
.step-desc { font-size: 13px; color: var(--fg-muted); font-family: monospace; }
.step-arrow { display: flex; justify-content: center; padding: 8px 0; }

/* STATS */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stat { text-align: center; padding: 0 32px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--fg-muted); line-height: 1.4; max-width: 180px; margin: 0 auto; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* HOW IT WORKS */
.how { padding: 100px 48px; }
.how-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.how-header p { font-size: 18px; color: var(--fg-muted); max-width: 560px; margin: 0 auto; }
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: rgba(245,158,11,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.how-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* WHO FOR */
.whofor {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.whofor-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whofor-left h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.whofor-left > p { font-size: 16px; color: var(--fg-muted); margin-bottom: 32px; }
.whofor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.whofor-list li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.whofor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.roi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.roi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-muted);
}
.roi-row--total {
  border-bottom: none;
  padding-top: 16px;
  margin-top: 4px;
  color: var(--fg);
  font-weight: 600;
}
.roi-val { font-size: 18px; font-weight: 700; color: var(--accent); }
.roi-footnote { font-size: 11px; color: var(--fg-muted); margin-top: 20px; line-height: 1.5; }

/* PRICING */
.pricing { padding: 100px 48px; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pricing-header p { font-size: 18px; color: var(--fg-muted); }
.pricing-card { max-width: 480px; margin: 0 auto; }
.pricing-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.tier-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 32px;
}
.price-dollar { font-size: 32px; vertical-align: top; color: var(--fg-muted); }
.price-per { font-size: 20px; color: var(--fg-muted); font-family: var(--font-body); font-weight: 400; }
.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-features li {
  font-size: 15px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-features svg { flex-shrink: 0; }
.pricing-note { font-size: 12px; color: var(--fg-muted); margin-top: 16px; line-height: 1.5; }

/* CLOSING */
.closing { padding: 120px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing p { font-size: 18px; color: var(--fg-muted); margin-bottom: 16px; }
.closing-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  margin-top: 32px;
}

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--fg-muted); max-width: 400px; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .call-flow { padding: 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .whofor-inner { grid-template-columns: 1fr; gap: 48px; }
  .how, .pricing, .closing, .whofor { padding: 60px 24px; }
  .stats { padding: 48px 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 48px; }
  .how-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; text-align: left; }
  .stat { text-align: left; padding: 0; }
  .pricing-tier { padding: 32px 24px; }
  .tier-price { font-size: 56px; }
}