:root {
  --navy: #082441;
  --navy2: #0d3557;
  --ink: #0a2540;
  --blue: #087bc9;
  --blue2: #0d8ae1;
  --line: #dfe5ea;
  --muted: #617183;
  --soft: #f5f8fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(4, 32, 57, 0.1);
  --max: 1400px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(var(--max), calc(100% - 80px));
  margin: auto;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1f5d8a;
}
.section-title {
  margin: 8px 0 12px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-copy {
  color: var(--muted);
  max-width: 700px;
}
.arrow {
  font-size: 20px;
  line-height: 1;
}
/* header */
.site-header {
  height: 120px;
  background: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 35, 62, 0.06);
}
.header-inner {
  width: min(var(--max), calc(100% - 80px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  width: 350px;
  flex: 0 0 350px;
}
.brand img {
  width: 100%;
  height: auto;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: 18px 0;
  color: #0b2844;
}
.main-nav a:hover:after,
.main-nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: #0c7ecb;
}
.nav-search {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  margin-left: 4px;
}
.nav-search svg {
  width: 18px;
}
.header-cta {
  background: #103e61;
  color: #fff !important;
  padding: 16px 32px !important;
  min-width: 158px;
  text-align: center;
  font-weight: 700;
}
.header-cta:after {
  display: none !important;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  font-size: 26px;
  color: var(--navy);
}
/* hero */
.hero {
  height: 412px;
  position: relative;
  background: url("../img/hero-freight.webp") center 46% / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 37, 0.82) 0%,
    rgba(5, 24, 41, 0.55) 34%,
    rgba(6, 28, 47, 0.08) 66%,
    rgba(3, 19, 34, 0.25) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 80px));
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 600px;
  padding-top: 2px;
}
.hero .eyebrow {
  color: #fff;
  opacity: 0.95;
  font-size: 12px;
  letter-spacing: 0.42em;
}
.hero h1 {
  font-size: clamp(48px, 4.7vw, 68px);
  line-height: 0.97;
  margin: 12px 0 17px;
  letter-spacing: -0.035em;
  font-weight: 300;
}
.hero h1 strong {
  font-weight: 800;
}
.hero p {
  font-size: 18px;
  line-height: 1.45;
  max-width: 560px;
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  gap: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}
.btn-primary {
  background: #0b82d5;
  color: #fff;
}
.btn-primary:hover {
  background: #096bad;
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
}
.btn-outline:hover {
  background: #fff;
  color: #0b2944;
}
.hero-rail {
  margin-left: auto;
  width: 170px;
  display: grid;
  gap: 23px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 13px;
  font-weight: 700;
}
.hero-rail span {
  display: block;
}
.hero-rail span:after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #fff;
  margin-top: 17px;
  opacity: 0.9;
}
/* trust bar */
.trustbar {
  background: linear-gradient(90deg, #082441, #0a2f4e);
  color: #fff;
}
.trust-grid {
  width: min(var(--max), calc(100% - 80px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 112px;
}
.trust-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item svg {
  width: 42px;
  height: 42px;
  stroke: #fff;
  stroke-width: 1.6;
  fill: none;
}
.trust-item strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.trust-item small {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: #d9e5ef;
}
/* solutions row */
.solutions-band {
  padding: 22px 0 24px;
  background: #fff;
}
.solutions-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  gap: 28px;
}
.solutions-intro {
  padding-right: 42px;
}
.solutions-intro .eyebrow {
  color: #214b6f;
}
.solutions-intro h2 {
  font-size: 32px;
  line-height: 1.07;
  text-transform: uppercase;
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
}
.mini-rule {
  width: 42px;
  height: 3px;
  background: #0a7dcc;
  margin: 16px 0;
}
.solutions-intro p {
  font-size: 14px;
  color: #3f5366;
  max-width: 590px;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.solution-card {
  border: 1px solid #d8e0e6;
  background: #fff;
  transition: 0.22s;
  overflow: hidden;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.solution-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}
.solution-card-footer {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.solution-card-footer b {
  font-weight: 500;
}
.solution-card-footer span {
  color: #0a80d0;
  font-size: 22px;
}
/* metric strip */
.metrics {
  border-top: 1px solid #e4e9ed;
  border-bottom: 1px solid #e4e9ed;
  background: #fff;
}
.metric-grid {
  height: 112px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.metric {
  text-align: center;
  border-right: 1px solid #dde4e9;
}
.metric:last-child {
  border-right: 0;
}
.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: #0a2d50;
  letter-spacing: -0.03em;
}
.metric span {
  display: block;
  margin-top: 9px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #23435f;
}
.metric.wide strong {
  font-size: 26px;
}
/* content */
.section {
  padding: 82px 0;
}
.section.soft {
  background: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.media-frame {
  position: relative;
}
.media-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}
.media-badge {
  position: absolute;
  right: -20px;
  bottom: 24px;
  background: #0b2d4b;
  color: #fff;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.media-badge strong {
  font-size: 26px;
  display: block;
}
.media-badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.feature {
  display: flex;
  gap: 15px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e2e8ed;
}
.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #eaf5fc;
  color: #0879c5;
  font-weight: 800;
}
.feature strong {
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
}
.feature span {
  font-size: 13px;
  color: var(--muted);
}
/* marketplace */
.market-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}
.text-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0a73bb;
  font-weight: 700;
}
.filters {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr auto;
  gap: 12px;
  background: #fff;
  border: 1px solid #dde5eb;
  padding: 14px;
  margin-bottom: 12px;
}
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  color: #5b6c7b;
  margin-bottom: 5px;
}
.field input,
.field select {
  width: 100%;
  height: 42px;
  border: 1px solid #d9e1e6;
  padding: 0 12px;
  background: #fff;
}
.filter-btn {
  align-self: end;
  height: 42px;
  border: 0;
  background: #0c3556;
  color: #fff;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.load-table-wrap {
  background: #fff;
  border: 1px solid #dde5eb;
  overflow: auto;
}
.load-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}
.load-table th {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 13px 16px;
  background: #f2f5f7;
  color: #486173;
}
.load-table td {
  padding: 16px;
  border-top: 1px solid #edf1f4;
  font-size: 14px;
}
.load-table tr:hover td {
  background: #fbfdfe;
}
.pill {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e5f6ee;
  color: #177b52;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.demo-note {
  font-size: 12px;
  color: #7b8996;
  margin: 8px 0 0;
}
/* process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dfe7ed;
  border: 1px solid #dfe7ed;
  margin-top: 34px;
}
.process-step {
  background: #fff;
  padding: 34px 28px;
  min-height: 225px;
}
.process-num {
  font-size: 12px;
  color: #0a80d0;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.process-step h3 {
  margin: 42px 0 10px;
  font-size: 20px;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
}
/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  background: #082441;
  color: #fff;
}
.cta:after {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  background: url("../img/carrier-terminal.webp") center/cover no-repeat;
  opacity: 0.26;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 250px;
}
.cta h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 12px;
}
.cta p {
  color: #d3e1ec;
  margin: 0;
}
.cta .btn {
  background: #0b82d5;
  color: #fff;
}
/* pages */
.page-hero {
  min-height: 330px;
  background: linear-gradient(
      90deg,
      rgba(4, 24, 41, 0.92),
      rgba(4, 32, 55, 0.58)
    ),
    url("../img/carrier-terminal.webp") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}
