:root {
  --navy: #071522;
  --navy2: #0c2438;
  --steel: #6f8290;
  --sky: #eaf1f5;
  --paper: #f7f9fa;
  --amber: #f5a623;
  --amber2: #ffd36a;
  --white: #fff;
  --line: rgba(255, 255, 255, 0.14);
  --ink: #12202b;
  --muted: #5e6b74;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(3, 15, 25, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
img {
  max-width: 100%;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #cad6df;
  font-size: 0.86rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 250, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #dce4e9;
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.22rem;
  box-shadow: inset 0 -3px 0 rgba(245, 166, 35, 0.7);
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0.09em;
  font-size: 0.64rem;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.93rem;
}
.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  border-color: var(--amber);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: #111c25;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(245, 166, 35, 0.22);
  transition:
    0.2s transform,
    0.2s background;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--amber2);
}
.btn.dark {
  background: var(--navy);
  color: white;
  box-shadow: none;
}
.btn.ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.nav-cta {
  min-width: 156px;
  padding-left: 32px !important;
  padding-right: 32px !important;
}
.nav-links .nav-cta,
.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  border-bottom: 0;
}
.menu-btn {
  display: none;
  background: var(--navy);
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 10px 13px;
  font-weight: 800;
}
.hero {
  background: var(--navy);
  color: white;
  overflow: hidden;
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -220px 25%;
  height: 360px;
  border: 44px solid rgba(245, 166, 35, 0.1);
  border-radius: 50% 50% 0 0;
  transform: rotate(-7deg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding: 70px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amber2);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}
.eyebrow:before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--amber);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 22px 0 28px;
  max-width: 770px;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}
