:root {
  --ink: #464858;
  --ink-deep: #333542;
  --ink-soft: #6b7280;
  --brand: #4bb8fa;
  --brand-deep: #2aa4f0;
  --brand-dark: #0c6fa8;
  --line: #e7e9ee;

  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font: "Roboto", "Segoe UI", system-ui, sans-serif;
  --gutter: clamp(16px, 3vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(clamp(12px, 2vw, 20px) * 2 + 96px);
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;

  background-color: #ffffff;
  background-image: url("img/Hero-Bg.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 3px;
  border-radius: 8px;
}

.navbar {
  position: sticky;
  top: clamp(12px, 2vw, 20px);
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);

  width: min(100% - 2 * var(--gutter), 1240px);
  margin: clamp(12px, 2vw, 20px) auto 0;
  padding: 10px 10px 10px 16px;

  border-radius: 15px;
  background: rgb(232 244 253 / 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 1px 2px rgb(12 111 168 / 0.08),
    0 18px 40px -24px rgb(12 111 168 / 0.5);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.navbar.is-scrolled {
  border-color: rgb(75 184 250 / 0.55);
  background: rgb(222 240 253 / 0.96);
  box-shadow:
    0 1px 2px rgb(12 111 168 / 0.12),
    0 22px 50px -26px rgb(12 111 168 / 0.65);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.navbar__brand img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.navbar__brand span {
  display: block;
  line-height: 1.05;
}

.navbar__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar__brand small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.navbar__links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 30px);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-soft);
}

.navbar__links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.navbar__links a:hover {
  color: var(--brand-dark);
}

.navbar__links a:hover::after,
.navbar__links .is-active::after {
  transform: scaleX(1);
}

.navbar__links .is-active {
  color: var(--brand-dark);
  font-weight: 600;
}

.navbar__call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;

  border: 1px solid transparent;
  border-radius: 15px;
  background: var(--brand);
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.navbar__call:hover {
  border-color: var(--brand);
  background: #ffffff;
  color: var(--brand-dark);
  box-shadow: 0 10px 24px -16px rgb(12 111 168 / 0.9);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 140px);

  padding: clamp(56px, 9vh, 110px) var(--gutter) 80px clamp(24px, 8vw, 140px);
}

.hero__copy {
  max-width: 640px;
}

.hero__art {
  display: none;
}

