:root {
  --primary: #0a2540;
  --primary-dark: #061a30;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text: #1a202c;
  --text-muted: #5a6779;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-dark: #0a2540;
  --border: #e5e9f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.25rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #1e4976);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.25);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
}
.btn-light {
  background: white;
  color: var(--primary);
}
.btn-light:hover { background: var(--bg-alt); }
.btn-full { width: 100%; }

/* HERO */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(10, 37, 64, 0.05), transparent 60%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.accent { color: var(--accent); }
.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}
.truck-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 360px;
  width: 100%;
  transform: rotate(-1deg);
  transition: transform 0.3s;
}
.truck-card:hover { transform: rotate(0deg) scale(1.02); }
.truck-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.truck-icon svg { width: 100%; max-width: 200px; height: auto; }
.truck-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 6px;
}
.truck-model {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.truck-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}
.section-alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--accent); }
.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-dark h2 { color: white; }
.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* GRIDS */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2-wide { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }

.card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-icon {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FEATURE LIST */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

#over p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
#over strong { color: var(--primary); }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1e4976);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.25);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CONTACT */
.section-dark {
  background: linear-gradient(135deg, var(--bg-dark), #1e4976);
  color: white;
}
.contact-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.section-dark .section-lead,
.section-dark p { color: rgba(255, 255, 255, 0.8); }
.contact-card h2 { color: white; margin-bottom: 16px; }
.contact-card > .contact-left > p { margin-bottom: 36px; font-size: 1.05rem; }
.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-decoration: none;
  color: white;
  transition: all 0.2s;
}
.contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-box {
  background: white;
  color: var(--text);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.cta-box h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-box p {
  color: var(--text-muted) !important;
  margin-bottom: 24px;
}
.cta-box .btn { margin-bottom: 12px; }

/* FOOTER */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; font-size: 0.95rem; }
.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  padding: 6px 0;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 0.85rem;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-wide { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .contact-items { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
