:root {
  color-scheme: light;
  --navy: #06172d;
  --navy-light: #102a47;
  --blue: #168df2;
  --blue-hover: #0876d1;
  --light-blue: #eaf5ff;
  --white: #ffffff;
  --text-dark: #142238;
  --text-muted: #617086;
  --border: #e3eaf2;
  --background-light: #f6f9fc;
  --shadow: 0 18px 54px rgba(6, 23, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(22, 141, 242, 0.32);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(6, 23, 45, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1280px);
  min-height: 94px;
  margin: 0 auto;
  padding: 10px clamp(24px, 4vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 86px;
  object-fit: contain;
}

.desktop-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 30px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 28px);
  color: var(--navy-light);
  font-size: 0.98rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 12px 0;
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.quote-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.quote-link {
  padding: 0 22px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(22, 141, 242, 0.24);
  white-space: nowrap;
}

.quote-link:hover,
.quote-link:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.portal-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--navy);
  font-weight: 800;
  background: var(--white);
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.portal-login-link:hover,
.portal-login-link:focus-visible {
  color: var(--blue);
  border-color: rgba(22, 141, 242, 0.34);
  background: var(--light-blue);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7a8799;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-switch button {
  border: 0;
  padding: 4px 2px;
  color: #4f5e73;
  font: inherit;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease;
}

.language-switch button.active {
  color: var(--blue);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  visibility: hidden;
  background: rgba(6, 23, 45, 0.48);
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-backdrop.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  display: grid;
  align-content: start;
  gap: 24px;
  width: min(88vw, 390px);
  height: 100vh;
  padding: 22px;
  background: var(--white);
  box-shadow: -24px 0 54px rgba(6, 23, 45, 0.2);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-menu-head img {
  width: 148px;
  height: auto;
}

.mobile-menu-head button {
  border: 0;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.mobile-nav {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-weight: 800;
}

.mobile-quote {
  width: 100%;
}

.mobile-language {
  justify-self: start;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 20, 39, 0.92) 0%, rgba(4, 20, 39, 0.75) 48%, rgba(4, 20, 39, 0.25) 100%),
    url("assets/rv-transport-hero.webp") center right / cover;
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(100%, 1280px);
  min-height: 600px;
  margin: 0 auto;
  padding: 86px clamp(24px, 4vw, 40px);
}

.hero-copy {
  max-width: 670px;
  color: var(--white);
  animation: heroIn 620ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 1.07;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 1.7vw, 1.25rem);
  line-height: 1.62;
}

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

.button {
  min-width: 164px;
  padding: 0 24px;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(22, 141, 242, 0.28);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: var(--navy);
  background: var(--white);
  transform: translateY(-1px);
}

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

.button.full {
  width: 100%;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: rgba(22, 141, 242, 0.22);
}

.service-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(calc(100% - 48px), 1180px);
  margin: -38px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--border);
  box-shadow: var(--shadow);
}

.service-bar a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 88px;
  padding: 20px 22px;
  background: var(--white);
  transition: background 160ms ease, color 160ms ease;
}

.service-bar a:hover,
.service-bar a:focus-visible {
  color: var(--blue);
  background: var(--light-blue);
}

.service-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--light-blue);
}

.service-bar strong {
  font-size: 1rem;
}

.quote-section {
  padding: clamp(74px, 8vw, 112px) clamp(24px, 5vw, 76px) clamp(56px, 7vw, 92px);
  background: var(--background-light);
}

.quote-card {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.form-heading p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--text-muted);
  line-height: 1.58;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #1c2d44;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text-dark);
  font: inherit;
  background: #fbfdff;
}

textarea {
  resize: vertical;
}

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

.route-estimate {
  display: grid;
  gap: 8px;
  margin: 2px 0 18px;
  padding: 16px;
  border: 1px solid rgba(22, 141, 242, 0.22);
  border-radius: 12px;
  background: var(--light-blue);
}

.route-estimate[hidden] {
  display: none;
}

