:root {
  --blue-950: #071d49;
  --blue-900: #0a2758;
  --blue-800: #123f7a;
  --blue-700: #1458a5;
  --blue-600: #1769d2;
  --blue-500: #2e7eea;
  --blue-100: #dcecff;
  --blue-50: #f1f7ff;
  --ink: #10213d;
  --muted: #60708a;
  --line: #dfe7f1;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --success: #138a5b;
  --shadow-sm: 0 10px 30px rgba(21, 57, 101, 0.08);
  --shadow-md: 0 22px 60px rgba(12, 47, 94, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

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

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

body.nav-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
  width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--surface);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 231, 241, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand > span:last-child > span {
  color: var(--blue-600);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue-600), var(--blue-800));
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(23, 105, 210, 0.24);
}

.brand-mark svg {
  width: 31px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  color: #35445d;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

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

.primary-nav .nav-cta {
  padding: 11px 20px;
  color: white;
  background: var(--blue-600);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(23, 105, 210, 0.2);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: white;
  background: var(--blue-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-950);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 106px;
  background:
    radial-gradient(circle at 76% 20%, rgba(47, 126, 234, 0.12), transparent 31%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9fe 100%);
}

.hero::before {
  position: absolute;
  top: -360px;
  right: -320px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(23, 105, 210, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(23, 105, 210, 0.025), 0 0 0 180px rgba(23, 105, 210, 0.018);
}

.hero-decoration {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--blue-500);
  border-radius: 50%;
  opacity: 0.35;
}

.hero-decoration-one {
  top: 110px;
  left: 7%;
}

.hero-decoration-two {
  right: 5%;
  bottom: 100px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: 82px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 12px 7px 9px;
  color: var(--blue-700);
  background: #eaf3ff;
  border: 1px solid #d4e6fc;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.eyebrow-dot,
.live-badge span,
.response-note span {
  width: 7px;
  height: 7px;
  background: #23ad72;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(35, 173, 114, 0.12);
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--blue-950);
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  position: relative;
  color: var(--blue-600);
}

.hero h1 span::after {
  position: absolute;
  right: 2px;
  bottom: 1px;
  left: 2px;
  height: 8px;
  background: rgba(46, 126, 234, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-copy > p {
  max-width: 585px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 18px;
}

.button-primary {
  color: white;
  background: var(--blue-600);
  box-shadow: 0 12px 24px rgba(23, 105, 210, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(23, 105, 210, 0.28);
}

.button-secondary {
  color: var(--blue-950);
  background: white;
  border-color: var(--line);
  box-shadow: 0 6px 18px rgba(16, 33, 61, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #b8cbe3;
  box-shadow: var(--shadow-sm);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  color: #53647e;
  font-size: 13px;
  font-weight: 600;
}

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

.trust-points svg {
  width: 17px;
  color: var(--success);
}

.hero-visual {
  position: relative;
  min-height: 475px;
}

.journey-card {
  position: absolute;
  top: 35px;
  right: 12px;
  left: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(210, 224, 241, 0.92);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15, 54, 103, 0.18);
  transform: rotate(1.2deg);
}

.journey-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 27px 18px;
}

.journey-top > div {
  display: flex;
  flex-direction: column;
}

.card-label,
.journey-details small {
  color: #8490a3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.journey-top strong {
  margin-top: 5px;
  color: var(--blue-950);
  font-size: 19px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: #217850;
  background: #edfaf4;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
}

.live-badge span {
  width: 6px;
  height: 6px;
}

.route-map {
  position: relative;
  height: 210px;
  margin: 0 16px;
  overflow: hidden;
  background:
    linear-gradient(rgba(225, 234, 244, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 234, 244, 0.38) 1px, transparent 1px),
    linear-gradient(145deg, #f6fafe, #edf5fd);
  background-size: 38px 38px, 38px 38px, 100% 100%;
  border-radius: 16px;
}

.route-map > svg {
  position: absolute;
  inset: 5px -5px auto;
  width: calc(100% + 10px);
  height: 190px;
}

.map-road {
  fill: none;
  stroke: #a9cdf7;
  stroke-linecap: round;
  stroke-width: 8;
}

.map-road-muted {
  stroke: white;
  stroke-width: 27;
  opacity: 0.9;
}

.map-dash {
  fill: none;
  stroke: white;
  stroke-dasharray: 5 9;
  stroke-linecap: round;
  stroke-width: 2;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: var(--blue-950);
  font-size: 10px;
  line-height: 1.25;
}

.map-pin small {
  margin-top: 4px;
  color: #7b8ba1;
}

.map-pin strong {
  font-size: 11px;
}

.pin-start {
  bottom: 19px;
  left: 3%;
  align-items: flex-start;
}

.pin-end {
  top: 22px;
  right: 1%;
  align-items: flex-end;
}

.pin-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue-600);
  background: white;
  border: 1px solid #d7e7fa;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(19, 67, 123, 0.16);
}

.pin-icon svg {
  width: 22px;
}

.pin-icon.destination {
  color: #23a66d;
}

.vehicle-marker {
  position: absolute;
  top: 101px;
  left: 51%;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--blue-600);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 7px 15px rgba(18, 63, 122, 0.25);
}

.vehicle-marker svg {
  width: 25px;
}

.journey-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px 27px 24px;
}

