:root {
  --bg: #f5f8fb;
  --bg-soft: #edf5fb;
  --panel: #ffffff;
  --panel-alt: #ebf3f9;
  --text: #1d2a32;
  --text-soft: #53616d;
  --line: rgba(24, 58, 89, 0.12);
  --primary: #0f447d;
  --primary-dark: #0a2e5d;
  --primary-soft: #e7f1fb;
  --accent: #c86d44;
  --accent-soft: #f5e7df;
  --accent-alt: #2ea8b7;
  --shadow: 0 16px 38px rgba(19, 60, 99, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #f5f8fb 0%, #edf4fa 100%);
  color: var(--text);
  line-height: 1.7;
  font-size: 18px;
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(1400px, calc(100% - 1.5rem));
  margin: 0 auto 2rem;
}

.viewport-size {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  display: grid;
  gap: 0.1rem;
  min-width: 8rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(15, 68, 125, 0.18);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(15, 68, 125, 0.12);
  text-align: center;
  backdrop-filter: blur(8px);
}

.viewport-size-label {
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.viewport-size strong {
  font-size: 0.9rem;
}

.site-header {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  background: linear-gradient(90deg, var(--primary) 0%, #184f8d 38%, #c86d44 100%);
  border-bottom: 4px solid rgba(255,255,255,0.18);
  border-radius: 1.3rem;
  box-shadow: 0 16px 30px rgba(15, 68, 125, 0.18);
  overflow: hidden;
}

.brand-banner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 1rem 1.4rem 0.4rem;
}

.brand {
  display: block;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 1150px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(5, 21, 40, 0.12));
}

.menu-toggle,
.menu-button {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.site-nav a,
.read-aloud-button {
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.current,
.read-aloud-button:hover,
.read-aloud-button:focus-visible,
.read-aloud-button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 1.2rem;
  margin-top: 1rem;
}

.hero,
.section,
.site-footer {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.6rem;
  padding: 2.2rem;
  background: linear-gradient(135deg, rgba(15, 68, 125, 0.06), rgba(243, 155, 45, 0.07), rgba(46, 168, 183, 0.08));
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
}

.eyebrow.dark {
  color: var(--primary-dark);
}

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

h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.service-card h3,
.feature-item h3,
.trust-item h3,
.contact-card h3 {
  color: var(--primary-dark);
}

.faq-item h3 {
  color: var(--accent);
}

.emergency-number {
  color: #c62828;
  font-weight: 800;
}

.lead {
  max-width: 60ch;
  font-size: 1.24rem;
  color: var(--text-soft);
}

.transport-hours {
  margin: 0.9rem 0 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.mobile-line-break {
  display: none;
}

.company-motto {
  margin: 0;
  color: var(--accent);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.3rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.92rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 68, 125, 0.18);
}

.request-button {
  animation: request-button-blink 1.8s ease-in-out infinite;
}

@keyframes request-button-blink {
  0%,
  100% {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  }
  50% {
    background: linear-gradient(135deg, var(--accent), #d77e57);
  }
}

.button-secondary {
  background: #fff;
  color: var(--primary-dark);
  border-color: var(--line);
}

.button-call {
  background: linear-gradient(135deg, var(--accent), #d77e57);
  color: #fff;
  box-shadow: 0 12px 22px rgba(200, 109, 68, 0.18);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.trust-row {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.25rem;
}

.trust-row .company-motto {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 2.6rem;
  width: 100%;
  max-width: 100%;
  text-align: center;
  transform: none;
}

.motto-mark {
  position: absolute;
  top: -1.4rem;
  left: 75%;
  padding: 0 0.7rem 0.25rem;
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.trust-list li {
  padding: 0.5rem 0.8rem;
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 242, 252, 0.96));
  border: 1px solid rgba(15, 68, 125, 0.12);
  box-shadow: 0 14px 30px rgba(15, 68, 125, 0.09);
}

.hero-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 1.25rem;
  border-radius: 0.85rem;
  background: var(--panel-alt);
  object-fit: cover;
  object-position: center bottom;
}

.card-topline {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  margin-top: 0.8rem;
}

.hero-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.hero-card li + li {
  margin-top: 0.5rem;
}

.section {
  padding: 1.5rem;
}

.portrait-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
  min-height: 730px;
  align-items: center;
  border: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 18% 24%, rgba(46, 168, 183, 0.16) 0 8%, transparent 30%), radial-gradient(ellipse at 30% 82%, rgba(200, 109, 68, 0.12) 0 7%, transparent 28%), linear-gradient(135deg, #dbe1df 0%, #e8e3da 58%, #d4dbd4 100%);
}

.portrait-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background: repeating-linear-gradient(118deg, transparent 0 2.7rem, rgba(46, 168, 183, 0.08) 2.7rem 2.85rem, transparent 2.85rem 6rem);
}

@media (min-width: 936px) {
  .portrait-card {
    background-image: linear-gradient(rgba(238, 228, 214, 0.2), rgba(238, 228, 214, 0.2)), url("assets/images/imagefoto4.png");
    background-position: center;
    background-size: cover;
  }

  .portrait-card::before,
  .portrait-placeholder {
    display: none;
  }

  .portrait-copy {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(9, 31, 51, 0.18);
  }
}

.portrait-copy {
  position: relative;
  z-index: 1;
  max-width: 62ch;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 0.75rem;
}

.portrait-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 48%;
}

