:root {
  --bg: #0a0e17;
  --bg-surface: #111827;
  --bg-elevated: #1a2235;
  --fg: #e8ecf4;
  --fg-muted: #8b95a8;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.25);
  --accent-bright: #60a5fa;
  --warning: #f59e0b;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
  --radius: 12px;
}

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(175deg, #0a0e17 0%, #111d35 50%, #0a0e17 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.storm-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.12;
}

.sl-1 { left: 15%; top: -20%; height: 140%; transform: rotate(-8deg); }
.sl-2 { left: 55%; top: -10%; height: 130%; transform: rotate(4deg); width: 1px; }
.sl-3 { right: 20%; top: -15%; height: 135%; transform: rotate(-3deg); opacity: 0.08; }

.hero-inner {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: var(--accent-glow);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 .accent {
  color: var(--accent-bright);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* NUMBERS */
.numbers {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.num-card {
  text-align: center;
}

.num-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 8px;
}

.num-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HOW IT WORKS */
.how {
  padding: 100px 0;
}

.how h2, .why h2, .closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
  max-width: 520px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  max-width: 500px;
  font-size: 0.95rem;
}

/* WHY */
.why {
  padding: 100px 0;
  background: var(--bg-surface);
}

.why h2 {
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--fg-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #111d35 100%);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.25);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(59, 130, 246, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-phone:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}

.hero-ctas, .cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 100px 0 70px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .num-value { font-size: 1.6rem; }
  .step { flex-direction: column; gap: 8px; }
  .step-num { font-size: 2.2rem; width: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 0; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-card { padding: 24px; }
}