:root {
  --bg: #0f1b2d;
  --bg-alt: #15243a;
  --fg: #f5f7fa;
  --fg-muted: #94a3b8;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --card-bg: #1a2e4a;
  --border: rgba(255,255,255,0.08);
  --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;
}

/* Navbar */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.navbar-inner { max-width: 1100px; margin: 0 auto; }
.navbar-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  padding: 100px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Stats */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; flex: 1; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 48px;
}

/* Section label */
.section-label {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Services */
.services { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.services .section-label { color: var(--fg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.service-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-alt); }
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Niches */
.niches {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches .section-label { color: var(--fg); }
.niches-sub {
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.niche-tags span {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  background: var(--bg);
}

/* Pricing */
.pricing { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.pricing .section-label { color: var(--fg); margin-bottom: 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.pricing-card--featured {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 100px 40px;
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 28px;
}
.closing p {
  font-size: 1.05rem;
  color: var(--bg);
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.7;
}

/* Footer */
footer { padding: 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 60px; }
  .stats { padding: 32px 24px; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .niches { padding: 60px 24px; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  footer { padding: 40px 24px; }
  .navbar { padding: 16px 24px; }
}