:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --accent: #c41e2a;
  --accent-glow: #e63946;
  --metallic: #71717a;
  --metallic-light: #a1a1aa;
  --border: #2a2a2a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', 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.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8% 60px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(196, 30, 42, 0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-grid {
  max-width: 900px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 32px;
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--metallic);
}

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

/* === SECTIONS SHARED === */
.section-header {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(196, 30, 42, 0.3);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--fg);
}

/* === SERVICES === */
.services {
  padding: 120px 8%;
  background: var(--bg-elevated);
}

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

.service-card {
  background: var(--bg-card);
  padding: 48px 36px;
  transition: background 0.3s;
}

.service-card:hover {
  background: #222;
}

.service-icon {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
}

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* === HOW IT WORKS === */
.how {
  padding: 120px 8%;
  background: var(--bg);
}

.steps {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  min-width: 60px;
  opacity: 0.5;
}

.step-content {
  padding: 8px 0;
}

.step-content h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-line {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-left: 30px;
}

/* === WHY === */
.why {
  padding: 120px 8%;
  background: var(--bg-elevated);
}

.why-content {
  max-width: 1200px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-marker {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 1px;
  margin-top: 6px;
  flex-shrink: 0;
}

.why-item h3 {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-item p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 160px 8%;
  background: 
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(196, 30, 42, 0.06) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}

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

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 32px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

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

.footer-location {
  color: var(--metallic);
  font-size: 0.8rem;
  margin-left: auto;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    padding: 100px 6% 40px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .hero {
    padding: 80px 5% 40px;
    min-height: auto;
  }

  .services,
  .how,
  .why {
    padding: 80px 5%;
  }

  .closing {
    padding: 100px 5%;
  }

  .step {
    gap: 20px;
  }

  .step-number {
    font-size: 2rem;
    min-width: 40px;
  }

  .step-line {
    margin-left: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-location {
    margin-left: 0;
  }

  .service-card {
    padding: 36px 24px;
  }
}