:root {
  --bg: #0a0e17;
  --bg-elevated: #111827;
  --bg-card: #151d2e;
  --fg: #e2e8f0;
  --fg-muted: #8896ab;
  --accent: #22d3ee;
  --accent-dim: rgba(34, 211, 238, 0.12);
  --accent-glow: rgba(34, 211, 238, 0.25);
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-heading: '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;
}

/* === HERO === */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
  width: fit-content;
  border: 1px solid rgba(34, 211, 238, 0.15);
}

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

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

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

/* === SECTION LABEL === */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.services-header {
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.service-card {
  background: var(--bg-card);
  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: rgba(34, 211, 238, 0.2);
  transform: translateY(-2px);
}

.card-featured {
  border-color: rgba(34, 211, 238, 0.15);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(34, 211, 238, 0.04) 100%);
}

.service-icon {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

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

/* === NUMBERS === */
.numbers {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.number-item {
  text-align: center;
}

.number-big {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.number-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

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

/* === PROCESS === */
.process {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.process h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(34, 211, 238, 0.2);
  min-width: 80px;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  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-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

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

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

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

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

  .numbers-inner {
    flex-direction: column;
    gap: 40px;
  }

  .number-divider {
    width: 60px;
    height: 1px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 1.8rem;
    min-width: auto;
  }

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

  .footer-brand {
    align-items: center;
  }

  .services,
  .process {
    padding: 60px 20px;
  }

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

@media (max-width: 480px) {
  .hero-services {
    flex-direction: column;
  }

  .tag {
    text-align: center;
  }

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