.portrait-placeholder::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -52%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(232, 227, 218, 0.94) 0%, rgba(232, 227, 218, 0.94) 48%, rgba(232, 227, 218, 0.55) 58%, rgba(232, 227, 218, 0.12) 68%, rgba(232, 227, 218, 0) 76%);
}

.team-photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 0;
  object-fit: contain;
  object-position: right center;
}

@media (min-width: 936px) {
  .portrait-placeholder::after {
    left: 0;
    background: none;
  }
}

.placeholder-photo,
.placeholder-vehicle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(15, 68, 125, 0.22);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(231,241,251,0.95));
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  min-height: 180px;
}

.placeholder-photo {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,231,223,0.9));
}

.placeholder-vehicle {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(231,241,251,0.95));
}

.section-heading {
  margin-bottom: 1.2rem;
}

.service-grid,
.feature-grid,
.steps,
.faq-list {
  display: grid;
  gap: 1rem;
}

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

.service-detail-card {
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding: 1.3rem 1.5rem;
  border: 2px solid rgba(15, 68, 125, 0.2);
  border-top: 0.45rem solid var(--primary);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 68, 125, 0.08);
}

.service-detail-card h3 {
  margin: 0.6rem 0 0.7rem;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.service-detail-card h3:not(:first-of-type) {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 68, 125, 0.16);
}

.service-detail-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-payment,
.service-requirements {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 0.75rem;
}

.service-payment {
  border-left: 0.45rem solid var(--accent);
  background: var(--accent-soft);
}

.service-requirements {
  border-left: 0.45rem solid var(--primary);
  background: var(--primary-soft);
}

.service-payment h3,
.service-requirements h3 {
  margin-top: 0;
}

.service-payment .service-detail-note {
  margin-bottom: 0;
}

.service-requirements ul {
  margin-bottom: 1rem;
}

.service-requirements li::marker {
  color: var(--accent);
  font-weight: 800;
}

.service-requirements li > strong {
  color: var(--accent);
}

.requirements-intro {
  margin: 0.2rem 0 0.7rem;
}

.service-detail-card h4 {
  margin: 1.4rem 0 0.35rem;
  color: var(--primary-dark);
  font-size: 1rem;
}

.service-detail-card h4 + p {
  margin-bottom: 0.2rem;
}

.deadlines-intro {
  text-align: left;
}

.service-detail-card p,
.service-detail-card li {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.service-detail-card .service-detail-note {
  margin: 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.service-detail-card ul,
.service-detail-card ol {
  margin: 0.5rem 0 0.8rem;
  padding-left: 1.4rem;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 0.4rem;
  border: 2px solid var(--accent);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.template-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--accent);
  border-radius: 0.65rem;
  background: #fff;
  color: #9c4e2c;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(200, 109, 68, 0.14);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.template-link::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  order: 2;
  flex: 0 0 auto;
}

.template-link::before {
  content: "";
  width: 0.85rem;
  height: 3px;
  margin-right: -0.75rem;
  background: currentColor;
  order: 1;
  flex: 0 0 auto;
}

.template-link:hover,
.template-link:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

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

.template-card {
  margin: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 18px rgba(15, 68, 125, 0.04);
}

.template-card img {
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
  cursor: zoom-in;
}

.template-card figcaption {
  margin-top: 0.7rem;
  color: var(--text);
  font-weight: 700;
}

.template-note {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.zoom-link {
  display: block;
}

.hotspot-image {
  position: relative;
  display: block;
}

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  box-shadow: 0 2px 6px rgba(15, 68, 125, 0.4);
}

.hotspot .hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 220px;
  padding: 0.5rem 0.7rem;
  border-radius: 0.5rem;
  background: var(--text);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  pointer-events: none;
  z-index: 20;
}

.hotspot:hover,
.hotspot:focus-visible {
  z-index: 10;
}

.hotspot:hover .hotspot-tooltip,
.hotspot:focus-visible .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
}

.hotspot .hotspot-tooltip-right {
  left: 0;
  transform: translateX(0);
}

.hotspot .hotspot-tooltip-below {
  bottom: auto;
  top: calc(100% + 0.5rem);
}

.hotspot .hotspot-tooltip-left {
  left: auto;
  right: 0;
  transform: translateX(0);
}