.hero__eyebrow {
  margin: 0 0 1px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__title {
  margin: 0 0 20px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;

  color: var(--brand-dark);
}

.hero__lede {
  margin: 0 0 34px;
  max-width: 46ch;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.9;
  color: var(--ink-soft);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 15px 32px;
  border-radius: 15px;
  background: var(--brand);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 16px 34px -18px rgb(12 111 168 / 0.85);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hero__cta:hover {
  background: var(--brand-dark);
  box-shadow: 0 20px 40px -16px rgb(12 111 168 / 0.95);
  transform: translateY(-2px);
}

@media (min-width: 481px) {
  .hero__cta {
    margin-top: 32px;
  }
}

.assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: fit-content;
  max-width: 100%;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurances li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgb(255 255 255 / 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px -20px rgb(70 72 88 / 0.55);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.assurances li:hover {
  transform: translateY(-3px);
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #ffffff;
  box-shadow: 0 16px 30px -18px rgb(12 111 168 / 0.85);
}

.assurances svg {
  flex: none;
  color: var(--brand);
  transition: color 0.2s ease;
}

.assurances li:hover svg {
  color: #ffffff;
}

@media (max-width: 480px) {
  .hero__eyebrow,
  .assurances {
    display: none;
  }

  .hero__title {
    text-align: center;
    transform: translateX(-10px);
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: fit-content;
  max-width: 100%;
  gap: 12px;
  margin: 24px 0 0;
}

.stats__item {
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background-color: rgb(255 255 255 / 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px -20px rgb(70 72 88 / 0.55);

  background-image: linear-gradient(
    to top,
    rgb(75 184 250 / 0.22),
    rgb(75 184 250 / 0.06)
  );
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 0;
  transition:
    background-size 0.4s cubic-bezier(0.22, 0.8, 0.3, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.stats__item:hover {
  background-size: 100% 100%;
  border-color: var(--brand);
  box-shadow: 0 14px 30px -22px rgb(12 111 168 / 0.7);
}

.stats dt {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
  transition: color 0.25s ease;
}

.stats__item:hover dt {
  color: var(--brand-deep);
}

.stats dd {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.about::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(75 184 250 / 0.22) 0%,
    rgb(75 184 250 / 0) 68%
  );
  pointer-events: none;
}

.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 52px) var(--gutter) clamp(56px, 8vw, 104px);
}

.about__eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: clamp(20px, 3vw, 34px) var(--gutter) 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.about__eyebrow::before,
.about__eyebrow::after {
  content: "";
  width: clamp(24px, 5vw, 52px);
  height: 2px;
  background: var(--brand);
}

.about__copy {
  position: relative;
  padding-left: clamp(20px, 2.5vw, 34px);
}

.about__copy::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    var(--brand) 0%,
    rgb(75 184 250 / 0) 100%
  );
}

.about__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.about__title span {
  color: var(--brand-deep);
}

.about__lead {
  margin: 0 0 20px;
  max-width: 52ch;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
}

.about__lead strong {
  font-weight: 600;
  color: var(--brand-dark);
}

.about__text {
  margin: 0 0 30px;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.about__cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  border: 2px solid var(--brand-deep);
  border-radius: 10px;
  background: transparent;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  transition:
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.about__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--brand-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.about__cta:hover {
  color: #ffffff;
  box-shadow: 0 12px 26px -16px rgb(12 111 168 / 0.9);
}

.about__cta:hover::before {
  transform: scaleX(1);
}

.about__media {
  position: relative;
  margin: 0;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border-radius: 16px;
  background: rgb(75 184 250 / 0.35);
}

.about__media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 26px 50px -30px rgb(12 111 168 / 0.75);
}

.about.js-reveal .about__eyebrow,
.about.js-reveal .about__title,
.about.js-reveal .about__lead,
.about.js-reveal .about__text,
.about.js-reveal .about__cta {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 0.8, 0.3, 1),
    transform 1.1s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.about.js-reveal .about__media {
  opacity: 0;
  transform: translateX(48px) scale(0.96);
  transition:
    opacity 1.2s cubic-bezier(0.22, 0.8, 0.3, 1),
    transform 1.2s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.about.is-revealed .about__eyebrow,
.about.is-revealed .about__title,
.about.is-revealed .about__lead,
.about.is-revealed .about__text,
.about.is-revealed .about__cta,
.about.is-revealed .about__media {
  opacity: 1;
  transform: none;
}

.about.is-revealed .about__title {
  transition-delay: 0.18s;
}

.about.is-revealed .about__media {
  transition-delay: 0.28s;
}

.about.is-revealed .about__lead {
  transition-delay: 0.34s;
}

.about.is-revealed .about__text {
  transition-delay: 0.5s;
}

.about.is-revealed .about__cta {
  transition-delay: 0.66s;
}

.js-reveal .section__title,
.js-reveal .service,
.js-reveal .why__item,
.js-reveal .contact__info,
.js-reveal .contact__map {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s cubic-bezier(0.22, 0.8, 0.3, 1),
    transform 1s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.is-revealed .section__title,
.is-revealed .service,
.is-revealed .why__item,
.is-revealed .contact__info,
.is-revealed .contact__map {
  opacity: 1;
  transform: none;
}

.is-revealed .contact__map {
  transition-delay: 0.16s;
}

.is-revealed .service:nth-child(1),
.is-revealed .why__item:nth-child(1) {
  transition-delay: 0.14s;
}

.is-revealed .service:nth-child(2),
.is-revealed .why__item:nth-child(2) {
  transition-delay: 0.26s;
}

.is-revealed .service:nth-child(3),
.is-revealed .why__item:nth-child(3) {
  transition-delay: 0.38s;
}

.is-revealed .service:nth-child(4),
.is-revealed .why__item:nth-child(4) {
  transition-delay: 0.5s;
}

.section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-dark);
}

.section__title::before,
.section__title::after {
  content: "";
  width: clamp(24px, 5vw, 52px);
  height: 2px;
  background: var(--brand);
}

.services {
  background: #ffffff;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}

.services__grid,
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  width: min(100%, 1240px);
  margin-inline: auto;
}

.service {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 2.6vw, 34px) clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  text-align: left;
  transition:
    transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    var(--brand-deep) 0%,
    var(--brand-dark) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgb(75 184 250 / 0.16);
  transition:
    transform 0.4s cubic-bezier(0.22, 0.8, 0.3, 1),
    background-color 0.3s ease;
}

.service > * {
  position: relative;
  z-index: 1;
}

.service__Logo {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-deep);
  transition: color 0.3s ease;
}