.route-estimate div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.route-estimate span {
  color: var(--navy-light);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-estimate strong {
  color: var(--blue);
  font-size: 1.35rem;
}

.route-estimate p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.quote-message {
  min-height: 22px;
  margin: 0;
  color: #047857;
  font-weight: 800;
  text-align: center;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: center;
}

.driver-register-message {
  margin: 14px 0 0;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.section,
.process,
.about-section {
  padding: clamp(56px, 8vw, 112px) clamp(24px, 5vw, 76px);
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy {
  max-width: 540px;
}

.section-copy p,
.service-grid p,
.steps span,
.footer p,
.about-section p {
  color: var(--text-muted);
  line-height: 1.65;
}

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

.service-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background-light);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

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

.steps li {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

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

.steps strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.steps span {
  color: rgba(255, 255, 255, 0.72);
}

.about-section {
  max-width: 960px;
}

.driver-hero {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 20, 39, 0.95) 0%, rgba(4, 20, 39, 0.86) 54%, rgba(4, 20, 39, 0.54) 100%),
    url("assets/rv-transport-hero.webp") center right / cover;
}

.driver-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(100%, 1280px);
  min-height: 560px;
  margin: 0 auto;
  padding: 82px clamp(24px, 4vw, 40px);
}

.driver-summary {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.driver-summary strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.driver-summary ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.driver-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(42px, 6vw, 72px) clamp(24px, 5vw, 76px);
  background: var(--white);
}

.driver-process article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--background-light);
}

.driver-process span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.driver-process h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.driver-process p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.driver-application-section {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 76px);
  background: var(--background-light);
}

.driver-application-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.consent-check {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfdff;
}

.consent-check input {
  width: 18px;
  min-width: 18px;
  margin-top: 2px;
}

.driver-recruiting-page {
  background: var(--white);
}

.driver-recruiting-page .site-header {
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.driver-recruiting-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 38px rgba(6, 23, 45, 0.1);
}

.oo-container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.oo-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 820px;
  padding-top: 92px;
  color: var(--white);
  overflow: hidden;
}

.oo-hero-media,
.oo-hero-overlay {
  position: absolute;
  inset: 0;
}

.oo-hero-media {
  background:
    linear-gradient(90deg, rgba(6, 23, 45, 0.08), rgba(6, 23, 45, 0)),
    url("assets/rv-transport-hero.webp") center right 28% / cover;
  transform: scale(1.01);
}

.oo-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 23, 45, 0.96) 0%, rgba(6, 23, 45, 0.88) 34%, rgba(6, 23, 45, 0.34) 62%, rgba(6, 23, 45, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 23, 45, 0.06), rgba(6, 23, 45, 0.52));
}

.oo-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  max-width: 690px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
  padding-block: clamp(94px, 11vw, 156px);
}

.oo-eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oo-hero h1,
.oo-section h2,
.oo-final-cta h2 {
  margin: 0;
  color: inherit;
  letter-spacing: 0;
}

.oo-hero h1 {
  max-width: 660px;
  font-size: clamp(3.35rem, 7vw, 6.5rem);
  line-height: 0.95;
}

.oo-hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.22rem, 2.2vw, 1.75rem);
  font-weight: 800;
}

.oo-hero-copy {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.72;
}

.oo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.oo-actions.center {
  justify-content: center;
}

.button.ghost.light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost.light:hover,
.button.ghost.light:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.oo-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.oo-metrics span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.oo-metrics strong,
.oo-metrics small {
  display: block;
}

.oo-metrics strong {
  color: var(--white);
  font-size: 1.08rem;
}

.oo-metrics small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.oo-section {
  scroll-margin-top: 96px;
  padding-block: clamp(68px, 8vw, 112px);
  background: var(--white);
}

.oo-final-cta,
#apply,
#equipment,
#requirements,
#how-it-works,
#opportunity,
#compensation,
#routes {
  scroll-margin-top: 96px;
}

.oo-section.oo-soft {
  background: var(--background-light);
}

.oo-section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.oo-section-head h2,
.oo-final-cta h2,
.oo-apply-grid h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.oo-section-head p:not(.oo-eyebrow),
.oo-route-grid p,
.oo-apply-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.oo-card-grid,
.oo-equipment-grid,
.oo-info-grid {
  display: grid;
  gap: 18px;
}

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

