:root {
  --bg: #0a0a0c;
  --bg-elevated: #111115;
  --bg-card: #16161a;
  --fg: #e8e6e3;
  --fg-muted: #8a8a8e;
  --accent: #f5a623;
  --accent-glow: rgba(245, 166, 35, 0.15);
  --accent-soft: #c4841d;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

.accent { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.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;
  right: -200px;
  width: 600px;
  height: 600px;
  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: 960px;
  margin: 0 auto;
}

.problem-label,
.services-label,
.how-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem h2,
.services h2,
.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

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

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

.problem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

.services-inner {
  max-width: 960px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.service-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
}

.service-card.featured {
  border-color: var(--accent-soft);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.04) 100%);
}

.service-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== HOW / VERTICALS ===== */
.how {
  padding: 100px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.how-subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-top: -24px;
  margin-bottom: 48px;
}

.verticals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

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

.vertical:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 166, 35, 0.05);
}

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

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

.closing-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 48px;
  border-radius: 2px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-location {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* ===== HERO CTA BUTTON ===== */
.hero-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.25);
}

.hero-cta:hover {
  background: #f0b84a;
  box-shadow: 0 6px 32px rgba(245, 166, 35, 0.35);
}

.hero-cta:active {
  transform: scale(0.98);
}

.hero-cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ===== PRICING CARD ===== */
.pricing-card {
  margin-top: 48px;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,166,35,0.04) 100%);
}

.pricing-left .pricing-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-left h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-left p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 420px;
}

.pricing-right {
  text-align: right;
  flex-shrink: 0;
}

.price-range {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.price-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.pricing-cta:hover { background: #f0b84a; }

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

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 20px 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
    text-align: center;
  }

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

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

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

  .problem, .services, .how {
    padding: 64px 20px;
  }

  .pricing-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .pricing-right {
    text-align: center;
  }

  .pricing-left p {
    max-width: 100%;
  }

  .closing {
    padding: 80px 20px;
  }

  .verticals {
    gap: 8px;
  }

  .vertical {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}