.warning-text {
  color: var(--accent);
  font-weight: 800;
}

.inline-zoom-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.inline-zoom-link:hover,
.inline-zoom-link:focus-visible {
  color: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 23, 34, 0.7);
  backdrop-filter: blur(4px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 90vh;
  padding: 0;
  background: transparent;
}

.lightbox-controls {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 1;
}

.lightbox-close {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 0.7rem;
  margin: 0 auto;
}

#lightboxImageWrap {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

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

.service-card,
.feature-item,
.faq-item {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235,244,252,0.96));
  box-shadow: 0 10px 18px rgba(15, 68, 125, 0.04);
}

.service-card:nth-child(1) {
  border-color: rgba(200, 109, 68, 0.38);
  background: linear-gradient(180deg, #fffaf5 0%, #f8e5da 100%);
}

.service-card:nth-child(2) {
  border-color: rgba(46, 168, 183, 0.4);
  background: linear-gradient(180deg, #f5ffff 0%, #dceff0 100%);
}

.service-card:nth-child(3) {
  border-color: rgba(15, 68, 125, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #e7f1fb 100%);
}

.service-card:nth-child(1) .icon {
  background: var(--accent-soft);
  color: #9c4e2c;
}

.service-card:nth-child(2) .icon {
  background: #d5f1f2;
  color: #167986;
}

.service-card:nth-child(3) .icon {
  background: #e7f1fb;
  color: var(--primary-dark);
}

.faq-item h3,
.faq-item p {
  line-height: 1.6;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.service-card p,
.feature-item p,
.faq-item p,
.contact-copy p,
.contact-card p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 1.08rem;
}

.service-card .service-card-link {
  margin-top: 1rem;
}

.service-card-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0.55rem;
  background: var(--primary-soft);
  text-decoration: none;
}

.service-info {
  margin-top: 1.2rem;
  padding: 1.2rem 1.3rem;
  border: 2px solid rgba(200, 109, 68, 0.5);
  border-left: 0.7rem solid var(--accent);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(245, 231, 223, 0.95), rgba(255, 255, 255, 0.98), rgba(231, 241, 251, 0.8));
  box-shadow: 0 12px 24px rgba(200, 109, 68, 0.12);
}

.service-info h3 {
  margin: 0 0 0.6rem;
  color: var(--primary-dark);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-info ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.service-info li + li {
  margin-top: 0.35rem;
}

.feature-band {
  background: linear-gradient(180deg, rgba(15, 68, 125, 0.04), rgba(200, 109, 68, 0.06), rgba(255, 255, 255, 0.98));
}

.fleet-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(46, 168, 183, 0.08), rgba(255, 255, 255, 0.98) 62%, rgba(200, 109, 68, 0.08));
}

.fleet-image-wrap {
  aspect-ratio: 1.53 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(200, 109, 68, 0.2), rgba(255, 235, 222, 0.9));
}

.fleet-image {
  width: 100%;
  height: 92%;
  margin: 0;
  border-radius: 0.9rem;
  object-fit: cover;
  object-position: center;
}

.fleet-copy {
  max-width: 42ch;
  margin: 0 auto;
  text-align: center;
}

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

.feature-item strong {
  display: none;
}

.feature-grid > .feature-item:nth-child(1) {
  border-color: rgba(200, 109, 68, 0.38);
  background: linear-gradient(135deg, rgba(200, 109, 68, 0.08), rgba(245, 231, 223, 0.6));
  border-width: 2px;
}

.feature-grid > .feature-item:nth-child(1) strong {
  background: var(--accent);
  box-shadow: 0 6px 14px rgba(200, 109, 68, 0.22);
}

.feature-grid > .feature-item:nth-child(2) {
  border-color: rgba(46, 168, 183, 0.38);
  background: linear-gradient(135deg, rgba(46, 168, 183, 0.08), rgba(213, 241, 242, 0.6));
  border-width: 2px;
}

.feature-grid > .feature-item:nth-child(2) strong {
  background: var(--accent-alt);
  box-shadow: 0 6px 14px rgba(46, 168, 183, 0.22);
}

.feature-grid > .feature-item:nth-child(3) {
  border-color: rgba(15, 68, 125, 0.38);
  background: linear-gradient(135deg, rgba(15, 68, 125, 0.08), rgba(231, 241, 251, 0.6));
  border-width: 2px;
}

.feature-grid > .feature-item:nth-child(3) strong {
  background: var(--primary-dark);
  box-shadow: 0 6px 14px rgba(15, 68, 125, 0.22);
}

.feature-grid > .feature-item:nth-child(4) {
  border-color: rgba(200, 109, 68, 0.38);
  background: linear-gradient(135deg, rgba(200, 109, 68, 0.12), rgba(245, 231, 223, 0.5));
  border-width: 2px;
}