.service h4 {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.service h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  transition:
    width 0.35s cubic-bezier(0.22, 0.8, 0.3, 1),
    background-color 0.3s ease;
}

.service p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.service:hover h4::after {
  width: 56px;
  background: #ffffff;
}

.service:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 26px 44px -28px rgb(12 111 168 / 0.95);
}

.service:hover::before {
  opacity: 1;
}

.service:hover::after {
  transform: scale(2.6);
  background: rgb(255 255 255 / 0.12);
}

.service:hover .service__Logo,
.service:hover h4 {
  color: #ffffff;
}

.service:hover p {
  color: rgb(255 255 255 / 0.88);
}

.fleet {
  background: #ffffff;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
  width: min(100%, 1240px);
  margin-inline: auto;
}

.fleet__grid > .fleet__card:last-child {
  grid-column: 2;
}

.fleet__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px -20px rgb(70 72 88 / 0.55);
  transition:
    transform 0.35s cubic-bezier(0.22, 0.8, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.fleet__card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 26px 44px -28px rgb(12 111 168 / 0.65);
}

.fleet__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--line);
}

.fleet__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.fleet__card:hover .fleet__media img {
  transform: scale(1.08);
}

.fleet__number {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow:
    0 14px 26px -10px rgb(12 111 168 / 0.85),
    inset 0 0 0 1px rgb(255 255 255 / 0.25);
}

.fleet__seats {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 18px -12px rgb(20 20 30 / 0.4);
}

.fleet__seats-Logo {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #ffffff;
}

.fleet__seats-Logo svg {
  width: 10px;
  height: 10px;
}

.fleet__body {
  padding: 18px 20px 22px;
}

.fleet__eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fleet__body h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.fleet__desc {
  margin: 10px 0 4px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.fleet__pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed var(--line);
  list-style: none;
}

.fleet__pricing li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
}

.fleet__pricing span {
  color: var(--ink-soft);
}

.fleet__pricing strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-dark);
  white-space: nowrap;
}

.fleet__pricing strong em {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 500;
  font-style: normal;
  color: var(--ink-soft);
}

.fleet__note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgb(75 184 250 / 0.08);
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.fleet__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--brand);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fleet__contact:hover {
  background: var(--brand-dark);
  box-shadow: 0 12px 24px -14px rgb(12 111 168 / 0.85);
  transform: translateY(-2px);
}

.why {
  background: #ffffff;
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(56px, 8vw, 100px);
}

.why__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3.2vw, 44px) clamp(22px, 3vw, 40px);
  width: min(100%, 1020px);
}

