:root {
  --navy: #071529;
  --navy-2: #0d203b;
  --gold: #c9a227;
  --gold-2: #f1d676;
  --white: #ffffff;
  --ink: #172033;
  --muted: #647084;
  --line: rgba(7, 21, 41, 0.12);
  --surface: #f7f8fb;
  --shadow: 0 24px 70px rgba(7, 21, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 21, 41, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #40506a;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(201, 162, 39, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-2);
  box-shadow: 0 18px 38px rgba(201, 162, 39, 0.28);
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--gold-2);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(7, 21, 41, 0.12);
  box-shadow: 0 10px 24px rgba(7, 21, 41, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 41, 0.94), rgba(7, 21, 41, 0.78), rgba(7, 21, 41, 0.34)),
    url("truckfleet.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--navy), rgba(7, 21, 41, 0));
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 94px 0 122px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: 54px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.95;
  font-weight: 950;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  line-height: 1.72;
}

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

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.hero-panel dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
}

section {
  padding: 104px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 950;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.platforms {
  padding: 52px 0;
  background: var(--navy);
  color: var(--white);
}

.platform-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.platform-head h2 {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-card {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 214, 118, 0.8);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.logo-card img {
  max-height: 45px;
  object-fit: contain;
}

.problem {
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: start;
}

.compare {
  display: grid;
  gap: 16px;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 21, 41, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.compare-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.compare-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.16rem;
}

.compare-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.area-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-link-card {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 21, 41, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.area-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.62);
  box-shadow: var(--shadow);
}

.area-link-card strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.area-link-card span {
  color: var(--muted);
  line-height: 1.55;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 21, 41, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.58);
  box-shadow: var(--shadow);
}

.service-card.wide {
  grid-column: span 2;
}

.service-card.tall {
  grid-row: span 2;
}

.service-card.dark {
  background: var(--navy);
  color: var(--white);
}

.service-card.dark h3,
.service-card.dark p {
  color: var(--white);
}

.service-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: 1.42rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.benefits {
  background: var(--surface);
}

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

.benefit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow: var(--shadow);
}

.number {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 950;
}

.benefit-card h3 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: 1.5rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.testimonials {
  background: var(--navy);
  color: var(--white);
}

.testimonials h2 {
  color: var(--white);
}

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

.testimonial {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 214, 118, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.testimonial p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.testimonial strong {
  color: var(--gold-2);
}

.final-cta {
  background: linear-gradient(135deg, #ffffff 0%, #f7f8fb 100%);
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(201, 162, 39, 0.26);
  border-radius: 8px;
  padding: clamp(30px, 6vw, 64px);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
  line-height: 1.7;
}

.quote-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-form label {
  color: var(--white);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quote-form option {
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-hero {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.page-hero h1 {
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.75;
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 40px;
  align-items: start;
}

.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

.service-aside {
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: 8px;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-aside h3 {
  color: var(--white);
}

.service-aside p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.68;
}

.hiring-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.requirements {
  display: grid;
  gap: 14px;
}

.requirement {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.application-form {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(7, 21, 41, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(7, 21, 41, 0.1);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .split,
  .hiring-grid,
  .cta-panel,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .services-bento,
  .area-link-grid,
  .benefit-grid,
  .testimonial-grid,
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .service-card.wide,
  .service-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-form {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  section {
    padding: 74px 0;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero .container {
    padding: 68px 0 86px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .platform-head {
    align-items: start;
    flex-direction: column;
  }
}
