:root {
  --bg: #0D1B2A;
  --bg-card: #162032;
  --bg-elevated: #1E2D42;
  --fg: #FFFFFF;
  --fg-muted: #94A3B8;
  --fg-subtle: #64748B;
  --accent: #2DD4BF;
  --accent-dim: rgba(45, 212, 191, 0.15);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,212,191,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.eyebrow-dash {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero-eyebrow span:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

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

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

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.dash-header {
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fg-subtle);
}

.dash-dot.active { background: #EF4444; }

.dash-content { padding: 20px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat { text-align: center; }

.stat-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
}

.stat-lbl {
  font-size: 11px;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.graph-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  padding: 0 8px;
  margin-bottom: 20px;
}

.bar {
  flex: 1;
  background: var(--accent-dim);
  border-radius: 3px 3px 0 0;
}

.graph-bars .bar:nth-child(6) { background: var(--accent); }

.job-list { display: flex; flex-direction: column; gap: 8px; }

.job-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
}

.job-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-status.scheduled { background: rgba(59,130,246,0.2); color: #60A5FA; }
.job-status.completed { background: rgba(34,197,94,0.2); color: #4ADE80; }

.job-name { flex: 1; font-size: 13px; color: var(--fg); font-weight: 500; }

.job-vehicles { font-size: 12px; color: var(--fg-muted); }

.accent-ring {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border: 2px solid var(--accent-dim);
  border-radius: 50%;
}

.accent-dot {
  position: absolute;
  bottom: 40px; left: -20px;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
}

/* Section headers */
.section-header {
  margin-bottom: 56px;
}

.section-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
}

/* Features */
.features {
  padding: 100px 24px;
  background: var(--bg-card);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* Process */
.process {
  padding: 100px 24px;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  gap: 40px;
}

.step {
  flex: 1;
  position: relative;
}

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.step-connector {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--border);
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--fg-subtle);
}

/* Services */
.services {
  padding: 100px 24px;
  background: var(--bg-card);
}

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

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

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

.service-block {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* Closing */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(45,212,191,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.closing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-wordmark {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fg); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-subtle);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .visual-container { max-width: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 20px 60px; }
  .features, .process, .services { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .header-nav { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}