:root {
  --navy: #071a2f;
  --navy-2: #0d2a49;
  --navy-3: #163b61;
  --orange: #cf4708;
  --orange-dark: #b83b05;
  --white: #ffffff;
  --surface: #f4f7f9;
  --surface-2: #eaf0f4;
  --ink: #071a2f;
  --muted: #566576;
  --line: #dce4ea;
  --line-dark: rgba(255, 255, 255, 0.18);
  --success: #1f7a4d;
  --max-width: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 8px 30px rgba(7, 26, 47, 0.08);
  --shadow: 0 20px 60px rgba(7, 26, 47, 0.13);
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

svg {
  width: 1.2em;
  height: 1.2em;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid rgba(244, 90, 20, 0.45);
  outline-offset: 4px;
}

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

.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;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 9vw, 120px);
}

.section-tight {
  padding-block: clamp(52px, 6vw, 82px);
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.section-heading--stacked {
  display: block;
  max-width: 760px;
}

.section-heading--stacked p {
  max-width: 620px;
  margin-top: 18px;
}

.accent {
  color: var(--orange);
  font-style: normal;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

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

.button svg {
  flex: 0 0 auto;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(244, 90, 20, 0.25);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 32px rgba(244, 90, 20, 0.3);
}

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

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

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

.button-light:hover {
  color: var(--white);
  background: var(--navy-3);
  border-color: rgba(255, 255, 255, 0.45);
}

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

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

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.utility-bar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.utility-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.94;
}

.utility-item:hover {
  opacity: 1;
}

.utility-item svg {
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  position: relative;
  display: inline-flex;
  min-width: 192px;
  align-items: center;
  gap: 7px;
  padding-bottom: 10px;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: 1.46rem;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 1;
  transform: skewX(-4deg);
}

.brand span {
  color: var(--navy);
}

.brand strong {
  color: var(--orange);
}

.brand::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 49px;
  width: 92px;
  height: 7px;
  background: var(--navy);
  clip-path: polygon(0 45%, 100% 0, 74% 100%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 48px;
  padding-inline: 20px;
}

.mobile-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.mobile-menu-button svg {
  width: 25px;
  height: 25px;
}

.mobile-drawer {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  min-height: 555px;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 54px 72px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--white);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -55px;
  z-index: -1;
  width: 90px;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.25vw, 4.5rem);
}

.hero-copy .lead {
  max-width: 540px;
  margin-bottom: 32px;
}

.hero .button {
  padding-inline: 18px;
  font-size: 0.89rem;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 555px;
  background: var(--surface-2);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.hero-note {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 650;
}

.hero-note::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--orange);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  display: grid;
  min-height: 118px;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: center;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--orange);
  background: rgba(244, 90, 20, 0.08);
  border-radius: 50%;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.92rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.services-open {
  position: relative;
  overflow: hidden;
}

.services-open::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 50px;
  width: 470px;
  height: 280px;
  opacity: 0.25;
  border: 2px dashed #7f8c98;
  border-right: 0;
  border-radius: 50% 0 0 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(52px, 8vw, 110px);
}

.services-intro {
  align-self: start;
}

.services-intro h2 {
  margin-bottom: 20px;
}

.services-intro p {
  max-width: 480px;
  color: var(--muted);
}

.services-intro .button {
  margin-top: 22px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding var(--transition), color var(--transition), background var(--transition);
}

.service-row:hover {
  padding-inline: 18px;
  background: var(--surface);
}

.service-number {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-row h3 {
  margin-bottom: 5px;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.service-row p {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-arrow {
  color: var(--navy);
  transition: color var(--transition), transform var(--transition);
}

.service-row:hover .service-arrow {
  color: var(--orange);
  transform: translateX(4px);
}

.fleet-frame {
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fleet-photo {
  position: relative;
  height: clamp(330px, 42vw, 510px);
  background: var(--surface-2);
}

.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 59%;
}

.fleet-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
}

.fleet-option {
  position: relative;
  padding: 38px 44px 42px;
}

.fleet-option + .fleet-option {
  border-left: 1px solid var(--line-dark);
}

.fleet-option h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.fleet-option > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

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

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 0.15em;
  color: var(--orange);
}

.quote-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.quote-band::before {
  content: "";
  position: absolute;
  bottom: -240px;
  left: -130px;
  width: 520px;
  height: 380px;
  opacity: 0.35;
  border: 32px solid rgba(255, 255, 255, 0.16);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.quote-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.quote-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-copy .contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--white);
  font-weight: 800;
}

.quote-copy .contact-line svg {
  color: var(--orange);
}

.quote-form {
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5dd;
  border-radius: 6px;
  font-size: 0.91rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 90, 20, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a98a6;
}