.page-hero h1 {
  font-size: 54px;
  line-height: 1.02;
  margin: 12px 0;
}
.page-hero p {
  font-size: 18px;
  max-width: 650px;
  color: #e7eff5;
}
.page-hero .eyebrow {
  color: #9bd4ff;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.info-card {
  border: 1px solid #dde5eb;
  padding: 30px;
  background: #fff;
}
.info-card h3 {
  margin: 0 0 10px;
}
.info-card p {
  color: var(--muted);
  font-size: 14px;
}
.form-card {
  background: #fff;
  border: 1px solid #dbe4ea;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #53697b;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d5dfe6;
  background: #fff;
  padding: 12px 13px;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.submit {
  border: 0;
  background: #0b82d5;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 15px 24px;
  cursor: pointer;
}
.portal-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 650px;
  border: 1px solid #dde5eb;
  background: #fff;
  box-shadow: var(--shadow);
}
.portal-nav {
  background: #082441;
  color: #fff;
  padding: 26px;
}
.portal-nav h3 {
  font-size: 16px;
  margin: 0 0 24px;
}
.portal-nav a {
  display: block;
  padding: 11px 0;
  color: #cbd9e4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}
.portal-main {
  padding: 28px;
}
.portal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portal-card {
  border: 1px solid #dde5eb;
  padding: 22px;
}
.portal-card strong {
  font-size: 30px;
  display: block;
}
.portal-card span {
  color: var(--muted);
  font-size: 13px;
}
/* footer */
.site-footer {
  background: #061d32;
  color: #dbe6ef;
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 46px;
}
.footer-brand img {
  width: 330px;
 
}
.footer-brand p {
  max-width: 460px;
  color: #aebfcd;
  font-size: 14px;
}
.site-footer h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 8px 0 15px;
}
.site-footer a {
  display: block;
  color: #aebfcd;
  font-size: 14px;
  margin: 8px 0;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 12px;
  color: #8fa5b6;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1180px) {
  .container,
  .header-inner,
  .hero-inner,
  .trust-grid {
    width: min(100% - 42px, var(--max));
  }
  .brand {
    width: 290px;
    flex-basis: 290px;
  }
  .main-nav {
    gap: 18px;
    font-size: 11px;
  }
  .header-cta {
    padding: 14px 20px !important;
    min-width: auto;
  }
  .solutions-layout {
    grid-template-columns: 1fr;
  }
  .solutions-intro {
    padding-right: 0;
  }
  .hero-rail {
    display: none;
  }
  .hero-copy {
    width: 620px;
  }
  .solution-cards {
    gap: 12px;
  }
}
@media (max-width: 860px) {
  .site-header {
    height: 86px;
  }
  .brand {
    width: 245px;
    flex-basis: 245px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 24px;
    border-top: 1px solid #e6ecef;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 12px 0;
  }
  .nav-search {
    display: none;
  }
  .header-cta {
    text-align: center;
    margin-top: 8px;
  }
  .hero {
    height: 550px;
    background-position: 65% center;
  }
  .hero:before {
    background: linear-gradient(
      90deg,
      rgba(3, 20, 37, 0.9),
      rgba(5, 24, 41, 0.56) 75%,
      rgba(5, 24, 41, 0.35)
    );
  }
  .hero-copy {
    width: 100%;
    max-width: 620px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .trust-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    min-height: 110px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .solution-cards {
    grid-template-columns: 1fr 1fr;
  }
  .metric-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }
  .metric {
    padding: 25px 10px;
    border-bottom: 1px solid #e2e7eb;
  }
  .metric:last-child {
    grid-column: 1/-1;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .filters {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portal-shell {
    grid-template-columns: 1fr;
  }
  .portal-nav {
    display: none;
  }
  .portal-cards {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    min-height: 320px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .cta:after {
    inset: 0;
    opacity: 0.13;
  }
}
@media (max-width: 560px) {
  .container,
  .header-inner,
  .hero-inner,
  .trust-grid {
    width: calc(100% - 30px);
  }
  .brand {
    width: 220px;
    flex-basis: 220px;
  }
  .hero {
    height: 600px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn {
    min-width: 220px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
  }
  .solution-cards {
    grid-template-columns: 1fr;
  }
  .solutions-band {
    padding-top: 42px;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .metric,
  .metric:last-child {
    grid-column: auto;
    border-right: 0;
  }
  .section {
    padding: 58px 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .portal-cards {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 42px;
  }
}

/* vehicle transport */
.vehicle-callout {
  background: linear-gradient(90deg, #061f36, #0b3454);
  color: #fff;
  padding: 0;
}
.vehicle-callout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 365px;
  align-items: stretch;
}
.vehicle-callout-media {
  overflow: hidden;
}
.vehicle-callout-media img {
  width: 100%;
  height: 100%;
  min-height: 365px;
  object-fit: cover;
}
.vehicle-callout-copy {
  padding: 54px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vehicle-callout-copy .eyebrow {
  color: #79caff;
}
.vehicle-callout-copy h2 {
  font-size: 38px;
  line-height: 1.08;
  margin: 10px 0 16px;
}
.vehicle-callout-copy p {
  color: #d3e1ec;
  max-width: 650px;
}
.vehicle-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.light-link {
  color: #83ccff;
}
.vehicle-page-hero {
  min-height: 470px;
  background: linear-gradient(
      90deg,
      rgba(4, 24, 41, 0.9) 0%,
      rgba(4, 32, 55, 0.56) 48%,
      rgba(4, 24, 41, 0.12) 100%
    ),
    url("../img/vehicle-transport.webp") center 56% / cover no-repeat;
}
.vehicle-page-hero .container {
  position: relative;
}
.vehicle-page-hero h1 {
  max-width: 680px;
  font-size: 60px;
}
.vehicle-page-hero p {
  max-width: 650px;
}
.page-actions {
  margin-top: 25px;
}
.linked-card {
  display: block;
  transition: 0.2s;
}
.linked-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.linked-card .text-link {
  display: inline-block;
  margin-top: 10px;
}
.vehicle-options .info-card {
  min-height: 180px;
}
.vehicle-field {
  border-left: 3px solid #dbeaf5;
  padding-left: 10px;
}
@media (max-width: 1180px) {
  .solution-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .solution-card img {
    height: 170px;
  }
  .vehicle-callout-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vehicle-callout-copy {
    padding: 42px;
  }
}
@media (max-width: 860px) {
  .vehicle-callout-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-callout-media img {
    min-height: 320px;
  }
  .vehicle-callout-copy {
    padding: 40px 30px;
  }
  .vehicle-page-hero {
    min-height: 520px;
    background-position: 65% center;
  }
  .vehicle-page-hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 560px) {
  .solution-cards {
    grid-template-columns: 1fr;
  }
  .solution-card img {
    height: 210px;
  }
  .vehicle-callout-copy {
    padding: 34px 22px;
  }
  .vehicle-callout-copy h2 {
    font-size: 31px;
  }
  .vehicle-page-hero h1 {
    font-size: 42px;
  }
}

/* vehicle transport service modes */
.transport-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.transport-mode {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border: 1px solid #dbe4ea;
  background: #fff;
  padding: 30px;
  transition: 0.22s;
  min-height: 360px;
}
.transport-mode:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #a9cce5;
}
.transport-mode.featured-mode {
  border-top: 4px solid #0b82d5;
}
.mode-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #eaf5fc;
  color: #0879c5;
  font-weight: 800;
}
.mode-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0879c5;
  font-weight: 800;
}
.transport-mode h3 {
  font-size: 22px;
  margin: 8px 0 10px;
}
.transport-mode p {
  font-size: 14px;
  color: var(--muted);
}
.transport-mode ul {
  padding-left: 18px;
  color: #506476;
  font-size: 13px;
  line-height: 1.8;
  margin: 16px 0 18px;
}
.quote-type-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.quote-type-summary span {
  display: inline-block;
  padding: 8px 11px;
  background: #eaf5fc;
  color: #0a5f99;
  border: 1px solid #cfe7f7;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.vehicle-only {
  transition: 0.2s;
}
@media (max-width: 900px) {
  .transport-mode-grid {
    grid-template-columns: 1fr;
  }
  .transport-mode {
    min-height: 0;
  }
}
@media (max-width: 560px) {
  .transport-mode {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
