:root {
  --bg: #0d0f14;
  --bg-elevated: #161921;
  --fg: #e8e6e1;
  --fg-muted: #9a978f;
  --accent: #ff6b35;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --accent-soft: #ff8a5c;
  --surface: #1c1f28;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

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

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

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

.hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

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

.hero-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* === PROBLEM === */
.problem {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.problem-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.problem-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 240px;
  line-height: 1.5;
}

/* === SERVICES === */
.services {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: var(--max-w);
  margin: 0 auto 60px;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 107, 53, 0.25);
  transform: translateY(-4px);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 1;
}

.service-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* === VERTICALS === */
.verticals {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.verticals-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto 36px;
}

.vertical-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.vertical-pill:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-soft);
}

.verticals-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

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

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.closing-inner p {
  color: var(--fg-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-vision {
  color: var(--accent-soft) !important;
  font-weight: 600;
  font-size: 1.15rem !important;
  margin-top: 24px !important;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 32px;
  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;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

  .hero-glow {
    width: 350px;
    height: 350px;
    top: -10%;
    right: -25%;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .verticals h2 br { display: none; }

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

  .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }

  .hero h1 { font-size: 2rem; }

  .stat-number { font-size: 3.5rem; }

  .service-card { padding: 28px 20px; }

  .vertical-pill { padding: 10px 20px; font-size: 0.85rem; }
}