.journey-details > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.journey-details > div + div {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.journey-details > div > span:last-child {
  display: flex;
  flex-direction: column;
}

.journey-details strong {
  color: #233a5d;
  font-size: 12px;
}

.detail-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 9px;
}

.detail-icon svg {
  width: 21px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #e2eaf4;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(10, 39, 88, 0.16);
}

.support-card {
  bottom: 7px;
  left: -20px;
  gap: 11px;
  padding: 12px 17px 12px 12px;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 10px;
}

.floating-icon svg {
  width: 23px;
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  color: var(--blue-950);
  font-size: 11px;
}

.floating-card small {
  color: #8190a4;
  font-size: 9px;
}

.rating-card {
  top: 4px;
  right: -18px;
  gap: 10px;
  padding: 11px 15px;
}

.rating-score {
  color: var(--blue-950);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.stars {
  color: #f0ac24;
  font-size: 10px;
  letter-spacing: 1px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 0;
}

.trust-strip-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.trust-strip-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-strip-grid strong {
  color: var(--blue-700);
  font-size: 20px;
  line-height: 1.3;
}

.trust-strip-grid span {
  color: #7c8a9e;
  font-size: 12px;
}

.section-heading {
  max-width: 590px;
}

.heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0 0 17px;
  color: var(--blue-950);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 55px;
}

.service-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card:hover {
  border-color: #c0d7f2;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  background: var(--blue-50);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-featured {
  color: white;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-600));
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(23, 105, 210, 0.2);
}

.service-card-featured::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 35px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 14px;
}

.service-icon svg {
  width: 29px;
}