.feature-grid > .feature-item:nth-child(4) strong {
  background: #c86d44;
  box-shadow: 0 6px 14px rgba(200, 109, 68, 0.22);
}

.feature-grid > .feature-item:nth-child(5) {
  border-color: rgba(46, 168, 183, 0.38);
  background: linear-gradient(135deg, rgba(46, 168, 183, 0.12), rgba(213, 241, 242, 0.5));
  border-width: 2px;
}

.feature-grid > .feature-item:nth-child(5) strong {
  background: #2ea8b7;
  box-shadow: 0 6px 14px rgba(46, 168, 183, 0.22);
}

.feature-grid > .feature-item:nth-child(6) {
  border-color: rgba(15, 68, 125, 0.38);
  background: linear-gradient(135deg, rgba(15, 68, 125, 0.12), rgba(231, 241, 251, 0.5));
  border-width: 2px;
}

.feature-grid > .feature-item:nth-child(6) strong {
  background: var(--primary);
  box-shadow: 0 6px 14px rgba(15, 68, 125, 0.22);
}

@media (min-width: 936px) {
  .feature-grid > .feature-item:nth-child(4) {
    border-color: rgba(46, 168, 183, 0.38);
    background: linear-gradient(135deg, rgba(46, 168, 183, 0.12), rgba(213, 241, 242, 0.5));
  }

  .feature-grid > .feature-item:nth-child(4) strong {
    background: #2ea8b7;
    box-shadow: 0 6px 14px rgba(46, 168, 183, 0.22);
  }

  .feature-grid > .feature-item:nth-child(5) {
    border-color: rgba(15, 68, 125, 0.38);
    background: linear-gradient(135deg, rgba(15, 68, 125, 0.12), rgba(231, 241, 251, 0.5));
  }

  .feature-grid > .feature-item:nth-child(5) strong {
    background: var(--primary);
    box-shadow: 0 6px 14px rgba(15, 68, 125, 0.22);
  }

  .feature-grid > .feature-item:nth-child(6) {
    border-color: rgba(200, 109, 68, 0.38);
    background: linear-gradient(135deg, rgba(200, 109, 68, 0.12), rgba(245, 231, 223, 0.5));
  }

  .feature-grid > .feature-item:nth-child(6) strong {
    background: #c86d44;
    box-shadow: 0 6px 14px rgba(200, 109, 68, 0.22);
  }
}

.feature-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 68, 125, 0.12) !important;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.step {
  position: relative;
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  flex: 1 1 0;
  min-width: 0;
  padding: 1rem 1.1rem 1rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(225,236,249,0.96));
  border: 1px solid var(--line);
  box-shadow: 0 10px 18px rgba(15, 68, 125, 0.03);
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -1.1rem;
  top: 8.1rem;
  width: 0.9rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 68, 125, 0.22), var(--accent));
  transform: translateY(-50%);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.03rem;
  top: 8.1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.step p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-weight: 600;
}

