:root {
  --bg: #0a0a0c;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --fg: #e8e6e3;
  --fg-muted: #8a8a8e;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --accent-subtle: rgba(255, 107, 43, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --max-w: 1100px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--accent-subtle);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

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

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

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

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 100px 24px;
  background: var(--bg);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 48px;
  font-weight: 600;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: rgba(255, 107, 43, 0.2);
}

.problem-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

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

/* ========== SERVICES ========== */
.services {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
  margin-top: -32px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 32px;
  padding-top: 4px;
}

.service-content h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* ========== PROOF ========== */
.proof {
  padding: 100px 24px;
  background: var(--bg);
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.niche-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.niche-tag {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
  transition: all 0.2s;
}

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

.proof-quote {
  padding: 40px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-text {
  font-size: 1.1rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: var(--bg-elevated);
  position: relative;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.closing-location {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.8rem; }
  .problem, .services, .proof, .closing { padding: 64px 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .service-row { flex-direction: column; gap: 12px; }
  .service-number { min-width: auto; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .niche-grid { justify-content: center; }
  .proof-quote { padding: 24px; }
}