:root {
  --nav-bg: rgba(13, 31, 60, 0.95);
  --bg: #080f1e;
  --surface: #0d1f3c;
  --surface-2: #112447;
  --accent: #e8611a;
  --accent-light: #ff7a35;
  --text: #f0f4f8;
  --text-muted: #8fa3bf;
  --text-dim: #4a6080;
  --border: rgba(232, 97, 26, 0.15);
  --green: #2dd87a;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand-accent { color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-highway {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, #050c18 0%, transparent 100%);
}
.highway-surface {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to right, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
}
.highway-lines {
  position: absolute;
  bottom: 18%; left: 0; right: 0;
  display: flex;
  gap: 60px;
  padding: 0 5%;
}
.hl {
  height: 4px;
  flex: 1;
  background: rgba(232, 97, 26, 0.35);
  border-radius: 2px;
}
.truck-group {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
}
.truck-icon { width: 120px; height: 60px; }
.truck-glow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(232,97,26,0.12) 0%, transparent 70%);
  filter: blur(20px);
}
.headlight-beam {
  position: absolute;
  bottom: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 120px;
  background: linear-gradient(to top, rgba(255,220,120,0.06) 0%, transparent 100%);
  clip-path: polygon(30% 100%, 70% 100%, 100% 0%, 0% 0%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,15,30,0.97) 40%, rgba(8,15,30,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-large { padding: 18px 36px; font-size: 18px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }

/* STATS */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 20px;
}
.stat-icon { margin-bottom: 8px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* SECTIONS */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.section-body {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* TRANSPARENCY */
.transparency-section { background: var(--bg); }
.transparency-visual { display: flex; justify-content: flex-start; }
.rate-breakdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  min-width: 380px;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rate-header { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.rate-label { color: var(--text-muted); font-size: 15px; }
.rate-val { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); }
.rate-total {
  border-top: 2px solid var(--accent);
  border-bottom: none;
  padding-top: 16px !important;
  margin-top: 4px;
}
.rate-total .rate-label { color: var(--text); font-weight: 600; font-size: 16px; }
.rate-total .rate-val { color: var(--accent); font-size: 22px; }
.rate-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.rate-badge {
  background: rgba(232, 97, 26, 0.1);
  border: 1px solid rgba(232, 97, 26, 0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* NETWORK */
.network-section { background: var(--surface); }
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.network-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.network-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--text-muted); }
.checklist-visual {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.cv-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); text-transform: uppercase; }
.cv-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 20px; }
.cv-item {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-status { display: flex; flex-direction: column; gap: 8px; }
.cv-status-bar { height: 3px; background: var(--accent); border-radius: 2px; }
.cv-status span { font-size: 13px; color: var(--green); font-weight: 600; }

/* SERVICES */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: rgba(232,97,26,0.4); transform: translateY(-2px); }
.service-card--featured { border-color: rgba(232,97,26,0.35); background: linear-gradient(135deg, var(--surface) 0%, rgba(232,97,26,0.05) 100%); }
.service-icon { margin-bottom: 20px; }
.service-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); text-transform: uppercase; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-link { color: var(--accent); font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { color: var(--accent-light); }

/* QUOTE STEPS */
.quote-section { background: var(--surface); }
.quote-section-head { max-width: 540px; }
.steps-row { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.step { flex: 1; min-width: 160px; padding: 20px; }
.step-connector { display: flex; align-items: center; padding-top: 36px; flex-shrink: 0; }
.step-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: rgba(232,97,26,0.25); text-transform: uppercase; margin-bottom: 12px; }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); text-transform: uppercase; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* CLOSING */
.closing-section { background: var(--bg); text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; padding: 100px 24px; }
.closing-headline { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: var(--text); text-transform: uppercase; margin-bottom: 24px; line-height: 1.1; }
.closing-body { font-size: 18px; color: var(--text-muted); line-height: 1.75; margin-bottom: 40px; }
.closing-cta { margin-bottom: 16px; }
.closing-note { font-size: 14px; color: var(--text-dim); }

/* FOOTER */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-tagline { font-size: 14px; color: var(--text-dim); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .network-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .steps-row { gap: 0; }
  .step-connector { display: none; }
  .step { min-width: 45%; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 42px; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .rate-breakdown { min-width: 100%; }
  .steps-row { flex-direction: column; }
  .step { padding: 16px 0; border-bottom: 1px solid var(--border); }
}