@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6e3;
  --fg-muted: #8a8894;
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.25);
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
  --max-w: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px; padding: 8px 18px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 32px;
}

.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 28px; max-width: 800px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.25rem; color: var(--fg-muted);
  max-width: 560px; line-height: 1.6; margin-bottom: 48px;
}

.stats-bar {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px;
}

.stat-label { font-size: 0.9rem; color: var(--fg-muted); }

.problem { padding: 100px 0; }
.problem-header { text-align: center; margin-bottom: 64px; }
.problem-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px;
}
.problem-header p { color: var(--fg-muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.pain-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color 0.3s;
}
.pain-card:hover { border-color: rgba(245, 158, 11, 0.2); }
.pain-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.pain-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.pain-card p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.6; }

.services { padding: 100px 0; background: var(--bg-subtle); }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.services-header { margin-bottom: 64px; max-width: 640px; }
.services-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px;
}
.services-header p { color: var(--fg-muted); font-size: 1.05rem; }
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.service-item {
  display: flex; gap: 20px; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: transform 0.3s, border-color 0.3s;
}
.service-item:hover { transform: translateY(-2px); border-color: rgba(245, 158, 11, 0.15); }
.service-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem;
  font-weight: 700; color: rgba(245, 158, 11, 0.2); line-height: 1; flex-shrink: 0;
}
.service-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.service-item p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.55; }

.niches { padding: 100px 0; }
.niches-center { text-align: center; margin-bottom: 56px; }
.niches-center h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px;
}
.niches-center p { color: var(--fg-muted); max-width: 500px; margin: 0 auto; }
.niche-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.niche-tag {
  display: inline-block; padding: 14px 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.95rem; font-weight: 500;
  color: var(--fg); transition: all 0.3s;
}
.niche-tag:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }

.closing {
  padding: 120px 0; text-align: center; position: relative;
}
.closing::before {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.closing .container { position: relative; z-index: 1; }
.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.closing p {
  color: var(--fg-muted); font-size: 1.15rem;
  max-width: 520px; margin: 0 auto; line-height: 1.65;
}

footer {
  padding: 40px 0; border-top: 1px solid var(--border); text-align: center;
}
footer p { color: var(--fg-muted); font-size: 0.85rem; }
footer .brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--fg); }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .niche-tags { gap: 10px; }
  .niche-tag { padding: 10px 20px; font-size: 0.85rem; }
}