.oo-card,
.oo-info,
.oo-comp-card,
.oo-equipment-card,
.oo-list-card,
.oo-apply-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(6, 23, 45, 0.08);
}

.oo-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.oo-card:hover,
.oo-equipment-card:hover,
.oo-comp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 141, 242, 0.32);
  box-shadow: 0 20px 52px rgba(6, 23, 45, 0.12);
}

.oo-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 900;
  background: var(--light-blue);
}

.oo-card h3,
.oo-comp-card h3,
.oo-equipment-card h3,
.oo-list-card h3,
.oo-responsibility h3,
.oo-timeline h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.oo-card p,
.oo-comp-card p,
.oo-equipment-card p,
.oo-responsibility p,
.oo-timeline p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
}

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

.oo-info {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.oo-info span,
.oo-route-points small {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.oo-info strong,
.oo-route-points strong {
  color: var(--navy);
  line-height: 1.35;
}

.oo-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #d8e6f5;
  border-radius: 14px;
  color: var(--text-muted);
  background: #f8fbff;
}

.oo-note strong {
  color: var(--navy);
}

.oo-note.compact {
  margin-top: 22px;
}

.oo-comp-grid,
.oo-requirements-grid,
.oo-apply-grid,
.oo-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.oo-comp-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.oo-comp-card.featured {
  border-color: rgba(22, 141, 242, 0.42);
  box-shadow: 0 20px 60px rgba(22, 141, 242, 0.16);
}

.oo-comp-card > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.oo-comp-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.oo-comp-card span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--light-blue);
  white-space: nowrap;
}

.oo-comp-card ul,
.oo-list-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oo-comp-card li,
.oo-list-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  line-height: 1.5;
}

.oo-comp-card li::before,
.oo-list-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  color: #0f8a4b;
  font-size: 0.72rem;
  font-weight: 900;
  background: #e8f7f0;
}

.oo-fine {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.oo-route-grid {
  align-items: center;
}

.oo-route-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.oo-route-points span {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.oo-map-placeholder {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 280px;
  padding: 28px;
  border: 1px solid #cfe0f2;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(22, 141, 242, 0.12), rgba(6, 23, 45, 0.04)),
    radial-gradient(circle at 22% 36%, rgba(22, 141, 242, 0.22), transparent 32%),
    var(--white);
  box-shadow: 0 18px 46px rgba(6, 23, 45, 0.09);
}

.oo-map-placeholder span {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--navy);
  font-weight: 900;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 23, 45, 0.1);
}

.oo-map-placeholder i {
  height: 3px;
  margin-inline: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--navy-light));
}

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

.oo-equipment-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.oo-equipment-card h3,
.oo-equipment-card strong,
.oo-equipment-card p,
.oo-equipment-card small {
  margin-inline: 18px;
}

.oo-equipment-card h3 {
  margin-top: 18px;
}

.oo-equipment-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
}

.oo-equipment-card p {
  margin-top: 10px;
}

.oo-equipment-card small {
  display: block;
  margin-block: 12px 18px;
  color: var(--text-muted);
  font-weight: 800;
}

.oo-equipment-image {
  display: grid;
  place-items: center;
  height: 180px;
  padding: 14px;
  background: #f8fbff;
  border-bottom: 1px solid rgba(12, 34, 60, 0.08);
}

.oo-equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oo-list-card {
  padding: clamp(24px, 3vw, 32px);
}

.oo-list-card h3 {
  margin-bottom: 18px;
}

.oo-responsibility {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #d9e5f2;
  border-radius: 18px;
  background: #f8fbff;
}

.oo-responsibility strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  line-height: 1.55;
}

.oo-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oo-timeline li {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 0 18px 0 0;
}

.oo-timeline li::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 18px;
  left: 46px;
  height: 2px;
  background: var(--border);
}

.oo-timeline li:last-child::before {
  display: none;
}

.oo-timeline span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: var(--blue);
}