.service-card-featured .service-icon {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.service-card > div:last-child {
  position: relative;
  z-index: 2;
}

.popular-label {
  color: #a9d4ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 7px 0 9px;
  color: var(--blue-950);
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card a,
.text-link {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
}

.service-card a span,
.text-link span {
  display: inline-block;
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.service-card a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.service-card-featured h3,
.service-card-featured p,
.service-card-featured a {
  color: white;
}

.service-card-featured p {
  color: #d7e9ff;
}

.why-section {
  overflow: hidden;
  background: var(--surface-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 100px;
  align-items: center;
}

.why-visual {
  position: relative;
  min-height: 520px;
}

.visual-backdrop {
  position: absolute;
  inset: 25px 42px 45px 0;
  background: linear-gradient(145deg, #cce3ff, #ecf5ff);
  border-radius: 30px;
  transform: rotate(-4deg);
}

.visual-backdrop::after {
  position: absolute;
  top: -22px;
  right: -24px;
  width: 65px;
  height: 65px;
  border: 2px dashed rgba(23, 105, 210, 0.25);
  border-radius: 50%;
  content: "";
}

.visual-window {
  position: absolute;
  inset: 45px 24px 25px 25px;
  overflow: hidden;
  background: white;
  border: 1px solid #d8e4f0;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(24, 62, 108, 0.17);
}

.window-bar {
  display: flex;
  gap: 6px;
  padding: 14px 17px;
  background: #f6f9fc;
  border-bottom: 1px solid #e9eef5;
}

.window-bar span {
  width: 7px;
  height: 7px;
  background: #c9d4e2;
  border-radius: 50%;
}

.window-content {
  position: relative;
  display: flex;
  height: calc(100% - 36px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(23, 105, 210, 0.08), transparent 30%),
    linear-gradient(180deg, white, #fbfdff);
}

.welcome-avatar {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border: 7px solid white;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(23, 105, 210, 0.16), 0 0 0 1px #dbe9fa;
}

.welcome-avatar svg {
  width: 58px;
}

.welcome-check {
  display: grid;
  width: 28px;
  height: 28px;
  margin: -24px -70px 16px 0;
  place-items: center;
  color: white;
  background: #21a96f;
  border: 3px solid white;
  border-radius: 50%;
}

.welcome-check svg {
  width: 17px;
}

.window-content strong {
  margin-bottom: 7px;
  color: var(--blue-950);
  font-size: 22px;
}

.window-content > p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 11px 17px;
  color: #50627c;
  background: #f5f9fd;
  border: 1px solid #e4ecf5;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.window-status span {
  width: 7px;
  height: 7px;
  background: #20a96d;
  border-radius: 50%;
}

.mini-shield {
  position: absolute;
  right: -2px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px 13px 13px;
  color: var(--blue-600);
  background: white;
  border: 1px solid #dce6f1;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.mini-shield svg {
  width: 34px;
}

.mini-shield span {
  display: flex;
  flex-direction: column;
}

.mini-shield strong {
  color: var(--blue-950);
  font-size: 12px;
}

.mini-shield small {
  color: #8190a4;
  font-size: 9px;
}

.why-copy .section-heading {
  margin-bottom: 35px;
}

.benefit-list {
  display: grid;
  gap: 8px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.benefit-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-600);
  background: white;
  border: 1px solid #d9e7f6;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 800;
}

.benefit-item h3 {
  margin: 0 0 3px;
  color: var(--blue-950);
  font-size: 17px;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--blue-950), #0b3472);
}

.process-section::before,
.process-section::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.process-section::before {
  top: -230px;
  right: -80px;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.02), 0 0 0 120px rgba(255, 255, 255, 0.015);
}

.process-section::after {
  bottom: -310px;
  left: -100px;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.02);
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.section-heading-light h2,
.contact-copy h2 {
  color: white;
}

.section-heading-light p {
  color: #b9cce5;
}

.section-heading-light .section-kicker {
  color: #72b1ff;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 55px 1fr 55px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 60px;
}

.process-step {
  position: relative;
  min-height: 270px;
  padding: 31px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: rgba(255, 255, 255, 0.17);
  font-size: 39px;
  font-weight: 800;
  line-height: 1;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  color: #8dc3ff;
  background: rgba(82, 162, 255, 0.12);
  border: 1px solid rgba(141, 195, 255, 0.15);
  border-radius: 14px;
}

.step-icon svg {
  width: 29px;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: #b9cce5;
  font-size: 14px;
}

.process-arrow {
  color: #6ea7eb;
  font-size: 30px;
  text-align: center;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 105px;
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: 120px;
}

.faq-grid .text-link {
  display: inline-block;
  margin-top: 24px;
}

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

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

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  color: var(--blue-950);
  background: transparent;
  border: 0;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  color: var(--blue-600);
}

.accordion-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: var(--blue-50);
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 12px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  content: "";
  transition: transform 0.25s ease;
}

.accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.28s ease;
}

.accordion-panel > div {
  min-height: 0;
}

.accordion-panel p {
  margin: 0;
  padding: 0 45px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.accordion-trigger[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.contact-section {
  padding-top: 0;
  background: white;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 70px;
  padding: 72px;
  color: white;
  background: linear-gradient(145deg, #0b2b61, var(--blue-950));
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 65px rgba(8, 35, 77, 0.18);
}

.contact-copy {
  padding: 20px 0;
}

.section-kicker-light {
  color: #76b6ff;
}

.contact-copy > p {
  color: #b9cce5;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 39px;
}

.contact-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-points > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #8bc3ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
}

.contact-points svg {
  width: 22px;
}

.contact-points div div {
  display: flex;
  flex-direction: column;
}

.contact-points small {
  color: #7fa5d2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-points a {
  font-size: 14px;
  font-weight: 600;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: #a9c2df;
  font-size: 12px;
}

.response-note span {
  flex: 0 0 7px;
}

.form-card {
  padding: 35px;
  color: var(--ink);
  background: white;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(3, 18, 46, 0.25);
}

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

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #233956;
  font-size: 12px;
  font-weight: 700;
}

.form-group label span {
  color: #d54d5d;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #dce5ef;
  border-radius: 9px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
  height: 46px;
  padding: 0 13px;
}

.form-group textarea {
  min-height: 102px;
  padding: 11px 13px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa6b7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(46, 126, 234, 0.12);
}

.form-group .is-invalid {
  border-color: #d95361;
}

.form-group .is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(217, 83, 97, 0.11);
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: #c73849;
  font-size: 10px;
  line-height: 1.3;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-privacy {
  margin: 11px 0 0;
  color: #8b98aa;
  font-size: 10px;
  text-align: center;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 11px;
  margin-top: 17px;
  padding: 13px;
  color: #176943;
  background: #edfaf4;
  border: 1px solid #c8eadb;
  border-radius: 10px;
}

.form-success.is-visible {
  display: flex;
  animation: success-in 0.35s ease both;
}

.form-success > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  color: white;
  background: var(--success);
  border-radius: 50%;
}