.quote-form .button {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.form-feedback {
  display: none;
  margin-top: 18px;
  padding: 18px;
  color: var(--ink);
  background: #eef8f2;
  border: 1px solid #b7ddc8;
  border-radius: var(--radius-sm);
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback h3 {
  margin-bottom: 8px;
  color: var(--success);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.form-feedback p {
  margin-bottom: 14px;
  color: #315743;
  font-size: 0.84rem;
  line-height: 1.55;
}

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.feedback-actions .button {
  width: auto;
  min-height: 43px;
  margin-top: 0;
  padding-inline: 16px;
  font-size: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

.process-step {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  right: -20%;
  width: 40%;
  border-top: 2px dashed rgba(244, 90, 20, 0.55);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.process-step p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 6vw, 68px);
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  content: "";
  position: absolute;
  top: -85px;
  right: 21%;
  width: 190px;
  height: 190px;
  border: 20px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cta-panel .button-row {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  padding-block: 68px 54px;
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand .brand span {
  color: var(--white);
}

.footer-brand .brand::after {
  background: var(--white);
}

.footer-brand p {
  max-width: 310px;
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg {
  flex: 0 0 auto;
  margin-top: 0.2em;
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.76rem;
}

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

/* Interior pages */
.page-hero {
  background: var(--navy);
}

.page-hero-grid {
  display: grid;
  min-height: 485px;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
}

.page-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 68px 70px 68px max(20px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
}

.page-hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 330px;
  height: 250px;
  opacity: 0.28;
  border: 26px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.page-hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.9rem, 5.4vw, 5.3rem);
}

.page-hero-copy .lead {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-media {
  min-width: 0;
  background: var(--surface-2);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero--fleet .page-hero-media img {
  object-position: 62% center;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(54px, 9vw, 120px);
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: 148px;
}

.sticky-intro h2 {
  margin-bottom: 18px;
}

.sticky-intro p {
  color: var(--muted);
}

.detail-list {
  border-top: 1px solid var(--line);
}

.detail-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.detail-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(244, 90, 20, 0.35);
  border-radius: 50%;
}

.detail-icon svg {
  width: 27px;
  height: 27px;
}

.detail-item h3 {
  margin-bottom: 10px;
}

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

.planning-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding: clamp(30px, 5vw, 52px);
  color: var(--white);
  background: var(--navy);
  border-left: 7px solid var(--orange);
  border-radius: var(--radius);
}

.planning-callout h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.planning-callout p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.fleet-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 520px;
  align-items: stretch;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.fleet-detail + .fleet-detail {
  margin-top: 34px;
}

.fleet-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 72px);
}

.fleet-detail-copy h2 {
  margin-bottom: 18px;
}

.fleet-detail-copy > p {
  color: var(--muted);
}

.fleet-detail-copy .check-list {
  margin-top: 28px;
}

.fleet-detail-copy .check-list li {
  font-size: 0.92rem;
}

.fleet-detail-media {
  min-height: 420px;
  background: var(--surface-2);
}

.fleet-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-detail--reverse .fleet-detail-copy {
  order: 2;
}

.fleet-detail--reverse .fleet-detail-media {
  order: 1;
}

.load-guide {
  padding: clamp(36px, 6vw, 64px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.load-guide-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.load-guide h2 {
  margin-bottom: 0;
  color: var(--white);
}

.load-guide-head p {
  color: rgba(255, 255, 255, 0.72);
}

.load-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.load-button {
  min-height: 84px;
  padding: 14px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.load-button:hover,
.load-button.is-active {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.load-result {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 21px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-sm);
}

.load-result svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

.load-result strong {
  display: block;
  margin-bottom: 3px;
}

.load-result span {
  color: var(--muted);
  font-size: 0.83rem;
}

.about-lead {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(54px, 9vw, 120px);
  align-items: start;
}

.about-lead h2 {
  margin-bottom: 0;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.value-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-item {
  padding: 40px;
}

.value-item + .value-item {
  border-left: 1px solid var(--line);
}

.value-number {
  display: block;
  margin-bottom: 36px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-item h3 {
  margin-bottom: 12px;
}

.value-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.business-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.business-card-copy {
  padding: clamp(40px, 7vw, 78px);
}

.business-card-copy h2 {
  margin-bottom: 30px;
  color: var(--white);
}

.business-lines {
  display: grid;
  gap: 14px;
}

.business-line {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
}

.business-line svg {
  flex: 0 0 auto;
  margin-top: 0.2em;
  color: var(--orange);
}

.business-card-media {
  min-height: 460px;
}

.business-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

.contact-form-card {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  margin-bottom: 12px;
}

.contact-form-card > p {
  margin-bottom: 32px;
  color: var(--muted);
}

.contact-form-card .quote-form {
  padding: 0;
  box-shadow: none;
}

.contact-sidebar {
  position: sticky;
  top: 148px;
}

.contact-person {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.contact-person h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 2rem;
}

.contact-person > p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-person .business-lines {
  margin-top: 26px;
}

.contact-person .button {
  width: 100%;
  margin-top: 26px;
}

.form-section-title {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 12px;
  color: var(--navy);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  position: relative;
  padding: 24px 44px 24px 0;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 2px;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 760px;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-grid {
    min-height: 535px;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  }

  .hero-media {
    min-height: 535px;
  }

  .hero-copy {
    padding-right: 28px;
  }

  .trust-item {
    grid-template-columns: 36px 1fr;
    gap: 11px;
    padding-inline: 18px;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
  }

  .services-layout,
  .quote-layout {
    gap: 50px;
  }

  .services-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(460px, 1.3fr);
  }

  .quote-layout {
    grid-template-columns: minmax(260px, 0.68fr) minmax(510px, 1.32fr);
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

@media (min-width: 621px) and (max-width: 980px) {
  .hero h1 {
    font-size: 2.62rem;
  }

  .hero .button {
    padding-inline: 10px;
    font-size: 0.77rem;
  }

  .hero .button-row {
    gap: 6px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand {
    min-width: 170px;
    font-size: 1.3rem;
  }

  .brand::after {
    left: 43px;
    width: 83px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .mobile-drawer {
    position: fixed;
    inset: 74px 0 0;
    z-index: 99;
    display: block;
    padding: 24px 20px 92px;
    visibility: hidden;
    background: var(--white);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility var(--transition), opacity var(--transition), transform var(--transition);
    overflow-y: auto;
  }

  .mobile-drawer.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav {
    display: grid;
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: "Arial Black", Inter, sans-serif;
    font-size: 1.18rem;
    letter-spacing: -0.025em;
  }

  .mobile-nav a[aria-current="page"] {
    color: var(--orange);
  }

  .mobile-drawer .button {
    width: 100%;
    margin-top: 24px;
  }

  .mobile-drawer-contact {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 0.84rem;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 64px 20px 55px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero h1 {
    max-width: 620px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media img {
    object-position: 58% center;
  }

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

  .trust-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .services-layout,
  .quote-layout,
  .content-split,
  .about-lead,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .services-layout,
  .quote-layout,
  .content-split,
  .about-lead,
  .contact-layout {
    gap: 42px;
  }

  .sticky-intro,
  .contact-sidebar {
    position: static;
  }

  .services-open::after {
    display: none;
  }

  .fleet-photo {
    height: 430px;
  }

  .fleet-compare {
    grid-template-columns: 1fr;
  }

  .fleet-option + .fleet-option {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .quote-band::before {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 0;
  }

  .process-step:nth-child(2)::after {
    display: none;
  }

  .cta-panel,
  .planning-callout {
    grid-template-columns: 1fr;
  }

  .cta-panel .button-row {
    justify-content: flex-start;
  }

  .page-hero-copy {
    padding: 62px 20px;
  }

  .page-hero-media {
    min-height: 420px;
  }

  .fleet-detail,
  .business-card {
    grid-template-columns: 1fr;
  }

  .fleet-detail-copy,
  .fleet-detail--reverse .fleet-detail-copy,
  .fleet-detail--reverse .fleet-detail-media {
    order: initial;
  }

  .fleet-detail-media,
  .business-card-media {
    min-height: 400px;
  }

  .load-guide-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .value-rail {
    grid-template-columns: 1fr;
  }

  .value-item + .value-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .footer-column:last-child {
    grid-column: auto;
  }

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

  .mobile-call-bar {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 98;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 8px;
    padding: 8px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(7, 26, 47, 0.28);
  }

  .mobile-call-bar .button {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding-block: 68px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy {
    padding: 48px 14px 40px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10.8vw, 3.1rem);
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-media img {
    object-position: 61% 62%;
  }

  .hero-note {
    display: none;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

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

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:last-child {
    min-height: 90px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .services-layout {
    display: block;
  }

  .service-list {
    margin-top: 44px;
  }

  .service-row {
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .service-row:hover {
    padding-inline: 8px;
  }

  .fleet-photo {
    height: 300px;
  }

  .fleet-photo img {
    object-position: 58% center;
  }

  .fleet-option {
    padding: 30px 24px 34px;
  }

  .quote-form,
  .contact-form-card {
    padding: 22px 18px;
  }

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

  .field-full,
  .form-section-title {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .cta-panel,
  .planning-callout {
    padding: 30px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 18px;
  }

  .page-hero-media {
    min-height: 320px;
  }

  .detail-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .detail-icon {
    width: 46px;
    height: 46px;
  }

  .fleet-detail-copy {
    padding: 34px 24px;
  }

  .fleet-detail-media,
  .business-card-media {
    min-height: 290px;
  }

  .load-guide {
    padding: 30px 20px;
  }

  .load-buttons {
    grid-template-columns: 1fr;
  }

  .value-item {
    padding: 32px 12px;
  }

  .business-card-copy {
    padding: 34px 24px;
  }

  .contact-person {
    padding: 28px 22px;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
