  :root {
    --navy: #1a1a1a;
    --navy-mid: #2e2e2e;
    --navy-light: #484848;
    --steel: #666666;
    --accent: #CC1111;
    --accent-dark: #a80e0e;
    --light: #EBEBEB;
    --white: #ffffff;
    --gray: #666666;
    --gray-light: #D8D8D8;
    --text: #1a1a1a;
    --red: #CC1111;
    --radius: 4px;
    --shadow: 0 2px 24px rgba(0,0,0,0.09);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  }
  /* barlow-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('./assets/barlow-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* barlow-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('./assets/barlow-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* barlow-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    src: url('./assets/barlow-v13-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* barlow-condensed-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('./assets/barlow-condensed-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* barlow-condensed-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/barlow-condensed-v13-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* barlow-condensed-900 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 900;
    src: url('./assets/barlow-condensed-v13-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

  /* ── NAV ─────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--accent);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 98px;
    transition: box-shadow 0.3s;
  }

  nav.scrolled { box-shadow: var(--shadow-lg); }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: transparent;
  }
  .logo-icon {
    width: 132px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 0 16px;
    height: 98px;
    display: flex;
    align-items: center;
    line-height: 68px;
    color: var(--gray);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
  }

  .nav-links a:hover { color: var(--navy); background: rgba(0,0,0,0.04); }
  .nav-links a.active { color: var(--accent); border-bottom: 3px solid var(--accent); margin-bottom: -3px; }

  .nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 0 20px !important;
    font-weight: 700 !important;
    border-radius: 2px;
    margin-left: 8px;
  }

  .nav-cta:hover { background: var(--accent-dark) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ────────────────────────────────── */
  #hero {
    padding-top: 68px;
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(26,26,26,0.97) 0%, rgba(46,46,46,0.90) 60%, rgba(26,26,26,0.75) 100%),
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%231a1a1a"/><path d="M0 30h60M30 0v60" stroke="%232e2e2e" stroke-width="0.5"/></svg>') repeat;
    background-size: cover, 60px 60px;
  }

  .road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent);
    opacity: 0.7;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204,17,17,0.12);
    border: 1px solid rgba(204,17,17,0.35);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite;
  }

  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero-title {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1;
  }

  .hero-title span { color: var(--accent); }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
  }

  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
  .btn-primary:active { transform: translateY(0); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .hero-stat strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
  }
  .hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .truck-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
  }

  .truck-card svg { width: 100%; height: auto; }

  .feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .pill {
    background: rgba(204,17,17,0.12);
    border: 1px solid rgba(204,17,17,0.30);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ── SECTION WRAPPER ─────────────────────── */
  section {
    padding: 5rem 2rem;
  }

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

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

  .section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .section-title span { color: var(--accent); }

  .section-lead {
    font-size: 17px;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  /* ── TRUST BAR ───────────────────────────── */
  .trust-bar {
    background: var(--light);
    border-bottom: 1px solid var(--gray-light);
    padding: 1.5rem 2rem;
  }

  .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(204,17,17,0.08);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .trust-icon svg { width: 18px; height: 18px; stroke: var(--accent); }

  /* ── SERVICES GRID ───────────────────────── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5px;
    background: var(--gray-light);
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s;
  }

  .service-card:hover { background: var(--light); }
  .service-card:hover::before { height: 100%; }

  .service-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .service-icon svg { width: 26px; height: 26px; stroke: var(--accent); }

  .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .service-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  .service-link::after { content: '→'; transition: transform 0.2s; }
  .service-card:hover .service-link::after { transform: translateX(4px); }

  /* ── WHY US ──────────────────────────────── */
  .why-section {
    background: var(--navy);
    color: var(--white);
  }

  .why-section .section-title { color: var(--white); }
  .why-section .section-lead { color: rgba(255,255,255,0.6); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .why-card {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
  }

  .why-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: rgba(204,17,17,0.15);
    line-height: 1;
    margin-bottom: -8px;
  }

  .why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
  }

  /* ── ABOUT ───────────────────────────────── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .about-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .about-text strong { color: var(--navy); }

  .milestones {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
    margin-top: 2rem;
  }

  .milestones::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--accent);
  }

  .milestones li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    font-size: 15px;
    color: var(--gray);
  }

  .milestones li::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent);
  }

  .milestones li strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-right: 8px;
  }

  .values-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .value-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-left: 3px solid var(--accent);
  }

  .value-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  .value-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
  }

  .stats-grid {
    display: flex;
    gap: 1.5rem;
  }

  .stat-box h3 {
    font-size: 28px;
    color: var(--accent);
  }

  .service-list li {
    margin-bottom: 0.5rem;
  }

  .customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .customer-card {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .customer-card h5 {
    color: white;
    margin-bottom: 0.5rem;
  }

  .customer-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
  }

  .logo-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .logo-placeholder {
    width: 120px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    border-radius: 6px;
  }

  /* ── FLEET ───────────────────────────────── */
  .fleet-section { background: var(--light); }

  .fleet-gallery {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .fleet-gallery-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }

  .fleet-gallery-copy {
    max-width: 420px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
  }

  .fleet-slider {
    position: relative;
    background: var(--navy);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .fleet-slider-window {
    position: relative;
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(26,26,26,0.15) 0%, rgba(26,26,26,0.75) 100%),
      linear-gradient(135deg, #262626 0%, #111111 100%);
  }

  .fleet-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    margin: 0;
  }

  .fleet-slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .fleet-slide img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
  }

  .fleet-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,0.92) 35%, #111111 100%);
    color: var(--white);
  }

  .fleet-slide-caption strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.45rem;
  }

  .fleet-slide-caption p {
    max-width: 560px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.7;
  }

  .fleet-slide-tag {
    display: inline-block;
    margin-bottom: 0.85rem;
    background: var(--accent);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
  }

  .fleet-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(17,17,17,0.55);
    color: var(--white);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, border-color 0.2s;
  }

  .fleet-slider-arrow:hover {
    background: rgba(204,17,17,0.9);
    border-color: rgba(204,17,17,0.9);
  }

  .fleet-slider-arrow span {
    font-size: 34px;
    line-height: 1;
    margin-top: -2px;
  }

  .fleet-slider-arrow-prev { left: 1rem; }
  .fleet-slider-arrow-next { right: 1rem; }

  .fleet-slider-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1.75rem 1rem;
  }

  .fleet-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .fleet-slider-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .fleet-slider-dot.is-active {
    background: var(--accent);
    transform: scale(1.15);
  }

  .fleet-slider-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
  }

  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  @media (max-width: 1200px) {
    .fleet-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .fleet-grid {
      grid-template-columns: 1fr;
    }
  }

  .fleet-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

  .fleet-img {
    height: 180px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .fleet-img svg { width: 80%; max-width: 280px; }

  .fleet-img-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
  }

  .fleet-info { padding: 1.5rem; }

  .fleet-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .fleet-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .fleet-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .spec {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-light);
    background: var(--light);
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.05em;
  }

  /* ── QUOTE FORM ──────────────────────────── */
  .quote-section {
    background: var(--navy);
    color: var(--white);
  }

  .quote-section .section-title { color: var(--white); }
  .quote-section .section-lead { color: rgba(255,255,255,0.6); }

  .quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
  }

  .quote-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .quote-info p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
  }

  .contact-quick-icon {
    width: 36px;
    height: 36px;
    background: rgba(204,17,17,0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-quick-icon svg { width: 16px; height: 16px; stroke: var(--accent); }

  .form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2.5rem;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-group.full { grid-column: 1 / -1; }

  .form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    padding: 10px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-group input::placeholder,
  .form-group select::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--accent); }

  .form-group select option { background: var(--navy-mid); }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit { margin-top: 1.5rem; }

  .form-submit .btn-primary { width: 100%; text-align: center; font-size: 15px; }

  .form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin-top: 1rem;
  }

  .success-msg {
    display: none;
    background: rgba(39,174,96,0.15);
    border: 1px solid rgba(39,174,96,0.4);
    color: #6bd19a;
    padding: 1rem 1.25rem;
    border-radius: 2px;
    font-size: 15px;
    margin-top: 1rem;
  }

  /* ── CAREERS ─────────────────────────────── */
  .careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .job-card {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .job-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }

  .job-badge {
    display: inline-block;
    background: rgba(204,17,17,0.08);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 1rem;
  }

  .job-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .job-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .job-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .job-features li {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .job-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── CONTACT ─────────────────────────────── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-item-icon svg { width: 18px; height: 18px; stroke: var(--accent); }

  .contact-item-body strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
  }

  .contact-item-body span {
    font-size: 15px;
    color: var(--gray);
  }

  .hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
  }

  .hours-table td {
    padding: 4px 0;
    font-size: 14px;
    color: var(--gray);
  }

  .hours-table td:first-child {
    font-weight: 600;
    color: var(--navy);
    padding-right: 1rem;
    width: 50%;
  }

  .map-placeholder {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    position: relative;
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .map-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
  }

  /* ── FOOTER ──────────────────────────────── */
  footer {
    background: #111111;
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem 1.5rem;
  }

  .footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 1rem;
  }

  .footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-col ul a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    cursor: pointer;
  }

  .footer-col ul a:hover { color: var(--accent); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* ── MOBILE ──────────────────────────────── */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; padding: 3rem 1.5rem 4rem; }
    .hero-visual { display: none; }
    .about-grid,
    .quote-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .fleet-gallery-head { align-items: start; flex-direction: column; }
    .fleet-slider-window,
    .fleet-slide img { min-height: 460px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .values-cards { grid-template-columns: 1fr; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 1rem 0; border-top: 1px solid var(--gray-light); }
    .nav-links.open { display: flex; }
    .nav-links a { height: auto; line-height: 1; padding: 12px 1.5rem; }
    .nav-cta { margin-left: 1.5rem; display: inline-flex; align-items: center; width: fit-content; }
    .hamburger { display: flex; }
    .form-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .fleet-gallery { padding: 1rem; }
    .fleet-slider-window,
    .fleet-slide img { min-height: 360px; }
    .fleet-slide-caption { padding: 1.25rem 1rem 3.75rem; }
    .fleet-slide-caption p { font-size: 14px; }
    .fleet-slider-meta { padding: 0 1rem 0.85rem; }
    .fleet-slider-arrow {
      top: auto;
      bottom: 4.75rem;
      transform: none;
      width: 44px;
      height: 44px;
    }
    .fleet-slider-arrow-prev { left: 0.75rem; }
    .fleet-slider-arrow-next { right: 0.75rem; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    section { padding: 3.5rem 1.25rem; }
  }

  /* ── SCROLL REVEAL ───────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
