:root {
  --bg: #0a0f0d;
  --bg-warm: #111a16;
  --fg: #e8e4df;
  --fg-muted: #9a9590;
  --accent: #c8956c;
  --accent-light: #dbb99a;
  --accent-glow: rgba(200, 149, 108, 0.15);
  --green: #4a7c5e;
  --green-light: #6ba47e;
  --surface: #161e1a;
  --border: rgba(200, 149, 108, 0.12);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta 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.7;
  font-size: 17px;
  overflow-x: hidden;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 124, 94, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

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

.hero-lede {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============ STATS BAR ============ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  background: var(--bg-warm);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============ SERVICES ============ */
.services {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 650px;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.service-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ APPROACH ============ */
.approach {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.approach h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 650px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.step p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============ CLOSING ============ */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing h2 span {
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

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

footer p {
  color: var(--fg-muted);
  font-size: 14px;
}

footer .brand {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }
}

@media (max-width: 480px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px 24px;
  }
}