:root {
  --bg: #ffffff;
  --text: #0e1116;
  --muted: #69707d;
  --line: #dde2ea;
  --accent: #0a3d91;
  --accent-soft: #edf3ff;
  --container: 1280px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.55;
}

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

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

.narrow {
  max-width: 820px;
}

.section {
  padding: 132px 0;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

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

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: #2e3440;
  max-width: 620px;
}

p {
  color: #323844;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(221, 226, 234, 0.75);
}

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

.brand {
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(10, 61, 145, 0.2);
}

.btn-small {
  padding: 10px 18px;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-soft);
  box-shadow: none;
}

.hero-scroll-section {
  height: 360vh;
}

.hero-pin {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 2vw 64px;
}

.hero-copy-wrap {
  position: absolute;
  top: 112px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(var(--container), calc(100% - 80px));
}

.hero-copy-shell {
  max-width: 760px;
  position: relative;
}

.hero-copy-shell::before {
  content: "";
  position: absolute;
  inset: -46px -68px -56px -52px;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.7) 52%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-copy-shell h1 {
  max-width: 860px;
}

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

.hero-video {
  width: 100vw;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fff;
}

.hero-copy-shell .lead {
  max-width: 620px;
  color: #2f3745;
}

.hero-phase-caption {
  margin: 22px 0 0;
  max-width: 470px;
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #4e596c;
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
}

.hero-side-note {
  position: absolute;
  top: 50%;
  margin: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #707a88;
  white-space: nowrap;
  pointer-events: none;
}

.hero-side-note-left {
  left: -120px;
}

.hero-side-note-right {
  right: -138px;
  transform: translateY(-50%) rotate(90deg);
}

.hero-progress-wrap {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 80px));
  display: grid;
  gap: 0;
}

.hero-progress-wrap span {
  font-size: 11px;
  color: #7a8698;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-progress-track {
  position: relative;
  height: 10px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid #d6dfec;
  background: linear-gradient(180deg, #f9fbff 0%, #eef3fa 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 2px rgba(55, 77, 110, 0.08);
  overflow: hidden;
}

.hero-progress-track::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: repeating-linear-gradient(
    90deg,
    rgba(125, 146, 176, 0.2) 0 1px,
    transparent 1px 24px
  );
  pointer-events: none;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  position: relative;
  border-radius: 999px;
  background: linear-gradient(90deg, #9ebde8 0%, #3f73c3 45%, #0a3d91 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset, 0 0 18px rgba(63, 115, 195, 0.35);
  transition: width 0.08s linear;
}

.hero-progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 35%, #9cc3ff 36% 100%);
  box-shadow: 0 0 0 2px rgba(56, 96, 165, 0.25), 0 0 18px rgba(86, 139, 224, 0.5);
}

.intro-cinematic {
  border-bottom: 1px solid var(--line);
  padding: 84px 0 92px;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.intro-copy {
  max-width: 760px;
}

.intro-copy p {
  color: #2f3744;
  font-size: 18px;
  line-height: 1.48;
  max-width: 42ch;
}

.intro-panel {
  border: 1px solid #e1e6ef;
  border-radius: 18px;
  background: #fff;
  padding: 22px 24px;
}

.intro-metric {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d7b92;
  font-weight: 600;
}

.intro-features {
  display: grid;
  gap: 0;
}

.intro-feature {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 14px 0;
  border-top: 1px solid #e8edf5;
}

.intro-feature:first-child {
  border-top: 0;
}

.intro-feature h3 {
  margin: 0 0 6px;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.intro-feature p {
  margin: 0;
  color: #596477;
  line-height: 1.45;
  font-size: 15px;
}

.services-story {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.services-track {
  display: grid;
  gap: 18px;
}

.service-step {
  border: 1px solid #dbe2ec;
  border-radius: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
  transition: border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}

.service-step.is-active {
  border-color: #a6bddf;
  background: #ffffff;
  transform: translateY(-2px);
}

.service-step p {
  color: #4a5362;
}

.services-stage {
  position: sticky;
  top: 120px;
  border: 1px solid #dbe2ec;
  border-radius: 24px;
  background: #ffffff;
  min-height: 430px;
  overflow: hidden;
}

.service-stage-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  padding: 34px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.service-stage-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-card-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #758196;
  margin-bottom: 16px;
}

.service-stage-card h3 {
  margin-bottom: 12px;
}

.service-stage-card p {
  color: #4b5463;
}

.service-stage-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #3d4553;
}

.fleet-showcase {
  border-top: 0;
}

.fleet-lead {
  max-width: 720px;
  color: #4a5362;
  margin-bottom: 26px;
}

.fleet-chapters {
  display: grid;
  gap: 54px;
}

.fleet-chapter {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  border-bottom: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: end;
}

.fleet-chapter.is-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.fleet-chapter.is-reverse .fleet-media {
  order: 2;
}

.fleet-chapter.is-reverse .fleet-copy {
  order: 1;
}

.fleet-media {
  width: 100%;
  background: transparent;
}

.fleet-media img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: initial;
  background: transparent;
  filter: none;
}

.fleet-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.fleet-copy p {
  color: #5b6577;
  margin-bottom: 12px;
  max-width: 34ch;
  font-size: 18px;
  line-height: 1.5;
}

.fleet-kicker {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #77839a;
  font-weight: 600;
}

.fleet-models {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: #3f4d67;
  margin: 18px 0 16px;
  font-weight: 500;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fleet-meta span {
  border: 1px solid #d7dfee;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  color: #4b5a74;
  background: rgba(255, 255, 255, 0.8);
}

.process-timeline {
  background: #fbfcfe;
}

.timeline {
  position: relative;
  margin-top: 18px;
  padding-left: 56px;
  display: grid;
  gap: 18px;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d9e1ee;
}

.timeline-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #9bb4dc 0%, #0a3d91 100%);
  transition: height 0.35s ease;
}