.oo-final-cta {
  padding-block: clamp(72px, 9vw, 116px);
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

.oo-final-cta .oo-container {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

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

.oo-final-cta p,
.oo-final-cta small {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.oo-apply-grid {
  align-items: start;
}

.oo-apply-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
}

.oo-apply-card label {
  display: grid;
  gap: 8px;
}

.oo-footer {
  grid-template-columns: 1fr auto auto;
  background: var(--white);
}

.oo-footer nav,
.oo-footer address {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 700;
}

.oo-footer small {
  grid-column: 1 / -1;
  color: var(--text-muted);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--border);
}

.footer img {
  width: 124px;
}

.footer p {
  margin-bottom: 0;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1180px) {
  .desktop-actions {
    gap: 18px;
  }

  .nav {
    gap: 18px;
    font-size: 0.94rem;
  }

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

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

@media (max-width: 900px) {
  .header-inner {
    min-height: 88px;
  }

  .brand img {
    height: 76px;
  }

  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: 520px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(4, 20, 39, 0.94) 0%, rgba(4, 20, 39, 0.82) 58%, rgba(4, 20, 39, 0.48) 100%),
      url("assets/rv-transport-hero.webp") center right / cover;
  }

  h1 {
    font-size: clamp(2.75rem, 7vw, 3.25rem);
  }

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

  .section,
  .process,
  .driver-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .driver-process {
    grid-template-columns: 1fr;
  }

  .oo-hero {
    min-height: 720px;
    padding-top: 86px;
  }

  .oo-hero-media {
    background-position: center right 18%;
  }

  .oo-hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 23, 45, 0.96) 0%, rgba(6, 23, 45, 0.86) 48%, rgba(6, 23, 45, 0.32) 100%),
      linear-gradient(180deg, rgba(6, 23, 45, 0.08), rgba(6, 23, 45, 0.62));
  }

  .oo-hero-content {
    margin-left: 0;
    padding-block: 80px;
  }

  .oo-metrics,
  .oo-comp-grid,
  .oo-requirements-grid,
  .oo-route-grid,
  .oo-apply-grid,
  .oo-info-grid {
    grid-template-columns: 1fr;
  }

  .oo-timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .oo-timeline li {
    min-height: 0;
    padding-left: 58px;
    padding-right: 0;
  }

  .oo-timeline span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .oo-timeline li::before {
    top: 46px;
    right: auto;
    bottom: -24px;
    left: 20px;
    width: 2px;
    height: auto;
  }

  .service-grid article {
    min-height: auto;
  }

  .service-grid span {
    margin-bottom: 22px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 82px;
    padding-inline: 18px;
  }

  .brand img {
    height: 68px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(4, 20, 39, 0.96) 0%, rgba(4, 20, 39, 0.84) 58%, rgba(4, 20, 39, 0.66) 100%),
      url("assets/rv-transport-hero.webp") center right / cover;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 18px 78px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.65rem);
    line-height: 1.08;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .quote-link {
    width: 100%;
  }

  .trust-points {
    display: grid;
    gap: 12px;
  }

  .service-bar {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -30px;
  }

  .service-bar a {
    min-height: 74px;
  }

  .quote-section,
  .section,
  .process,
  .about-section,
  .driver-application-section,
  .driver-process {
    padding-inline: 18px;
  }

  .driver-hero-inner {
    min-height: auto;
    padding: 70px 18px;
  }

  .form-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .oo-container {
    padding-inline: 18px;
  }

  .oo-section,
  .oo-final-cta {
    padding-block: 58px;
  }

  .oo-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .oo-hero {
    min-height: auto;
  }

  .oo-hero-media {
    background-position: center right 34%;
  }

  .oo-hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 23, 45, 0.94) 0%, rgba(6, 23, 45, 0.82) 50%, rgba(6, 23, 45, 0.54) 100%),
      linear-gradient(90deg, rgba(6, 23, 45, 0.7), rgba(6, 23, 45, 0.22));
  }

  .oo-card-grid.four,
  .oo-equipment-grid,
  .oo-route-points {
    grid-template-columns: 1fr;
  }

  .oo-map-placeholder {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 230px;
    text-align: center;
  }

  .oo-map-placeholder i {
    width: 3px;
    height: 52px;
    margin: 0 auto;
  }

  .oo-comp-card > div,
  .oo-note,
  .oo-responsibility {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .oo-footer {
    grid-template-columns: 1fr;
  }

  .footer .button {
    width: 100%;
  }
}
