:root {
  --bg: #ffffff;
  --bg-alt: #F4F7FB;
  --fg: #1B2A4A;
  --fg-muted: #6B7FA3;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.1);
  --border: rgba(27, 42, 74, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover {
  background: #e55a27;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  background: var(--fg);
  padding: 80px 40px 72px;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}
.hero-cta:hover {
  background: #e55a27;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-cta-secondary:hover { color: #fff; }
.hero-cta-secondary svg { opacity: 0.7; }

/* Route visual */
.hero-graphic {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.route-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.route-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.route-node span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.route-node-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.route-line {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 12px;
}
.route-progress {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 50%, rgba(255,255,255,0.15) 50%);
  border-radius: 2px;
}
.route-arrow {
  position: absolute;
  right: -2px;
}
.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}
.route-dot--empty {
  background: rgba(255,255,255,0.2);
}
.freight-tag {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 100px;
  padding: 10px 20px;
  text-align: center;
}
.freight-tag-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.truck-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 20px;
}
.truck-info-left { display: flex; align-items: center; gap: 12px; }
.truck-icon { color: var(--accent); }
.truck-info-text { font-size: 14px; color: rgba(255,255,255,0.7); }
.truck-info-text strong { color: #fff; }
.truck-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 4px 10px;
}

/* PROOF */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.proof-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.proof-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.proof-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 140px;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 80px 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 56px;
}
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--fg);
  max-width: 500px;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: rgba(255, 107, 53, 0.25);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.06);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--fg);
  padding: 80px 40px;
}
.howitworks-header {
  text-align: center;
  margin-bottom: 56px;
}
.howitworks-header .section-label { color: var(--accent); }
.howitworks-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
  letter-spacing: -0.02em;
}
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.step-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-bottom: 32px;
}
.step-connector svg { color: rgba(255,255,255,0.2); }

/* JOIN AS DRIVER */
.join-driver {
  padding: 80px 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.join-driver-inner {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.join-driver-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.join-driver-tag span {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.join-driver h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.join-driver > .join-driver-inner > .join-driver-text > p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.driver-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.driver-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}
.driver-perk svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.join-driver-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.join-driver-cta:hover { background: #e55a27; transform: translateY(-1px); }
.join-driver-graphic {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.driver-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.driver-stat-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.driver-stat-body { flex: 1; }
.driver-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.driver-stat-label { font-size: 13px; color: var(--fg-muted); }

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 80px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.closing > .closing-inner > p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}
.closing-cta-wrap { margin-top: 32px; display: flex; justify-content: center; gap: 12px; }

/* FOOTER */
.footer {
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-brand span { color: var(--accent); }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.85); }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* QUOTE FORM */
.quote-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.quote-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; gap: 20px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 80px; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.8); cursor: pointer; }
.form-footer { margin-top: 8px; }
.form-submit {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
  background: var(--accent);
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}
.form-submit:hover:not(:disabled) {
  background: #e55a27;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.4);
}
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 10px;
  font-size: 15px;
  color: #4ade80;
}
.form-error {
  padding: 12px 16px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 10px;
  font-size: 14px;
  color: #f87171;
}
.hidden { display: none !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .join-driver-inner { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .closing h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 48px 24px 40px; }
  .hero-text h1 { font-size: 36px; }
  .hero-stat-num { font-size: 52px; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .proof-grid { flex-direction: column; gap: 28px; }
  .proof-divider { display: none; }
  .nav { padding: 14px 24px; }
  .nav-inner { flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 13px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
  .features, .join-driver { padding: 60px 24px; }
  .howitworks, .closing { padding: 60px 24px; }
  .closing h2 { font-size: 28px; }
  .form-row--2 { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}