:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 80%, var(--accent-glow) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.lede {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 3rem;
  position: relative;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Problem Section */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.problem-conclusion {
  text-align: center;
  font-size: 1.1rem;
  color: var(--fg);
  max-width: 600px;
  margin: 0 auto;
}

/* Services */
.services {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

.services-sub {
  text-align: center;
  color: var(--fg-muted);
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.service-item:hover {
  border-color: rgba(255, 107, 43, 0.3);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-item p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Numbers / Niches */
.numbers {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  text-align: center;
}

.numbers-inner {
  max-width: 800px;
  margin: 0 auto;
}

.numbers h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.niche {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--fg);
  background: var(--bg);
  transition: all 0.3s;
}

.niche:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.numbers-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Closing */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg) !important;
  font-size: 1.2rem !important;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-ghost {
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
}

/* Footer */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 3rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .niche-tags {
    gap: 0.5rem;
  }
}