h3 {
  line-height: 1.2;
}
.hero-copy > p {
  max-width: 650px;
  color: #cbd7e0;
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.route-card {
  position: relative;
  background: linear-gradient(145deg, #17364e, #0a1e2f);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
}
.route-card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 24px;
}
.map-placeholder {
  position: relative;
  min-height: 365px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
}
.map-placeholder .road {
  position: absolute;
  width: 145%;
  height: 95px;
  background: #213c50;
  left: -20%;
  top: 42%;
  transform: rotate(-17deg);
  border-block: 2px dashed rgba(255, 211, 106, 0.75);
}
.pin {
  position: relative;
  z-index: 2;
}
.pin b {
  display: block;
  font-size: 1.35rem;
}
.pin span {
  color: #aebdca;
}
.pin.end {
  align-self: flex-end;
  text-align: right;
}
.stats {
  background: white;
  border-bottom: 1px solid #dce4e9;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 28px 34px;
  border-right: 1px solid #dce4e9;
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  font-size: 1.45rem;
  color: var(--navy);
}
.stat span {
  color: var(--muted);
}
.section {
  padding: 100px 0;
}
.section.muted {
  background: var(--sky);
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.photo-stack {
  position: relative;
  min-height: 470px;
}
.photo-placeholder {
  border-radius: 26px;
  background: linear-gradient(140deg, #b8c8d2, #e7edf0);
  color: #405460;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  border: 1px solid #b0bec7;
  box-shadow: var(--shadow);
  padding: 24px;
}
.photo-main {
  position: absolute;
  inset: 0 12% 8% 0;
}
.photo-small {
  position: absolute;
  width: 48%;
  height: 44%;
  right: 0;
  bottom: 0;
  border: 8px solid var(--paper);
}
.kicker {
  color: #b46c00;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  background: white;
  border: 1px solid #dce5ea;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 720;
}
.check-list li:before {
  content: "✓";
  color: #bb7100;
  margin-right: 10px;
  font-weight: 900;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}
.section-head p {
  max-width: 560px;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: white;
  border: 1px solid #dbe3e8;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card .num {
  font-size: 3.3rem;
  line-height: 1;
  color: #dce4e8;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.service-card h3 {
  font-size: 1.35rem;
  margin: 34px 0 12px;
}
.service-card p {
  color: var(--muted);
  margin: 0;
}
.fleet-strip {
  background: var(--navy);
  color: white;
  padding: 90px 0;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.vehicle-card {
  background: #102b40;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.vehicle-image {
  height: 220px;
  background: linear-gradient(145deg, #24445d, #102537);
  display: grid;
  place-items: center;
  color: #b8c6d0;
  font-weight: 800;
}
.vehicle-card .content {
  padding: 24px;
}
.vehicle-modal-trigger {
  appearance: none;
  width: 100%;
  padding: 0;
  background: white;
  color: var(--ink);
  border-color: #dbe3e8;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.vehicle-modal-trigger:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.vehicle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
}
.vehicle-summary h3 {
  margin: 0;
}
.expand-label {
  color: #9a5c00;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}
.vehicle-modal {
  width: min(920px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}
.vehicle-modal::backdrop {
  background: rgba(2, 10, 17, 0.78);
  backdrop-filter: blur(5px);
}
.vehicle-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.vehicle-modal-image {
  height: 100%;
  min-height: 480px;
  padding: 28px;
  text-align: center;
}
.vehicle-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 44px;
}
.vehicle-modal-content h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.vehicle-modal-description {
  color: var(--muted);
}
.vehicle-modal-tags {
  margin: 12px 0 30px;
}
.vehicle-modal-tags .tag {
  background: var(--sky);
}
.vehicle-modal-content .btn {
  align-self: flex-start;
}
.vehicle-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.vehicle-card p {
  color: #b8c6d0;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 750;
}
.docs-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.doc-list {
  display: grid;
  gap: 12px;
}
.doc-card {
  background: white;
  border: 1px solid #d9e2e7;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.doc-icon {
  width: 50px;
  height: 58px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.doc-card span {
  color: var(--muted);
  font-size: 0.9rem;
}
.cta {
  padding: 0 0 100px;
}
.cta-box {
  background: var(--amber);
  border-radius: 30px;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 10px;
}
.page-hero {
  background: var(--navy);
  color: white;
  padding: 88px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(245, 166, 35, 0.08);
  border-radius: 50%;
  right: -120px;
  top: -250px;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 18px;
}
.page-hero p {
  color: #c8d4dd;
  font-size: 1.1rem;
  max-width: 690px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 26px;
  border-top: 3px solid #cbd6dc;
  position: relative;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -19px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--amber);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.step h3 {
  margin-top: 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
  align-items: start;
}
.contact-panel {
  background: var(--navy);
  color: white;
  border-radius: 24px;
  padding: 34px;
  position: sticky;
  top: 110px;
}
.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child {
  border: 0;
}
.contact-item span {
  color: #aebdca;
  display: block;
  font-size: 0.85rem;
  margin-bottom: 5px;
}
.form-card {
  background: white;
  border: 1px solid #dce4e9;
  border-radius: 24px;
  padding: 36px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 800;
  font-size: 0.9rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #cbd6dc;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fbfcfd;
  color: var(--ink);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.notice {
  background: #fff7e5;
  border-left: 4px solid var(--amber);
  padding: 16px 18px;
  border-radius: 8px;
  color: #665224;
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.form-success {
  display: none;
  background: #e8f6ed;
  color: #205c34;
  border-radius: 12px;
  padding: 14px;
  margin-top: 16px;
  font-weight: 700;
}
.footer {
  background: #050e16;
  color: #c2ced7;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 50px;
}
.footer h4 {
  color: white;
}
.footer a {
  display: block;
  margin: 8px 0;
  color: #c2ced7;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #8799a6;
  font-size: 0.85rem;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid #dce4e9;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .topbar {
    display: none;
  }
  .hero-grid,
  .split,
  .docs-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 60px 0 80px;
    gap: 40px;
  }
  .route-card {
    transform: none;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid #dce4e9;
  }
  .service-grid,
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-stack {
    min-height: 420px;
  }
  .section {
    padding: 75px 0;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .contact-panel {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  h1 {
    font-size: 2.65rem;
  }
  .brand span {
    font-size: 0.9rem;
  }
  .brand small {
    font-size: 0.58rem;
  }
  .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    padding: 42px 0 58px;
  }
  .hero-copy {
    display: contents;
  }
  .hero-copy > .eyebrow {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .hero-copy > h1 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 8px 0 16px;
  }
  .hero-copy > p {
    grid-column: 1;
    grid-row: 3;
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0;
  }
  .hero-actions {
    grid-column: 1;
    grid-row: 4;
    align-content: start;
    margin-top: 0;
  }
  .route-card {
    grid-column: 2;
    grid-row: 3 / 5;
    padding: 9px;
    border-radius: 18px;
  }
  .route-card::before {
    inset: 6px;
    border-radius: 13px;
  }
  .map-placeholder {
    min-height: 255px;
    padding: 16px 12px;
    border-radius: 13px;
  }
  .map-placeholder .road {
    height: 58px;
  }
  .pin b {
    font-size: 0.78rem;
  }
  .pin span {
    display: block;
    font-size: 0.66rem;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.72rem;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat {
    padding: 16px 8px;
    border-right: 1px solid #dce4e9;
    border-bottom: 0;
    text-align: center;
  }
  .stat:last-child {
    border-right: 0;
  }
  .stat strong {
    font-size: 0.83rem;
    line-height: 1.2;
  }
  .stat span {
    display: block;
    margin-top: 5px;
    font-size: 0.64rem;
    line-height: 1.35;
  }
  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .check-list li {
    padding: 11px 9px;
    font-size: 0.75rem;
  }
  .service-grid,
  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .service-card {
    min-height: 0;
    padding: 13px 9px;
    border-radius: 13px;
  }
  .service-card .num {
    font-size: 1.7rem;
  }
  .service-card h3 {
    margin: 15px 0 7px;
    font-size: 0.78rem;
  }
  .service-card p {
    font-size: 0.65rem;
    line-height: 1.4;
  }
  .vehicle-card {
    border-radius: 13px;
  }
  .vehicle-image {
    height: 104px;
    padding: 8px;
    font-size: 0.68rem;
    text-align: center;
  }
  .vehicle-card .content {
    padding: 11px 9px;
  }
  .vehicle-card .content h3 {
    font-size: 0.78rem;
    margin-bottom: 7px;
  }
  .vehicle-card .content p {
    font-size: 0.64rem;
    line-height: 1.4;
  }
  .tags {
    gap: 4px;
  }
  .tag {
    padding: 4px 6px;
    font-size: 0.56rem;
  }
  .vehicle-summary {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 8px;
    gap: 5px;
  }
  .vehicle-summary h3 {
    font-size: 0.76rem;
  }
  .expand-label {
    font-size: 0.6rem;
  }
  .vehicle-modal {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    overflow: auto;
    border-radius: 20px;
  }
  .vehicle-modal-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .vehicle-modal-image {
    height: 210px;
    min-height: 210px;
    font-size: 0.85rem;
  }
  .vehicle-modal-content {
    padding: 28px 22px 24px;
  }
  .vehicle-modal-content h2 {
    font-size: 1.8rem;
  }
  .vehicle-modal-description {
    font-size: 0.82rem;
  }
  .vehicle-modal-content .btn {
    width: 100%;
  }
  .vehicle-modal-close {
    top: 10px;
    right: 10px;
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .step {
    padding: 22px 12px 14px;
  }
  .step h3 {
    font-size: 0.86rem;
  }
  .step p {
    font-size: 0.68rem;
  }
  .doc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .doc-card {
    align-items: flex-start;
    padding: 12px;
    gap: 9px;
    border-radius: 13px;
  }
  .doc-icon {
    width: 38px;
    height: 43px;
    font-size: 0.7rem;
  }
  .doc-card strong {
    display: block;
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .photo-stack {
    min-height: 360px;
  }
  .photo-main {
    right: 4%;
    bottom: 15%;
  }
  .photo-small {
    width: 55%;
    height: 38%;
  }
  .cta-box {
    padding: 34px 24px;
  }
  .form-card {
    padding: 24px 18px;
  }
  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
}