.timeline-item {
  border: 1px solid #dbe2ec;
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  position: relative;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #b5c6e0;
  background: #fff;
}

.timeline-item.is-active {
  border-color: #9fb8df;
  transform: translateY(-2px);
}

.timeline-item.is-active::before {
  background: #0a3d91;
  border-color: #0a3d91;
}

.timeline-item span {
  color: #7a8494;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item p {
  color: #4a5463;
}

.trust-editorial {
  border-top: 1px solid #dde3ed;
  border-bottom: 1px solid #dde3ed;
}

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

.trust-metric {
  padding: 18px 0;
}

.trust-metric .metric {
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.95;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.trust-metric p {
  color: #495263;
}

.contact-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  padding: 96px 0 88px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-copy p {
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.5;
  color: #556174;
}

.contact-form {
  border: 1px solid #dbe3f1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(21, 48, 92, 0.08);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.contact-form-title {
  margin: 0 0 2px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5f6f88;
}

.phone-field {
  display: grid;
  gap: 8px;
  color: #374354;
  font-size: 14px;
}

.phone-field input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #cfd9e8;
  background: #fff;
  min-height: 54px;
  padding: 12px 14px;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #0e1116;
}

.phone-field input:focus-visible {
  outline: 2px solid #9bb8e8;
  border-color: #9bb8e8;
}

.contact-form--phone .btn {
  min-height: 52px;
  font-size: 15px;
}

.contact-note {
  margin: 2px 0 0;
  font-size: 13px;
  color: #6f7d92;
}

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

.metric {
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 1180px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy-wrap {
    top: 102px;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--container), calc(100% - 80px));
  }

  .hero-copy-shell {
    max-width: 680px;
  }

  .hero-side-note {
    display: none;
  }

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

  .services-stage {
    position: relative;
    top: auto;
    min-height: 360px;
  }

  .service-stage-card {
    position: absolute;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-panel {
    padding: 22px;
  }

  .intro-feature h3 {
    font-size: 22px;
  }

  .intro-cinematic {
    padding: 72px 0 80px;
  }

  .fleet-chapter,
  .fleet-chapter.is-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 0;
  }

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

  .fleet-copy h3 {
    font-size: clamp(30px, 5.4vw, 38px);
  }

  .fleet-copy p {
    font-size: 17px;
    max-width: 44ch;
  }
}

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

  h1 {
    font-size: clamp(34px, 9.6vw, 50px);
    line-height: 0.98;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(30px, 8.2vw, 40px);
    margin-bottom: 16px;
  }

  h3 {
    font-size: clamp(22px, 6.2vw, 30px);
    margin-bottom: 10px;
  }

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

  .nav,
  .btn-small {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .hero-scroll-section {
    height: auto;
  }

  .hero-pin {
    min-height: 100svh;
    height: auto;
    padding: 92px 0 62px;
  }

  .hero-layout {
    height: auto;
    min-height: calc(100svh - 172px);
  }

  .hero-canvas {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 50svh;
    padding: 0;
    margin-top: 24px;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    min-height: 54svh;
  }

  .hero-copy-shell {
    position: relative;
    inset: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
  }

  .hero-copy-wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
  }

  .hero-copy-shell::before {
    inset: -26px -10px -20px -10px;
  }

  .hero-copy-shell .lead {
    font-size: 16px;
    max-width: 36ch;
  }

  .hero-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero-phase-caption {
    margin-top: 16px;
    opacity: 1;
    transform: none;
  }

  .hero-progress-wrap {
    position: static;
    transform: none;
    margin: 18px auto 0;
  }

  .hero-progress-track {
    height: 8px;
  }

  .hero-progress-bar::after {
    width: 12px;
    height: 12px;
    right: -5px;
  }

  .services-layout,
  .services-track,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .service-step {
    border-radius: 16px;
    padding: 18px;
  }

  .services-stage {
    min-height: 290px;
    border-radius: 16px;
  }

  .service-stage-card {
    padding: 20px;
  }

  .intro-metric {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }

  .intro-feature h3 {
    font-size: 20px;
    line-height: 1.14;
  }

  .intro-feature p {
    font-size: 15px;
  }

  .intro-feature {
    padding: 12px 0;
  }

  .timeline {
    padding-left: 32px;
    gap: 14px;
  }

  .timeline-item::before {
    left: -30px;
  }

  .timeline-item {
    padding: 18px;
    border-radius: 16px;
  }

  .fleet-chapters {
    gap: 30px;
  }

  .fleet-copy h3 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .fleet-copy p {
    font-size: 16px;
    line-height: 1.46;
  }

  .fleet-models {
    font-size: 13px;
    margin: 14px 0 12px;
  }

  .fleet-meta span {
    padding: 8px 12px;
    font-size: 13px;
  }

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

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

  .contact-form {
    border-radius: 16px;
    padding: 18px;
  }

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

  .mobile-bottom-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    z-index: 60;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid #d6dfec;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(20, 46, 88, 0.14);
  }

  .mobile-bottom-btn {
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid #d0d9e8;
    color: #213557;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    white-space: nowrap;
  }

  .mobile-bottom-btn-primary {
    border-color: #0a3d91;
    color: #fff;
    background: linear-gradient(90deg, #2459ad 0%, #0a3d91 100%);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-bar {
    grid-template-columns: 1fr 1fr 1fr;
    left: 8px;
    right: 8px;
    gap: 6px;
    padding: 7px;
  }

  .mobile-bottom-btn {
    min-height: 42px;
    font-size: 12px;
  }
}

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

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