:root {
  --bg: #0e0e0e;
  --bg-alt: #151515;
  --bg-card: #1c1c1c;
  --fg: #f5f5f5;
  --fg-muted: #a0a0a0;
  --accent: #ff6b35;
  --accent-hover: #ff8355;
  --border: #2a2a2a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* HERO */
.hero {
  padding: 6rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  line-height: 1.3;
  max-width: 80px;
}
.hero-proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.proof-items {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--fg);
}
.proof-icon {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

/* GAP */
.gap {
  padding: 5rem 3rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.gap-inner { max-width: 1200px; margin: 0 auto; }
.gap-label, .how-label, .pricing-label, .results-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.gap-headline, .how-headline, .pricing-headline, .results-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 640px;
}
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.gap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}
.gap-card-icon {
  font-size: 1.25rem;
  color: #e05050;
  margin-bottom: 1rem;
}
.gap-card p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.gap-solution {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--accent);
}
.gap-solution-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.gap-solution p {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.7;
}

/* HOW */
.how { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}
.step { display: flex; gap: 1.5rem; }
.step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1.2;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PRICING */
.pricing { padding: 5rem 3rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 40px rgba(255, 107, 53, 0.08);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}
.pricing-setup {
  margin-bottom: 0.375rem;
}
.pricing-dollar {
  font-size: 1.25rem;
  color: var(--fg-muted);
  vertical-align: top;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
}
.pricing-period {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.pricing-month {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.pricing-month-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.pricing-month-period {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.pricing-feature {
  font-size: 0.875rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.pricing-feature span { color: var(--accent); font-size: 0.875rem; flex-shrink: 0; }
.pricing-for {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* RESULTS */
.results { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.results-inner { max-width: 1200px; margin: 0 auto; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.results-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.results-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.result-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
}
.result-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.375rem;
}
.result-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing { padding: 5rem 3rem; background: var(--bg-alt); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
  max-width: 700px;
}
.closing-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.closing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.closing-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.closing-industries span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--fg);
}

/* FOOTER */
.footer { padding: 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-wrap: wrap; }
  .gap-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero, .gap, .how, .pricing, .results, .closing { padding: 3rem 1.5rem; }
  .nav { padding: 1.25rem 1.5rem; }
}