@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --navy: #102a43;
  --navy-2: #172b4d;
  --slate: #334e68;
  --blue: #1d4ed8;
  --blue-dark: #1e40af;
  --blue-light: #60a5fa;
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --accent-soft: #fff3e8;
  --ink: #111827;
  --body: #334155;
  --muted-text: #64748b;
  --surface: #ffffff;
  --background: #f6f7fb;
  --muted: #edf1f5;
  --border: #dce3ea;
  --error: #dc2626;
  --success: #166534;
  --radius-sm: 0.55rem;
  --radius: 0.85rem;
  --radius-lg: 1.15rem;
  --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.06);
  --shadow: 0 18px 48px rgba(16, 42, 67, 0.1);
  --container: 78rem;
  --font: "Source Sans 3", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Lexend", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --motion: 240ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--background);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  max-width: 15ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 18ch;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a,
button,
input,
select,
textarea,
summary {
  transition: color var(--motion), background-color var(--motion), border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

button,
summary,
a {
  cursor: pointer;
  touch-action: manipulation;
}

img,
svg {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid #f97316;
  outline-offset: 3px;
}

::selection {
  color: white;
  background: var(--accent);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 52rem;
}

.narrow-wide {
  max-width: 64rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--blue);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.trust-bar {
  position: relative;
  z-index: 40;
  color: #d9e2ec;
  background: #0b1f33;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.trust-bar .container {
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.trust-bar i {
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 234, 0.88);
  box-shadow: 0 1px 0 rgba(16, 42, 67, 0.03);
  backdrop-filter: blur(16px) saturate(140%);
}

.site-header.is-scrolled {
  border-color: rgba(188, 204, 219, 0.9);
  box-shadow: 0 12px 32px rgba(16, 42, 67, 0.1);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  text-decoration: none;
}

.logo__mark {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
  border-radius: 0.45rem 0.45rem 0.45rem 0.1rem;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.logo__mark i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--blue-light);
}

.logo__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__type strong {
  font-size: 1.04rem;
  letter-spacing: 0.19em;
}

.logo__type small {
  margin-top: 0.35rem;
  color: var(--muted-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.logo__image {
  width: 4.25rem;
  height: auto;
  flex: 0 0 auto;
  border-radius: 0.35rem;
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 1.25rem;
}

.site-nav ul {
  gap: 0.1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav ul a {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.72rem;
  color: var(--slate);
  border-radius: 0;
  font-size: 0.89rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav ul a:hover,
.site-nav ul a[aria-current="page"] {
  color: var(--blue-dark);
  background: transparent;
}

.site-nav ul a::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.35rem;
  left: 0.72rem;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion);
}

.site-nav ul a:hover::after,
.site-nav ul a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  font: inherit;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  box-shadow: none;
  transform: translateY(0);
}

.button--primary {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.22);
}

.button--primary:hover {
  color: white;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(194, 65, 12, 0.26);
}

.button--secondary {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.button--secondary:hover {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border-color: white;
}

.button--light {
  color: var(--navy);
  background: white;
  border-color: white;
}

.button--light:hover {
  color: var(--navy);
  background: #eef4f9;
}

.button--outline-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--outline-light:hover {
  color: white;
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button--text {
  min-height: 44px;
  justify-content: flex-start;
  padding-inline: 0;
  color: var(--blue-dark);
  background: transparent;
}

.button--text:hover {
  color: var(--navy);
  transform: none;
}

.button--text:hover .icon,
.service-card a:hover .icon,
.contact-block a:hover .icon,
.fact-panel a:hover .icon {
  transform: translateX(3px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
}

.eyebrow--light {
  color: #bfdbfe;
}

.hero {
  position: relative;
  min-height: min(45rem, calc(100svh - 7rem));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 25, 42, 0.97) 0%, rgba(13, 38, 63, 0.91) 38%, rgba(16, 42, 67, 0.55) 65%, rgba(16, 42, 67, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 25, 42, 0.48), transparent 48%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 11vw, 8rem);
}

.hero__copy {
  max-width: 46rem;
}

.hero-slogan {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  margin-bottom: 1.35rem;
  color: white !important;
  background: rgba(234, 88, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(7, 22, 38, 0.25);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1;
}

.hero-slogan span {
  width: 0.55rem;
  height: 0.55rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.hero h1,
.hero h2,
.hero p,
.section--navy h2,
.section--navy h3,
.section--navy p,
.section--slate h2,
.section--slate h3,
.section--slate p,
.final-cta h2,
.final-cta p,
.interior-hero h1,
.interior-hero p,
.not-found h1,
.not-found p {
  color: white;
}

.hero__copy > p:not(.eyebrow):not(.hero-slogan) {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #e5edf5;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.image-disclosure {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.3rem 0.55rem;
  margin: 0;
  color: #e2e8f0 !important;
  background: rgba(2, 6, 23, 0.72);
  border-radius: 0.25rem;
  font-size: 0.72rem;
  line-height: 1.35;
}

.road-motion {
  position: relative;
  min-height: 9.5rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--navy);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.95) 0 0.25rem, transparent 0.3rem),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.86) 0 0.18rem, transparent 0.24rem),
    linear-gradient(180deg, #f5f8fb 0%, #e9f0f6 65%, #d8e0e7 65%);
  border-block: 1px solid var(--border);
}