.form-success svg {
  width: 16px;
}

.form-success strong {
  display: block;
  font-size: 12px;
}

.form-success p {
  margin: 2px 0 0;
  color: #4d8068;
  font-size: 10px;
}

@keyframes success-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-footer {
  color: #a9bdd7;
  background: #061832;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 65px;
  padding: 72px 0 58px;
}

.brand-light {
  color: white;
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  color: #8fa6c3;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin: 5px 0 10px;
  color: white;
  font-size: 13px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #8fa6c3;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #7089a8;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

:focus-visible {
  outline: 3px solid rgba(46, 126, 234, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .why-grid {
    gap: 60px;
  }

  .contact-shell {
    gap: 45px;
    padding: 55px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .primary-nav {
    gap: 22px;
  }

  .hero {
    padding: 72px 0 88px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 700px;
    text-align: center;
    justify-self: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-points {
    justify-content: center;
  }

  .hero-visual {
    width: min(620px, 100%);
    justify-self: center;
  }

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

  .service-card,
  .service-card:nth-child(4) {
    grid-column: auto;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 250px;
  }

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

  .why-visual {
    width: min(600px, 100%);
    justify-self: center;
  }

  .why-copy {
    max-width: 680px;
    justify-self: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

  .process-step {
    min-height: 230px;
  }

  .process-arrow {
    line-height: 1;
    transform: rotate(90deg);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-grid .section-heading {
    position: static;
  }

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

  .contact-copy {
    max-width: 620px;
    padding-bottom: 0;
  }

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

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(16, 33, 61, 0.09);
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .primary-nav.is-open {
    max-height: 430px;
    padding: 12px 18px 20px;
    opacity: 1;
  }

  .primary-nav a {
    padding: 13px 10px;
    font-size: 15px;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 7px;
    padding: 13px 18px;
    text-align: center;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

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

  .trust-strip-grid > div {
    padding: 14px 10px;
  }

  .trust-strip-grid > div + div {
    border-left: 0;
  }

  .trust-strip-grid > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

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

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

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 270px;
  }

  .why-visual {
    min-height: 450px;
  }

  .visual-window {
    inset: 38px 18px 24px;
  }

  .visual-backdrop {
    right: 25px;
  }

  .faq-grid {
    gap: 35px;
  }

  .contact-section {
    padding-bottom: 0;
  }

  .contact-section .container {
    width: 100%;
  }

  .contact-shell {
    gap: 38px;
    padding: 48px 24px;
    border-radius: 0;
  }

  .form-card {
    padding: 27px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 76px 0;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .hero {
    padding: 48px 0 68px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-points {
    gap: 9px 15px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .journey-card {
    top: 25px;
    right: 0;
    left: 0;
    transform: none;
  }

  .journey-top {
    padding: 18px 17px 14px;
  }

  .journey-top strong {
    font-size: 15px;
  }

  .live-badge {
    font-size: 8px;
  }

  .route-map {
    height: 175px;
    margin: 0 10px;
  }

  .route-map > svg {
    height: 160px;
  }

  .vehicle-marker {
    top: 86px;
  }

  .journey-details {
    padding: 15px 17px 18px;
  }

  .journey-details > div + div {
    padding-left: 13px;
  }

  .support-card {
    bottom: -6px;
    left: -5px;
  }

  .rating-card {
    top: -17px;
    right: -5px;
  }

  .rating-score {
    font-size: 20px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .section-heading p,
  .contact-copy > p {
    font-size: 15px;
  }

  .why-visual {
    min-height: 400px;
  }

  .window-content {
    padding: 25px 20px;
  }

  .welcome-avatar {
    width: 77px;
    height: 77px;
  }

  .window-content strong {
    font-size: 18px;
  }

  .mini-shield {
    right: 0;
    bottom: -5px;
  }

  .benefit-item {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .process-step {
    min-height: auto;
  }

  .accordion-trigger {
    font-size: 15px;
  }

  .form-card {
    padding: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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