@media (min-width: 901px) and (max-width: 935px) {
  .step:nth-child(1) {
    background: linear-gradient(to bottom, #f8e5da 0%, #f8e5da 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(2) {
    background: linear-gradient(to bottom, #d5f1f2 0%, #d5f1f2 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(3) {
    background: linear-gradient(to bottom, #f5e7df 0%, #f5e7df 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(4) {
    background: linear-gradient(to bottom, #e7f1fb 0%, #e7f1fb 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }
}

@media (min-width: 936px) {
  .hero-copy {
    text-align: center;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .hero-actions {
    justify-content: center;
  }

  .hero .trust-list {
    justify-content: center;
    text-align: center;
  }

  .hero .hero-actions {
    margin-top: calc(2.1rem + 2cm);
  }

  .trust-list li {
    font-size: 1.1rem;
  }

  .step:nth-child(1) {
    background: linear-gradient(to bottom, #f8e5da 0%, #f8e5da 25%, rgba(255, 255, 255, 0.98) 25%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(2) {
    background: linear-gradient(to bottom, #d5f1f2 0%, #d5f1f2 25%, rgba(255, 255, 255, 0.98) 25%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(3) {
    background: linear-gradient(to bottom, #f5e7df 0%, #f5e7df 25%, rgba(255, 255, 255, 0.98) 25%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(4) {
    background: linear-gradient(to bottom, #e7f1fb 0%, #e7f1fb 25%, rgba(255, 255, 255, 0.98) 25%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step span {
    position: relative;
    top: -2mm;
  }
}

@media (min-width: 901px) and (max-width: 935px) {
  .step:nth-child(1) {
    background: linear-gradient(to bottom, #f8e5da 0%, #f8e5da 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(2) {
    background: linear-gradient(to bottom, #d5f1f2 0%, #d5f1f2 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(3) {
    background: linear-gradient(to bottom, #f5e7df 0%, #f5e7df 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(4) {
    background: linear-gradient(to bottom, #e7f1fb 0%, #e7f1fb 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .step:nth-child(1) {
    background: linear-gradient(to bottom, #f8e5da 0%, #f8e5da 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(2) {
    background: linear-gradient(to bottom, #d5f1f2 0%, #d5f1f2 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(3) {
    background: linear-gradient(to bottom, #f5e7df 0%, #f5e7df 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(4) {
    background: linear-gradient(to bottom, #e7f1fb 0%, #e7f1fb 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }
}

@media (max-width: 768px) {
  .faq .section-heading,
  .faq .section-heading h2,
  .faq .faq-item,
  .faq .faq-item h3,
  .faq .faq-item p {
    text-align: center;
  }

  .step:nth-child(1) {
    background: linear-gradient(to bottom, #f8e5da 0%, #f8e5da 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(2) {
    background: linear-gradient(to bottom, #d5f1f2 0%, #d5f1f2 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(3) {
    background: linear-gradient(to bottom, #f5e7df 0%, #f5e7df 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }

  .step:nth-child(4) {
    background: linear-gradient(to bottom, #e7f1fb 0%, #e7f1fb 15%, rgba(255, 255, 255, 0.98) 15%, rgba(225, 236, 249, 0.96) 100%);
  }
}

.step:nth-child(n + 2) p {
  width: 100%;
  text-align: center;
}

.step-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
}

.step-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  max-width: 100%;
  min-height: 2.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: inherit;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  text-align: center;
}

.step-link:hover,
.step-link:focus-visible {
  background: #d5e7f6;
  font-weight: 800;
}

.step-link-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 5px 12px rgba(200, 109, 68, 0.16);
}

.step-link-primary:hover,
.step-link-primary:focus-visible {
  background: #a95734;
  font-weight: 800;
}

.step-or {
  margin: 0;
  align-self: center;
  color: var(--text-soft);
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

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

.faq .section-heading,
.faq .section-heading .eyebrow,
.faq .section-heading h2,
.faq .faq-item,
.faq .faq-item h3,
.faq .faq-item p {
  text-align: center;
}

.legal-page {
  padding: 2rem 1.5rem;
}

.legal-page h1 {
  margin-bottom: 0.8rem;
}

.legal-page h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.legal-block {
  margin-bottom: 1.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(15, 68, 125, 0.08);
}

.legal-block p + p {
  margin-top: 0.25rem;
}

.legal-block a,
.legal-source a {
  color: var(--primary-dark);
  font-weight: 700;
}

.legal-source {
  margin-top: 1rem;
  color: var(--text-soft);
}

.trust-band {
  background: linear-gradient(180deg, rgba(15, 68, 125, 0.04), rgba(200, 109, 68, 0.06), rgba(255, 255, 255, 0.94));
}

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

.trust-item {
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(227,236,247,0.96));
  box-shadow: 0 10px 18px rgba(15, 68, 125, 0.03);
}

.trust-number {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--primary-dark);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 800;
}

.trust-item h3 {
  margin: 0 0 0.35rem;
  color: var(--text);
}

.trust-item p {
  margin: 0;
  color: var(--text-soft);
}

.job-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 68, 125, 0.08), rgba(243, 155, 45, 0.12), rgba(46, 168, 183, 0.08));
  border: 1px solid rgba(15, 68, 125, 0.12);
  box-shadow: 0 10px 18px rgba(15, 68, 125, 0.04);
}

.job-box p {
  margin: 0;
  color: var(--text-soft);
  max-width: 62ch;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 936px) {
  .homepage .menu-button {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 30;
    display: flex;
    width: 3.2rem;
    height: 3.2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0.8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 10px 22px rgba(15, 68, 125, 0.25);
    cursor: pointer;
  }

  .homepage .menu-button span {
    display: block;
    width: 1.35rem;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .homepage .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(0.42rem) rotate(45deg);
  }

  .homepage .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .homepage .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-0.42rem) rotate(-45deg);
  }

  .homepage .site-nav {
    position: fixed;
    top: 5.2rem;
    right: 1.25rem;
    z-index: 29;
    display: none;
    width: min(18rem, calc(100vw - 2.5rem));
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    box-shadow: 0 16px 30px rgba(15, 68, 125, 0.24);
  }

  .homepage .menu-toggle:checked ~ .site-nav {
    display: flex;
  }

  .job-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }

  .job-box p {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .job-box .button {
    margin: 0;
    min-width: 11rem;
  }

  .contact-panel {
    text-align: center;
  }

  .contact-card {
    text-align: center;
  }

  .contact-card a {
    display: block;
  }
}

.contact-card {
  background: linear-gradient(135deg, rgba(15, 68, 125, 0.12), rgba(243, 155, 45, 0.12));
  border: 2px solid rgba(15, 68, 125, 0.2);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 68, 125, 0.08);
}

.contact-label {
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-card a {
  display: inline-block;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
}

.contact-call {
  margin: 1rem 0 1rem;
}

.contact-copy p,
.contact-card p {
  font-size: 1.08rem;
}

.request-page {
  max-width: 920px;
  margin: 0 auto;
}

.request-form {
  display: grid;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label,
.form-legend {
  color: var(--primary-dark);
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(15, 68, 125, 0.2);
  border-radius: 0.7rem;
  padding: 0.8rem 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(46, 168, 183, 0.25);
  border-color: var(--accent-alt);
}

.form-row textarea {
  min-height: 9rem;
  resize: vertical;
}

.time-group {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(15, 68, 125, 0.2);
  border-radius: 0.9rem;
  background: rgba(231, 241, 251, 0.72);
}

.time-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.7rem;
}

.time-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--text-soft);
  font-weight: 600;
}

.time-option input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary);
}

.situation-group {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  border: 2px solid rgba(200, 109, 68, 0.52);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(231, 241, 251, 0.96), rgba(245, 231, 223, 0.9));
  box-shadow: 0 8px 20px rgba(200, 109, 68, 0.12);
}

.transport-warning {
  color: #c62828;
  font-weight: 800;
}

.situation-help-text {
  text-align: left !important;
}

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

.situation-additional-title {
  margin-top: 0.7rem;
}

.situation-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--text-soft);
  font-weight: 600;
}

.situation-option input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.form-note {
  margin: 2.2rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  color: rgba(255,255,255,0.96);
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  justify-content: flex-end;
}

.footer-meta {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}

.footer-meta p {
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-grid,
  .feature-grid,
  .faq-list,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-card {
    text-align: center;
  }

  .portrait-copy {
    max-width: 100%;
    text-align: center;
  }

  .service-card,
  .service-card h3,
  .service-card p,
  .service-card .icon,
  .feature-item,
  .feature-item h3,
  .feature-item p,
  .feature-item strong,
  .faq-item,
  .faq-item h3,
  .faq-item p {
    text-align: left;
  }

  .service-card .icon,
  .feature-item strong {
    margin-left: 0;
    display: inline-flex;
  }

  .service-card,
  .feature-item,
  .faq-item {
    justify-items: start;
    text-align: left;
    align-items: start;
  }
}

@media (min-width: 936px) and (max-width: 1100px) {
  .portrait-card,
  .portrait-copy,
  .portrait-copy h2,
  .portrait-copy p {
    text-align: left;
  }

  .portrait-copy {
    max-width: 62ch;
    justify-self: start;
  }
}

@media (min-width: 936px) and (max-width: 1023px) {
  .portrait-card {
    width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
  }

  .portrait-copy {
    width: 70%;
  }
}

@media (min-width: 768px) and (max-width: 935px) {
  .service-card,
  .service-card h3,
  .service-card p,
  .service-card .icon {
    text-align: left;
  }

  .step:first-child .step-actions {
    min-width: 0;
    width: 100%;
    padding: 0 7.5rem;
  }

  .step:first-child .step-link {
    width: 100%;
    min-width: 0;
    padding: 0.5rem 0.55rem;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .step:first-child .step-link:not(.step-link-primary) {
    background: transparent;
    color: var(--text-soft);
  }

  .step:first-child .step-link-primary {
    background: transparent;
    color: var(--text-soft);
  }

  .step:first-child .step-link:hover,
  .step:first-child .step-link:focus-visible,
  .step:first-child .step-link-primary:hover,
  .step:first-child .step-link-primary:focus-visible {
    background: transparent;
    color: var(--text-soft);
  }
}

@media (max-width: 935px) {
  .request-page .section-heading .lead {
    text-align: center;
  }

  .faq,
  .faq .section-heading,
  .faq .section-heading .eyebrow,
  .faq .section-heading h2,
  .faq .faq-item,
  .faq .faq-item h3,
  .faq .faq-item p {
    text-align: center;
  }

  .site-header {
    position: relative;
  }

  .menu-button {
    display: flex;
    width: 2.9rem;
    height: 2.9rem;
    margin: 0 1rem 0.9rem auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(255,255,255,0.36);
    background: rgba(255,255,255,0.08);
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 1.3rem;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(0.42rem) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-0.42rem) rotate(-45deg);
  }

  .menu-toggle:checked ~ .site-nav {
    display: flex !important;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0 1rem 1rem;
  }

  .mobile-menu-scrolled .menu-button {
    position: fixed;
    top: 0.5rem;
    right: 1rem;
    width: 3.2rem;
    height: 3.2rem;
    z-index: 20;
    margin: 0;
    border-color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 8px 20px rgba(10, 46, 93, 0.35);
  }

  .mobile-menu-scrolled .menu-button span {
    width: 1.45rem;
    height: 3px;
  }

  .mobile-menu-scrolled .site-nav {
    position: fixed;
    top: 4.1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    background: linear-gradient(90deg, var(--primary) 0%, #184f8d 38%, #c86d44 100%);
    border-radius: 0 0 1.3rem 1.3rem;
    box-shadow: 0 16px 30px rgba(15, 68, 125, 0.18);
    z-index: 19;
  }

  .contact-card {
    text-align: center;
  }

  .contact-card a {
    display: block;
    text-align: center;
  }

  .legal-page,
  .legal-page .section-heading,
  .legal-page .legal-block,
  .legal-page h1,
  .legal-page h2,
  .legal-page h3,
  .legal-page p,
  .legal-page ul,
  .legal-page li,
  .legal-page a,
  .legal-page .legal-source {
    text-align: center;
  }

  .legal-page {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0.75rem;
    overflow-wrap: anywhere;
  }

  .legal-page .legal-block {
    width: 100%;
  }

  .legal-page ul {
    list-style-position: inside;
    padding-left: 0;
  }

  .legal-page .legal-block {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero {
    text-align: center;
  }

  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero .transport-hours,
  .hero .company-motto,
  .hero .hero-actions,
  .hero .trust-list,
  .hero .hero-card,
  .hero .hero-card h2,
  .hero .hero-card ul,
  .hero .hero-card li,
  .service-card,
  .service-card h3,
  .service-card p,
  .service-card .icon,
  .section .section-heading,
  .section .section-heading h2,
  .section .lead,
  .section p,
  .portrait-card,
  .portrait-copy,
  .portrait-copy h2,
  .portrait-copy p,
  .feature-item,
  .feature-item p,
  .job-box,
  .job-box p,
  .faq-item,
  .faq-item h3,
  .faq-item p,
  .trust-band,
  .trust-band .section-heading,
  .trust-band .section-heading h2,
  .trust-item,
  .trust-item h3,
  .trust-item p,
  .contact-panel,
  .contact-card,
  .contact-copy,
  .contact-copy p {
    text-align: center;
  }

  .hero .lead,
  .hero .transport-hours,
  .hero .company-motto,
  .hero .hero-actions,
  .hero .trust-list {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero .trust-list {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .section .service-detail-card .deadlines-intro {
    text-align: left;
  }

  .mobile-line-break {
    display: block;
  }

  .hero .hero-actions {
    width: 100%;
  }

  .section .section-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero,
  .contact-panel,
  .portrait-card,
  .fleet-section,
  .service-grid,
  .feature-grid,
  .faq-list,
  .trust-grid,
  .template-gallery {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 180px;
  }

  .portrait-placeholder::after {
    left: 0;
    background: none;
  }

  .team-photo {
    height: auto;
    min-height: 0;
    border-radius: 0.9rem;
    object-fit: cover;
    object-position: center;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .step {
    display: block;
    min-height: 76px;
    padding: 0.9rem 1rem;
    text-align: left;
  }

  .step span {
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    transform: translateY(-50%);
  }

  .step p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.3;
    text-align: center;
    width: auto;
    transform: none;
  }

  .step:not(:first-child) {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step:not(:first-child) p {
    width: 100%;
    transform: translateY(0.3rem);
  }

  .step-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    width: 100%;
    transform: none;
    font-size: 1.02rem;
    line-height: 1.3;
  }

  .step:first-child .step-actions {
    align-items: center;
    justify-content: center;
    transform: translateY(0.5rem);
    width: calc(100% + 0.6rem);
    margin-left: -0.3rem;
  }

  .step:first-child > span {
    left: 1rem;
    top: calc(50% + 0.3rem);
  }

  .step-or {
    width: 100%;
    transform: none;
    font-size: 1.02rem;
    line-height: 1.3;
    text-align: center;
  }

  .step-link {
    flex: 1 1 0;
    width: 100%;
    justify-content: center;
    min-width: 0;
    min-height: 2.8rem;
    padding: 0.35rem 0.2rem;
    text-align: center;
    align-self: stretch;
  }

  .step:first-child .step-link {
    flex: 0 0 auto;
    width: auto;
  }

  .step:first-child .step-link:not(.step-link-primary) {
    transform: translateY(0.4rem);
  }

  .step:first-child .step-link-primary {
    transform: translateY(-0.4rem);
  }

  .step:first-child .step-link,
  .step:first-child .step-link-primary,
  .step:first-child .step-link:hover,
  .step:first-child .step-link:focus-visible,
  .step:first-child .step-link-primary:hover,
  .step:first-child .step-link-primary:focus-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    box-shadow: 0 6px 14px rgba(15, 68, 125, 0.08);
  }

  .step:first-child .step-link:not(.step-link-primary),
  .step:first-child .step-link:not(.step-link-primary):hover,
  .step:first-child .step-link:not(.step-link-primary):focus-visible {
    color: var(--primary-dark);
  }

  .step:first-child .step-link-primary,
  .step:first-child .step-link-primary:hover,
  .step:first-child .step-link-primary:focus-visible {
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), #d77e57);
    color: #fff;
  }

  .step:first-child .step-link,
  .step:first-child .step-link-primary {
    align-self: center;
    flex: 0 0 auto;
    width: 14rem !important;
    max-width: 100%;
  }

  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: calc(50% - 0.1rem);
    top: calc(100% + 0.2rem);
    width: 2px;
    height: 1rem;
    background: linear-gradient(180deg, rgba(15, 68, 125, 0.22), var(--accent));
    transform: translateX(-50%);
    z-index: 1;
  }

  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(50% - 0.1rem);
    top: calc(100% + 0.75rem);
    width: 0.7rem;
    height: 0.7rem;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: translateX(-50%) rotate(45deg);
    z-index: 2;
  }

  .job-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .job-box .button {
    margin: 0 auto;
  }

  .trust-row {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .trust-row .company-motto {
    grid-column: 1;
    grid-row: auto;
    margin: 1.2rem 0 0;
    font-size: 1.75rem;
    width: 100%;
    transform: none;
  }

  .motto-mark {
    display: none;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .template-gallery,
  .template-card {
    width: 100%;
    min-width: 0;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .step:first-child .step-actions {
    width: calc(100% - 15rem);
    margin-inline: auto;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 935px) {
  .service-card,
  .service-card h3,
  .service-card p,
  .service-card .icon {
    text-align: left;
  }

  .service-card {
    justify-items: start;
    align-items: start;
  }

  .service-card .icon {
    margin-left: 0;
  }

  .feature-item,
  .feature-item strong,
  .feature-item h3,
  .feature-item p {
    text-align: left;
  }

  .feature-item {
    justify-items: start;
    align-items: start;
  }

  .feature-item strong {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  .site-header,
  .section,
  .hero,
  .site-footer {
    border-radius: 0.9rem;
  }

  .hero,
  .section,
  .site-footer {
    padding: 1.1rem;
  }

  .site-nav {
    gap: 0.35rem;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .form-actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .form-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 0.35rem;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero .hero-actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .hero .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 0.35rem;
    font-size: 0.82rem;
    text-align: center;
  }

  .template-page {
    padding: 0.8rem 0.55rem;
    font-size: 0.92rem;
    overflow: hidden;
  }

  .template-page h1 {
    font-size: 2rem;
  }

  .template-page .lead {
    font-size: 1rem;
  }

  .template-page .template-gallery {
    width: 100%;
    max-width: 100%;
    gap: 0.7rem;
  }

  .template-page .template-card {
    width: 100%;
    padding: 0.55rem;
  }

  .template-page .template-card figcaption,
  .template-page .template-note {
    font-size: 0.9rem;
  }

  .situation-options {
    grid-template-columns: 1fr;
  }

  .step:first-child .step-actions {
    width: 100%;
    padding: 0 9rem;
  }

  .step:first-child {
    display: block;
    min-height: 112px;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }

  .steps .step > span {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
  }

  .step:first-child > span {
    left: 1rem;
    top: calc(50% + 0.3rem);
    z-index: 3;
  }

  .step:first-child .step-actions {
    width: calc(100% + 0.6rem);
    min-width: 0;
    padding: 0;
    margin-left: -0.3rem;
  }

  .step:first-child .step-link {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .step:first-child .step-link-primary {
    transform: none;
  }

  .step:first-child .step-link:not(.step-link-primary) {
    transform: translateY(0.4rem);
  }

  .step:first-child .step-link-primary {
    transform: translateY(-0.4rem);
  }
}

@media (min-width: 561px) and (max-width: 627px) {
  .step:first-child .step-actions {
    width: calc(100% - 1.5rem);
  }
}

@media (min-width: 600px) and (max-width: 627px) {
  .step:first-child .step-actions {
    width: calc(100% - 7.5rem);
  }
}

.faq,
.faq .section-heading,
.faq .section-heading .eyebrow,
.faq .section-heading h2,
.faq .faq-item,
.faq .faq-item h3,
.faq .faq-item p,
.faq .faq-item a {
  text-align: center !important;
}

@media (max-width: 935px) {
  .request-page .section-heading,
  .request-page .section-heading .eyebrow,
  .request-page .section-heading h1,
  .request-page .section-heading .lead,
  .request-page .section-heading .transport-hours {
    text-align: center !important;
  }

  .request-page .section-heading .lead {
    text-align: center !important;
    margin-right: auto;
    margin-left: auto;
  }
}

.faq .faq-item {
  justify-items: center;
}

.faq .faq-item h3,
.faq .faq-item p {
  width: 100%;
}

@media (min-width: 561px) and (max-width: 599px) {
  .step:first-child .step-actions {
    width: calc(100% - 12rem);
  }
}