.road-motion__copy {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  transform: translateX(-50%);
}

.road-motion__copy span {
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.road-motion__copy strong {
  color: var(--accent-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.road-motion__scene {
  position: absolute;
  inset: 0;
}

.road-motion__horizon {
  position: absolute;
  right: -2rem;
  bottom: 3.25rem;
  left: -2rem;
  height: 2.7rem;
  opacity: 0.42;
  background:
    linear-gradient(135deg, transparent 36%, #9db2c4 37% 50%, transparent 51%) 0 100% / 8rem 3rem repeat-x;
}

.road-motion__road {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #253b50, #102a43);
  border-top: 4px solid #94a3b8;
}

.road-motion__road::before {
  position: absolute;
  top: 50%;
  right: -5rem;
  left: -5rem;
  height: 3px;
  background: repeating-linear-gradient(90deg, #f8fafc 0 3.1rem, transparent 3.1rem 5.8rem);
  content: "";
  transform: translateY(-50%);
}

.road-motion__truck {
  position: absolute;
  z-index: 2;
  bottom: 2.25rem;
  left: 70%;
  width: clamp(11rem, 17vw, 13.5rem);
  filter: drop-shadow(0 10px 8px rgba(15, 23, 42, 0.24));
  transform: translateX(-50%);
}

.road-motion__truck svg {
  width: 100%;
  height: auto;
}

.road-motion.is-armed .road-motion__truck {
  left: 0;
  transform: translate3d(-115%, 0, 0);
  will-change: transform;
}

.road-motion.is-driving .road-motion__truck {
  animation: truck-drive 5.8s cubic-bezier(0.35, 0, 0.2, 1) 180ms both;
}

.road-motion.is-driving .road-motion__road::before {
  animation: road-pass 5.8s linear 180ms both;
}

.road-motion__wheel {
  transform-box: fill-box;
  transform-origin: center;
}

.road-motion.is-driving .road-motion__wheel {
  animation: wheel-spin 580ms linear 180ms 10;
}

.trust-strip {
  position: relative;
  z-index: 3;
  color: white;
  background: var(--navy);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-strip__grid > div {
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip__grid > div:last-child {
  border-right: 0;
}

.trust-strip .icon {
  color: #fdba74;
}

.trust-strip__grid span:not(.credential) {
  display: flex;
  flex-direction: column;
}

.trust-strip strong {
  font-size: 0.86rem;
  line-height: 1.3;
}

.trust-strip small {
  margin-top: 0.22rem;
  color: #b9cbe0;
  font-size: 0.7rem;
  line-height: 1.25;
}

.credential {
  min-width: 2.3rem;
  min-height: 2.3rem;
  display: grid;
  place-items: center;
  padding: 0.2rem;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
}

.section {
  padding-block: clamp(5.25rem, 9vw, 8rem);
  background: var(--surface);
}

.section--muted {
  background: var(--background);
}

.section--navy {
  color: #d9e2ec;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 78, 216, 0.2), transparent 30rem),
    var(--navy);
}

.section--slate {
  color: #dbe5ef;
  background: var(--slate);
}

.section-heading {
  max-width: 51rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 46rem;
  color: var(--muted-text);
  font-size: 1.08rem;
}

.section-heading h2 {
  max-width: 20ch;
}

.lead {
  color: var(--slate);
  font-size: 1.15rem;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
  align-items: start;
  gap: clamp(3.5rem, 8vw, 7.5rem);
}

.split--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.principle-card,
.detail-card,
.feature-panel,
.pathway-card {
  position: relative;
  padding: 1.9rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.service-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}

.service-card > .icon,
.principle-card > .icon,
.detail-card > .icon,
.feature-panel > .icon,
.pathway-card > .icon {
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.65rem;
  margin-bottom: 1.5rem;
  color: var(--blue-dark);
  background: #e8efff;
  border-radius: var(--radius-sm);
}

.service-card p,
.detail-card p,
.principle-card p,
.pathway-card p {
  color: var(--muted-text);
}

.service-card a,
.pathway-card > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.service-card a .icon,
.pathway-card a .icon,
.contact-block a .icon,
.fact-panel a .icon {
  width: 1rem;
  height: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.value-item > .icon {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--accent);
}

.value-item h3 {
  font-size: 1rem;
}

.value-item p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.process-section {
  overflow: hidden;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 3rem;
  right: 16%;
  left: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 15px);
  content: "";
}

.process-grid li {
  position: relative;
  min-height: 18rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.process-grid li > span {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: #cbd5e1;
  font-size: 2rem;
  font-weight: 850;
}

.process-grid li > .icon {
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  margin-bottom: 3rem;
  color: white;
  background: var(--blue-dark);
  border-radius: 50%;
}

.process-grid p {
  color: var(--muted-text);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.public-records {
  position: relative;
  overflow: hidden;
}

.public-records::before,
.service-area::before {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 50%;
  content: "";
}

.public-records::before {
  right: -12rem;
  bottom: -12rem;
}

.record-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--body);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.record-card > p {
  margin-bottom: 1.2rem;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-card dl {
  margin-bottom: 1.25rem;
}

.record-card dl div,
.fact-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.record-card dt,
.fact-panel dt {
  color: var(--muted-text);
}

.record-card dd,
.fact-panel dd {
  color: var(--ink);
  font-weight: 750;
  text-align: right;
}

.record-card small {
  color: var(--muted-text);
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  display: inline-block;
  margin-right: 0.4rem;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #dcfce7;
}

.career-banner {
  padding-block: 3rem;
  background: var(--accent-soft);
  border-block: 1px solid #fed7aa;
}

.career-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.career-banner h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  max-width: none;
}

.career-banner p:last-child {
  margin-bottom: 0;
}

.faq-item {
  background: white;
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--ink);
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 2px;
  background: var(--blue-dark);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item > div {
  padding: 0 3.5rem 1.25rem 0;
}

.faq-item p {
  color: var(--muted-text);
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 86% 18%, rgba(234, 88, 12, 0.3), transparent 24rem),
    linear-gradient(135deg, #102a43, #173c5e);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 4rem;
}

.final-cta h2 {
  max-width: 17ch;
}

.final-cta .button--light {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 10px 26px rgba(8, 25, 42, 0.24);
}

.final-cta .button--light:hover {
  color: white;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.final-cta p:not(.eyebrow) {
  max-width: 39rem;
  color: #dbeafe;
}

.route-line {
  position: absolute;
  top: -7rem;
  right: -5rem;
  width: 29rem;
  height: 29rem;
  border: 2px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.route-line::after {
  position: absolute;
  right: 1rem;
  bottom: 4rem;
  width: 1rem;
  height: 1rem;
  background: white;
  border: 4px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.interior-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(29, 78, 216, 0.22), transparent 27rem),
    linear-gradient(135deg, #0b1f33, var(--navy));
}

.route-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(90deg, transparent 0%, black 70%);
}

.interior-hero::after {
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 27rem;
  height: 27rem;
  border: 2px dashed rgba(249, 115, 22, 0.22);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  padding-top: 1.4rem;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  color: #94a3b8;
  list-style: none;
  font-size: 0.82rem;
}

.breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #cbd5e1;
}

.breadcrumbs .icon {
  width: 0.9rem;
  height: 0.9rem;
}

.interior-hero__content {
  position: relative;
  z-index: 2;
  max-width: 59rem;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.interior-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5.8vw, 4.7rem);
}

.interior-hero__content > p:not(.eyebrow) {
  max-width: 47rem;
  color: #cbd5e1;
  font-size: 1.15rem;
}

.about-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.about-hero .interior-hero__content {
  padding-block: 0;
}

.about-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.55rem, 4.8vw, 4.05rem);
}

.about-slogan {
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  margin: 0 0 1.5rem !important;
  color: white !important;
  background: rgba(234, 88, 12, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(4, 16, 28, 0.24);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.about-slogan::before {
  width: 0.55rem;
  height: 0.55rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.17);
  content: "";
}

.about-hero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #08111f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.about-hero__visual picture {
  position: relative;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about-hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1.25rem 1rem;
  color: #e2e8f0;
  background: linear-gradient(transparent, rgba(2, 6, 23, 0.88));
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-quote {
  padding: 1.25rem 1.4rem;
  margin: 2rem 0 0;
  color: var(--navy);
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.02rem;
  font-weight: 650;
}

.transport-reach {
  position: relative;
  overflow: hidden;
}

.transport-reach .route-grid {
  opacity: 0.08;
}

.transport-reach__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(22rem, 0.94fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.transport-reach__grid > div:first-child > p:not(.eyebrow) {
  max-width: 43rem;
  color: #dbe5ef;
  font-size: 1.08rem;
}

.transport-reach__grid .button-row {
  margin-top: 2rem;
}

.route-network {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(10px);
}

.route-network > p {
  color: #fdba74 !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.route-network ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.route-network li {
  min-height: 5.25rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.route-network li span {
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-network li strong {
  margin-top: 0.25rem;
  color: white;
  line-height: 1.25;
}

.return-load {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  margin-top: 0.75rem;
  color: #ffedd5;
  background: rgba(234, 88, 12, 0.14);
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.return-load .icon {
  color: #fdba74;
}

.return-load strong {
  color: white;
}

.fleet-gallery-section {
  overflow: hidden;
}

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

.fleet-gallery__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.fleet-gallery__item--featured {
  grid-column: span 2;
}

.fleet-gallery__item picture {
  position: relative;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}

.fleet-gallery__item--featured picture {
  aspect-ratio: 16 / 9;
}

.fleet-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.fleet-gallery__item--portrait img {
  object-position: center 56%;
}

.fleet-gallery__item figcaption {
  min-height: 4.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0.9rem 1rem;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.fleet-gallery__item figcaption strong,
.fleet-gallery__item figcaption span {
  display: block;
}

.fleet-gallery__item figcaption strong {
  color: var(--ink);
  font-size: 1rem;
}

.fleet-gallery__item figcaption span {
  margin-top: 0.25rem;
  color: var(--muted-text);
  font-weight: 500;
}

.content-feed-section[hidden] {
  display: none;
}

.event-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.event-card,
.video-card {
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.event-card > img,
.video-card > video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--navy);
}

.event-card__body,
.video-card__body {
  padding: 1.25rem;
}

.event-card__body h3,
.video-card__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.event-card__body p,
.video-card__body p {
  margin: 0.65rem 0 0;
  color: var(--muted-text);
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.75rem;
  color: var(--route-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card__meta span {
  position: relative;
  padding-left: 0.75rem;
}

.event-card__meta span::before {
  position: absolute;
  left: 0;
  content: '•';
  color: var(--safety-orange);
}

.company-email {
  overflow-wrap: anywhere;
}

.final-cta--about .final-cta__inner {
  align-items: end;
}

.final-cta--about .final-cta__inner > div:first-child {
  max-width: 51rem;
}

.final-cta--about h2,
.final-cta--about p:not(.eyebrow) {
  max-width: 51rem;
}

.final-cta--about .button-row {
  min-width: 13.5rem;
  align-items: stretch;
  flex-direction: column;
}

.cta-signoff {
  margin-bottom: 0;
}

.cta-signoff strong {
  color: #fed7aa;
}

.fact-panel,
.checklist-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.fact-panel > p {
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-panel a,
.contact-block a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 750;
  text-decoration: none;
}

.compact-cards {
  gap: 1.1rem;
}

.principle-card {
  padding: 1.35rem;
}

.principle-card > .icon {
  margin-bottom: 1.1rem;
}

.principle-card h3 {
  font-size: 1rem;
}

.principle-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.check-list .icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
  color: var(--blue-dark);
  stroke-width: 2.5;
}

.service-area {
  position: relative;
  overflow: hidden;
}

.service-area::before {
  right: -8rem;
  bottom: -13rem;
}

.route-card {
  min-height: 15rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.route-card > .icon {
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  color: var(--blue-light);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.route-card strong,
.route-card span {
  display: block;
}

.route-card strong {
  margin-bottom: 0.7rem;
  color: white;
  font-size: 1.25rem;
}

.route-card span {
  color: #cbd5e1;
}

.inline-cta {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  margin-top: 3.25rem;
  background: #eff8fc;
  border: 1px solid #cfe8f4;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.inline-cta strong,
.inline-cta span {
  display: block;
}

.inline-cta strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.inline-cta span {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.feature-panel {
  padding: 2rem;
  box-shadow: var(--shadow);
}

.detail-card {
  min-height: 18rem;
  overflow: hidden;
}

.detail-card > span {
  position: absolute;
  top: -0.65rem;
  right: 0.5rem;
  color: #eef2f6;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.detail-card > .icon,
.detail-card h3,
.detail-card p {
  position: relative;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1rem 1.15rem;
  margin-top: 1.5rem;
  color: #1e3a5f;
  background: #eff8fc;
  border: 1px solid #cfe8f4;
  border-radius: var(--radius-sm);
  font-size: 0.91rem;
}

.notice strong,
.notice span {
  display: block;
}

.notice--large {
  gap: 1rem;
  padding: 1.5rem;
}

.notice--large > .icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  color: var(--blue-dark);
}

.checklist-card h3 {
  font-size: 1.4rem;
}

.timeline {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 1.8rem;
  bottom: 1.8rem;
  left: 1.8rem;
  width: 2px;
  background: var(--border);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 3.7rem 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.timeline li > span {
  z-index: 1;
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border: 6px solid var(--background);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
}

.timeline li > div {
  padding: 0.8rem 1.2rem 1.2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted-text);
}

.pathway-grid {
  align-items: stretch;
}

.pathway-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.pathway-card > p:first-of-type {
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.pathway-card .check-list {
  margin-bottom: 1.5rem;
}

.form-section-wrap {
  border-top: 1px solid var(--border);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.form-sidebar {
  position: sticky;
  top: 7rem;
}

.form-sidebar h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.contact-mini {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-mini > .icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.6rem;
  color: var(--blue-dark);
  background: #e0f2fe;
  border-radius: 50%;
}

.contact-mini span,
.contact-mini a {
  display: block;
}

.contact-mini span {
  color: var(--muted-text);
  font-size: 0.8rem;
}

.contact-mini a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 800;
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card__heading {
  grid-column: 1 / -1;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.form-card__heading h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.form-card__heading p {
  max-width: 44rem;
  margin-bottom: 0.5rem;
  color: var(--muted-text);
}

.required-note {
  font-size: 0.8rem;
}

.required-note span,
.form-field label > span {
  color: var(--error);
}

.form-field {
  min-width: 0;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.form-field label,
.form-section legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-field > label {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
}

.form-field input[type="file"] {
  padding: 0.55rem;
  background: var(--background);
}

.form-field input[type="file"]::file-selector-button {
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  margin-right: 0.75rem;
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #94a3b8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(56, 189, 248, 0.28);
  outline-offset: 1px;
}

.form-field [aria-invalid="true"] {
  border-color: var(--error);
  outline-color: rgba(220, 38, 38, 0.18);
}

.field-hint,
.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.field-hint {
  color: var(--muted-text);
}

.field-error {
  min-height: 1.1em;
  color: var(--error);
  font-weight: 650;
}

.form-section {
  padding: 0;
  margin: 0;
  border: 0;
}

.form-section + .form-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-section legend {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.form-section legend span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  margin-right: 0.5rem;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.75rem;
}

.consent label {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
}

.consent input {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: auto;
  margin-top: 0.15rem;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.form-actions p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.78rem;
}

.spinner {
  width: 1rem;
  height: 1rem;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.form-card.is-loading .spinner {
  display: block;
}

.form-status {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.form-status.is-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-details h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-block {
  display: flex;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--border);
}

.contact-block > .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue-dark);
}

.contact-block span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block address,
.contact-block p {
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-weight: 650;
}

.contact-phone {
  color: var(--ink);
  font-size: 1.2rem;
}

.contact-block small {
  display: block;
  color: var(--muted-text);
}

.map-frame {
  min-height: 35rem;
  overflow: hidden;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  display: block;
  border: 0;
}

.legal-content .container > h2 {
  margin-top: 2.4rem;
  font-size: 1.55rem;
}

.legal-content .container > p {
  max-width: 48rem;
}

.effective {
  color: var(--muted-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.not-found {
  position: relative;
  min-height: 38rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.not-found .container {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
}

.not-found h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.not-found p:not(.eyebrow):not(.error-code) {
  max-width: 39rem;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.error-code {
  position: absolute;
  top: -6rem;
  right: 0;
  color: rgba(255, 255, 255, 0.045) !important;
  font-size: clamp(12rem, 30vw, 24rem);
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  padding: 4.5rem 0 1.5rem;
  color: #a9bbcd;
  background: #08192a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  gap: 3rem;
}

.site-footer .logo {
  color: white;
}

.site-footer .logo__image {
  width: 6.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.site-footer .logo__mark {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer .logo__type small {
  color: #94a3b8;
}

.footer-brand p {
  max-width: 22rem;
  margin: 1.25rem 0;
}

.footer-credentials {
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.footer-credentials span {
  margin-inline: 0.35rem;
  color: var(--accent);
}

.site-footer h2 {
  color: white;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fdba74;
}

.footer-slogan {
  color: #fdba74;
  font-family: var(--font-heading);
  font-weight: 600;
}

.site-footer address {
  margin-bottom: 0.7rem;
}

.footer-phone {
  display: flex !important;
  color: white !important;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  transition: opacity 380ms ease-out, transform 380ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal--pending {
  opacity: 0;
  transform: translateY(14px);
}

.reveal--image.reveal--pending {
  transform: translateY(14px) scale(0.985);
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes hero-image-in {
  from { opacity: 0.82; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes truck-drive {
  0% { transform: translate3d(-115%, 0, 0); }
  12% { transform: translate3d(10vw, 0, 0); }
  88% { transform: translate3d(calc(100vw - 12rem), 0, 0); }
  100% { transform: translate3d(calc(100vw + 2rem), 0, 0); }
}

@keyframes road-pass {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(-5.8rem, -50%, 0); }
}

@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__media img {
    animation: hero-image-in 900ms ease-out both;
  }

  .hero__copy > * {
    animation: hero-copy-in 520ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .hero__copy > :nth-child(1) { animation-delay: 100ms; }
  .hero__copy > :nth-child(2) { animation-delay: 170ms; }
  .hero__copy > :nth-child(3) { animation-delay: 240ms; }
  .hero__copy > :nth-child(4) { animation-delay: 310ms; }
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .principle-card:hover,
  .detail-card:hover,
  .pathway-card:hover,
  .value-item:hover,
  .process-grid li:hover {
    border-color: #b9c9e7;
    box-shadow: 0 18px 42px rgba(16, 42, 67, 0.1);
    transform: translateY(-4px);
  }

  .fleet-gallery__item:hover {
    border-color: #b9c9e7;
    box-shadow: 0 20px 45px rgba(16, 42, 67, 0.12);
    transform: translateY(-3px);
  }

  .fleet-gallery__item:hover img,
  .about-hero__visual:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 0.65rem;
  }

  .site-nav ul a {
    padding-inline: 0.5rem;
    font-size: 0.82rem;
  }

  .header-cta {
    padding-inline: 0.8rem;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip__grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-strip__grid > div:nth-child(3) {
    border-right: 0;
  }

  .trust-strip__grid > div:nth-child(n + 4) {
    border-bottom: 0;
  }

  .card-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 49;
    top: 7rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.2rem 1rem 2rem;
    overflow-y: auto;
    background: white;
    border-top: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav ul a {
    min-height: 52px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .header-cta {
    width: 100%;
  }

  .split,
  .split--balanced,
  .about-hero__grid,
  .transport-reach__grid,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero__grid {
    gap: 2rem;
    padding-top: 2.5rem;
  }

  .about-hero__visual {
    max-width: 44rem;
  }

  .fleet-gallery,
  .event-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--3,
  .card-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-sidebar {
    position: static;
  }

  .final-cta__inner,
  .career-banner__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: calc(3.75rem + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .trust-bar {
    font-size: 0.65rem;
  }

  .trust-bar .container {
    gap: 0.45rem;
  }

  .trust-bar span:nth-of-type(2),
  .trust-bar i:nth-of-type(2) {
    display: none;
  }

  .header-inner {
    min-height: 4rem;
    gap: 0.75rem;
  }

  .logo__image {
    width: auto;
    max-width: 3.2rem;
    max-height: 3rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 0.7rem;
  }

  .site-nav {
    top: 6rem;
  }

  .breadcrumbs {
    padding-top: 0.85rem;
  }

  .about-hero__grid {
    gap: 1.5rem;
    padding-block: 1.5rem 2.25rem;
  }

  .about-hero .interior-hero__content {
    padding-block: 0;
  }

  .about-hero h1 {
    max-width: 12ch;
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 10.8vw, 2.8rem);
  }

  .about-hero .interior-hero__content > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .about-slogan {
    margin: 0 0 1.1rem !important;
    padding: 0.62rem 0.85rem;
    font-size: 1.05rem !important;
  }

  .about-hero__visual {
    width: 100%;
    max-width: none;
    border-radius: 0.9rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .about-hero__visual picture {
    aspect-ratio: 4 / 3;
  }

  .about-hero__visual img {
    object-position: 50% 52%;
  }

  .about-hero__visual figcaption {
    padding: 2rem 0.9rem 0.75rem;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 42rem;
  }

  .hero__media img {
    object-position: 38% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(6, 12, 26, 0.94), rgba(8, 17, 34, 0.77)), linear-gradient(0deg, rgba(7, 14, 28, 0.68), transparent 60%);
  }

  .hero__content {
    padding-block: 4.5rem 6.5rem;
  }

  .road-motion {
    min-height: 7.5rem;
  }

  .road-motion__copy {
    top: 0.7rem;
    gap: 0.4rem;
  }

  .road-motion__copy span {
    display: none;
  }

  .road-motion__copy strong {
    font-size: 0.9rem;
  }

  .road-motion__horizon {
    bottom: 2.5rem;
    height: 2rem;
  }

  .road-motion__road {
    height: 2.5rem;
  }

  .road-motion__truck {
    bottom: 1.6rem;
    width: 9.5rem;
  }

  .hero .button-row,
  .final-cta .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button,
  .final-cta .button {
    width: 100%;
  }

  .image-disclosure {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    text-align: center;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:nth-child(n + 4) {
    min-height: 5.1rem;
    padding: 0.8rem 0.7rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-strip__grid > div:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-strip__grid > div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .trust-strip strong {
    font-size: 0.78rem;
  }

  .trust-strip small {
    font-size: 0.64rem;
  }

  .card-grid--2,
  .card-grid--3,
  .card-grid--4,
  .card-grid--5,
  .values-grid,
  .process-grid,
  .form-card,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .route-network ul,
  .fleet-gallery,
  .event-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .fleet-gallery__item--featured {
    grid-column: auto;
  }

  .fleet-gallery__item--featured picture {
    aspect-ratio: 4 / 3;
  }

  .service-card,
  .detail-card,
  .process-grid li {
    min-height: auto;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid li > .icon {
    margin-bottom: 1.5rem;
  }

  .record-card dl div,
  .fact-panel dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .record-card dd,
  .fact-panel dd {
    text-align: left;
  }

  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-cta .button {
    width: 100%;
  }

  .route-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline li {
    grid-template-columns: 3.2rem 1fr;
    gap: 0.75rem;
  }

  .timeline::before {
    left: 1.55rem;
  }

  .timeline li > span {
    width: 3.2rem;
    height: 3.2rem;
  }

  .form-card {
    padding: 1.15rem;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(3.75rem + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 0.3rem max(0.5rem, env(safe-area-inset-right)) calc(0.3rem + env(safe-area-inset-bottom)) max(0.5rem, env(safe-area-inset-left));
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 25px rgba(15, 23, 42, 0.12);
  }

  .mobile-action-bar a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--navy);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-action-bar a:last-child {
    color: white;
    background: var(--accent);
  }

  .mobile-action-bar .icon {
    width: 1.05rem;
    height: 1.05rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal--pending {
    opacity: 1;
    transform: none;
  }

  .road-motion__truck,
  .road-motion.is-armed .road-motion__truck,
  .road-motion.is-driving .road-motion__truck {
    left: 70%;
    animation: none !important;
    transform: translateX(-50%);
    will-change: auto;
  }

  .road-motion__road::before {
    animation: none !important;
  }
}

@media print {
  .trust-bar,
  .site-header,
  .mobile-action-bar,
  .road-motion,
  .final-cta,
  .site-footer,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