.why__item {
  position: relative;
  padding: 30px 30px 30px 78px;
  border-radius: 0 18px 18px 0;
  border-left: 3px solid rgb(75 184 250 / 0.45);
  background: linear-gradient(
    90deg,
    rgb(75 184 250 / 0.08) 0%,
    rgb(75 184 250 / 0) 60%
  );
  text-align: left;
  transition:
    border-color 0.3s ease,
    background 0.35s ease,
    transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.why__item:hover {
  transform: translateX(6px);
  border-left-color: var(--brand-deep);
  background: linear-gradient(
    90deg,
    rgb(75 184 250 / 0.18) 0%,
    rgb(75 184 250 / 0) 70%
  );
}

.why__Logo {
  position: absolute;
  top: 28px;
  left: -21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px -14px rgb(12 111 168 / 0.95);
  transform: rotate(45deg);
  transition: transform 0.45s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.why__Logo svg {
  width: 22px;
  height: 22px;
  transform: rotate(-45deg);
}

.why__item:hover .why__Logo {
  transform: rotate(135deg);
}

.why__item:hover .why__Logo svg {
  transform: rotate(-135deg);
  transition: transform 0.45s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.why__item h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.why__item:hover h4 {
  color: var(--brand-dark);
}

.why__item p {
  margin: 0;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.contact {
  background: #ffffff;
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(64px, 9vw, 110px);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  width: min(100%, 1240px);
  margin-inline: auto;
}

.contact__heading {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__Logo {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px -14px rgb(12 111 168 / 0.85);
  transition: transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.contact__item:hover .contact__Logo {
  transform: translateY(-3px) scale(1.05);
}

.contact__text {
  padding-top: 4px;
}

.contact__label {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.contact__text a {
  font-size: 16px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.contact__address {
  margin: 0;
  max-width: 32ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.contact__map {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 26px 50px -30px rgb(12 111 168 / 0.45);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

@media (max-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__map {
    order: 2;
    min-height: 300px;
  }
}

.legal {
  background: #ffffff;
}

.legal__hero {
  padding: clamp(140px, 18vh, 190px) var(--gutter) clamp(40px, 6vw, 64px);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgb(232 244 253 / 0.8) 0%,
    rgb(255 255 255 / 0) 100%
  );
}

.legal__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.legal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.legal__updated {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.legal__content {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 8vw, 100px);
}

.legal__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal__section {
  display: flex;
  gap: 18px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  transition:
    transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.legal__section:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 26px 44px -30px rgb(12 111 168 / 0.4);
}

.legal__Logo {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(155deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px -14px rgb(12 111 168 / 0.75);
}

.legal__body {
  min-width: 0;
}

.legal__section h2 {
  margin: 4px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal__section p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.legal__section p:last-child {
  margin-bottom: 0;
}

.legal__section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.legal__section li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.75;
}

.legal__section li:last-child {
  margin-bottom: 0;
}

.legal__section a {
  color: var(--brand-dark);
  font-weight: 600;
  transition: color 0.2s ease;
}

.legal__section a:hover {
  color: var(--brand-deep);
}

@media (max-width: 560px) {
  .legal__section {
    flex-direction: column;
    gap: 12px;
  }
}

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--ink-deep) 0%,
    var(--brand-dark) 130%
  );
  color: rgb(255 255 255 / 0.75);
}

.footer__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.footer__glow--a {
  top: -160px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: rgb(75 184 250 / 0.16);
}

.footer__glow--b {
  bottom: -180px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgb(75 184 250 / 0.1);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 88px) var(--gutter) clamp(40px, 5vw, 56px);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer__logo img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.8, 0.3, 1),
    filter 0.35s ease;
}

.footer__logo:hover img {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 8px 18px rgb(75 184 250 / 0.55));
}

.footer__logo span {
  display: block;
  line-height: 1.1;
}

.footer__logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer__logo small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.6);
}

.footer__about {
  margin: 0 0 18px;
  max-width: 34ch;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgb(255 255 255 / 0.65);
}

.footer__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.footer__location svg {
  flex: none;
  color: var(--brand);
}

.footer__col h5 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer__col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__col a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14.5px;
  color: rgb(255 255 255 / 0.7);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer__col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer__contact-Logo {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.12);
  color: #ffffff;
  box-shadow: 0 0 0 0 rgb(75 184 250 / 0);
  transition:
    transform 0.25s cubic-bezier(0.22, 0.8, 0.3, 1),
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer__contact a:hover .footer__contact-Logo {
  transform: translateY(-3px) scale(1.08);
  background: var(--brand);
  box-shadow: 0 10px 20px -8px rgb(75 184 250 / 0.75);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: 22px var(--gutter) clamp(28px, 4vw, 40px);
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-size: 13.5px;
  color: rgb(255 255 255 / 0.6);
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgb(255 255 255 / 0.6);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #ffffff;
}

.footer__credit {
  margin: 0;
  color: rgb(255 255 255 / 0.6);
}

.footer__credit-brand {
  display: inline-block;
  font-weight: 600;
  color: inherit;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer__credit:hover .footer__credit-brand {
  color: #00880c;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__credit {
    margin-left: 0;
  }
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

.navbar {
  animation: drop-in 0.7s cubic-bezier(0.22, 0.8, 0.3, 1) backwards;
}

body {
  animation: fade-in 0.9s ease backwards;
}

.hero__eyebrow,
.hero__title,
.hero__lede,
.assurances li,
.stats__item {
  animation: rise-in 0.75s cubic-bezier(0.22, 0.8, 0.3, 1) backwards;
}

.hero__eyebrow {
  animation-delay: 0.14s;
}

.hero__title {
  animation-delay: 0.22s;
}

.hero__lede {
  animation-delay: 0.32s;
}

.assurances li:nth-child(1) {
  animation-delay: 0.42s;
}

.assurances li:nth-child(2) {
  animation-delay: 0.5s;
}

.assurances li:nth-child(3) {
  animation-delay: 0.58s;
}

.stats__item:nth-child(1) {
  animation-delay: 0.68s;
}

.stats__item:nth-child(2) {
  animation-delay: 0.76s;
}

.stats__item:nth-child(3) {
  animation-delay: 0.84s;
}

@media (max-width: 900px) {
  .navbar {
    display: flex;
    flex-wrap: wrap;
    border-radius: 26px;
    padding-inline: 16px;
  }

  .navbar__brand {
    margin-right: auto;
  }

  .navbar__toggle {
    display: flex;
    order: 2;
  }

  .navbar__call {
    display: none;
    order: 5;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .navbar.is-open .navbar__call {
    display: inline-flex;
  }

  .navbar__links {
    order: 4;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 8px;
    padding-top: 4px;
    border-top: 1px solid var(--line);
  }

  .navbar__links[hidden] {
    display: none;
  }

  .navbar__links a {
    padding: 12px 4px;
  }

  .navbar__links a::after {
    bottom: 6px;
    width: 34px;
    transform-origin: left;
  }

  .navbar__links a + a {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 1100px) {
  body {
    background-image: none;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding-bottom: 48px;
  }

  .hero__art {
    display: block;
    width: min(100%, 620px);
    height: auto;
    margin: 36px auto 0;
  }

  .hero__lede br {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__media {
    order: 2;
    width: min(100%, 560px);
  }

  .about__media::before {
    inset: 18px -18px -18px 18px;
  }
}

@media (max-width: 900px) {
  .services__grid,
  .fleet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet__grid > .fleet__card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .why__grid {
    gap: clamp(24px, 4vw, 34px);
  }
}

@media (max-width: 620px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services__grid,
  .fleet__grid {
    grid-template-columns: 1fr;
  }

  .navbar__brand span {
    display: none;
  }
}

@media (max-width: 620px) {
  .stats {
    --gap: 12px;

    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }

  .stats__item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - var(--gap)) / 2);
  }
}

@media (max-width: 560px) {
  .stats {
    --gap: clamp(6px, 2.2vw, 12px);

    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
  }

  .stats__item {
    padding: clamp(8px, 3vw, 18px) clamp(6px, 2.6vw, 18px);
  }

  .stats dt {
    font-size: clamp(15px, 5.6vw, 28px);
  }

  .stats dd {
    font-size: clamp(8px, 2.4vw, 12px);
    letter-spacing: clamp(0.04em, 0.5vw, 0.14em);
  }
}

@media (max-width: 360px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stats__item:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }

  .stats__item {
    padding: 14px 16px;
  }

  .stats dt {
    font-size: 24px;
  }

  .stats dd {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;

    animation: none !important;
  }
}
