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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  font-family: "Fira Sans", system-ui, sans-serif;
  color: #181818;
  background: #ebebeb;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 1920px;
  margin-inline: auto;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid #2693d1;
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 820px) {
  .container {
    padding-inline: 24px;
  }
}
@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }
}

.eyebrow {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-size: clamp(13px, 1.04vw, 20px);
  color: #242424;
  letter-spacing: 0.2px;
}

.section-title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 1.875vw, 36px);
  line-height: 1.3;
  color: #141414;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: #0673c7;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.3px;
  padding: 12px 26px;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn:hover {
  background: #0560ad;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav {
  position: relative;
  pointer-events: auto;
  width: max-content;
  max-width: calc(100% - 48px);
  min-width: 0;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 32px rgba(8, 40, 70, 0.12);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.nav__bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-inline: 28px;
  height: 69px;
}
@media (max-width: 1100px) {
  .nav__bar {
    gap: 20px;
    padding-inline: 20px;
  }
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 26px;
}
.nav__links a {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-size: 16px;
  color: #a8a8a8;
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
}
.nav__links a:hover {
  color: #181818;
}
.nav__links a[aria-current=page] {
  color: #181818;
}
@media (max-width: 1100px) {
  .nav__links {
    gap: 16px;
  }
  .nav__links a {
    font-size: 15px;
  }
}

.nav__item--mega {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.mega {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (max-width: 820px) {
  .mega {
    display: none;
  }
}

.nav--has-mega:has(.nav__item--mega:hover) .mega,
.nav--has-mega:has(.nav__item--mega:focus-within) .mega,
.nav--has-mega:has(.mega:hover) .mega {
  grid-template-rows: 1fr;
}

.mega__panel {
  overflow: hidden;
  min-height: 0;
}

.mega__inner {
  display: flex;
  gap: 24px;
  height: min(52vh, 440px);
  padding: 28px;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.06s;
}
.nav--has-mega:has(.nav__item--mega:hover) .mega__inner, .nav--has-mega:has(.nav__item--mega:focus-within) .mega__inner, .nav--has-mega:has(.mega:hover) .mega__inner {
  opacity: 1;
}

.mega__stage {
  position: relative;
  flex: 1 1 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #10202e;
}

.mega-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.mega-slide__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 22, 40, 0.82) 0%, rgba(4, 22, 40, 0.3) 40%, rgba(4, 22, 40, 0) 66%);
}
.mega-slide__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.6vw, 44px);
  color: #ffffff;
}
.mega-slide__name {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 44px);
  line-height: 1;
}
.mega-slide__name span {
  font-weight: 400;
  margin-inline-start: 10px;
}
.mega-slide__cat {
  margin-top: 8px;
  font-size: clamp(13px, 1.1vw, 16px);
  opacity: 0.92;
}
.mega-slide__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  border-radius: 999px;
  background: #ffffff;
  color: #0673c7;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-slide__btn:hover {
  background: #0673c7;
  color: #ffffff;
  transform: translateY(-1px);
}

.mega__rail {
  flex: 0 0 auto;
  align-self: stretch;
  width: 3px;
  margin-inline: 8px 2px;
  border-radius: 3px;
  background: rgba(8, 40, 70, 0.14);
  display: flex;
  flex-direction: column;
}

.mega__seg {
  flex: 1;
  position: relative;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.mega__seg.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: #0673c7;
}

.nav__lang {
  position: relative;
  flex-shrink: 0;
}

.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: #0673c7;
  color: #fff;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 999px;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
}
.nav__lang-btn:hover {
  background: #0560ad;
}
.nav__lang-btn svg {
  flex-shrink: 0;
}

.nav__lang-arrow {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav__lang[data-open] .nav__lang-arrow {
  transform: rotate(180deg);
}

.nav__lang-menu {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(8, 40, 70, 0.14);
  padding: 6px 0;
  min-width: 80px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 10;
}
.nav__lang[data-open] .nav__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__lang-menu li {
  padding: 8px 16px;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-size: 14px;
  color: #a8a8a8;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav__lang-menu li:hover {
  color: #181818;
  background: #ebebeb;
}
.nav__lang-menu li.is-active {
  color: #0673c7;
  font-weight: 500;
}

.nav__toggle {
  display: none;
}

.nav__mlang {
  display: none;
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
  }
  .nav {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
  .nav__links {
    position: absolute;
    inset-block-start: 69px;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 32px rgba(8, 40, 70, 0.12);
    padding: 10px 22px 18px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 20;
  }
  .nav__links a {
    padding: 10px 0;
    font-size: 16px;
  }
  .nav[data-open=true] .nav__links {
    transform: scaleY(1);
    opacity: 1;
  }
  .nav__item--mega {
    display: list-item;
    align-self: auto;
    align-items: initial;
  }
  .nav__lang {
    display: none;
  }
  .nav__mlang {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid #9c9c9c;
  }
  .nav__mlang .nav__mlang-opt {
    flex: 0 0 auto;
    padding: 7px 16px;
    border-radius: 999px;
    background: #d9d9d9;
    font-family: "Fira Sans", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #a8a8a8;
    transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav__mlang .nav__mlang-opt.is-active {
    background: #0673c7;
    color: #fff;
  }
  .nav__toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    margin-inline-start: auto;
  }
  .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #181818;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav__toggle span {
    position: relative;
  }
  .nav__toggle span::before {
    position: absolute;
    inset-block-start: -7px;
  }
  .nav__toggle span::after {
    position: absolute;
    inset-block-start: 7px;
  }
  .nav__icon {
    display: none;
  }
}
.footer {
  position: relative;
  background: #ffffff;
  border-top: 1px solid #9c9c9c;
  padding: 64px 0 40px;
  overflow: hidden;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  position: relative;
  z-index: 2;
  max-width: 65%;
}
@media (max-width: 1100px) {
  .footer__inner {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer__col h4 {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #181818;
  margin-bottom: 18px;
}

.footer__col li + li {
  margin-top: 10px;
}

.footer__col a,
.footer__col p {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #181818;
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer__col a:hover {
  color: #0673c7;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social a {
  display: grid;
  place-items: center;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.footer__social a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.footer__social a img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer__deco {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 820px) {
  .footer__deco {
    display: none;
  }
}

.footer__bottom {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.footer__logo {
  height: 34px;
  width: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  min-height: 420px;
  background: #ebebeb;
}
.hero.is-dragging {
  cursor: grabbing;
}
@media (max-width: 820px) {
  .hero {
    min-height: 0;
  }
}

.hero__slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.hero__slide {
  flex: 0 0 100%;
  width: 100%;
}
.hero__slide img,
.hero__slide video {
  display: block;
  width: 100%;
  height: auto;
}

.hero__scrim {
  display: none;
}

.hero__inner {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 2;
  padding-block: 0 96px;
  color: #fff;
}

.hero__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 3.96vw, 76px);
  line-height: 1.1;
}

.hero__sub {
  margin-top: 26px;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.46vw, 28px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.fleet {
  padding-block: clamp(48px, 6vw, 88px) 0;
  overflow: hidden;
}
.fleet > .container {
  max-width: 1200px;
}

.fleet__meta {
  margin-bottom: clamp(24px, 4vw, 48px);
}

.fleet__count {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 4.43vw, 85px);
  letter-spacing: -2px;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.fleet__count .fleet__num {
  color: #2693d1;
}
.fleet__count .fleet__den {
  color: #076093;
  font-size: 0.66em;
}

.fleet__lede {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.25vw, 24px);
  line-height: 1.35;
  margin-bottom: 16px;
  max-width: 66.6667%;
}
@media (max-width: 820px) {
  .fleet__lede {
    max-width: 100%;
  }
}

.fleet__body {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.04vw, 20px);
  line-height: 1.55;
  color: #1c1c1c;
  max-width: 66.6667%;
  text-align: left;
}
@media (max-width: 820px) {
  .fleet__body {
    max-width: 100%;
  }
}

.fleet__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.fleet__slider.is-dragging {
  cursor: grabbing;
}

.fleet__zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 3;
  cursor: pointer;
}
.fleet__zone--prev {
  left: 0;
}
.fleet__zone--next {
  right: 0;
}

.fleet__track {
  display: flex;
  gap: clamp(40px, 4.7vw, 90px);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.fleet__slide {
  flex: 0 0 auto;
  position: relative;
}
.fleet__slide img {
  display: block;
  height: clamp(170px, 15.6vw, 300px);
  width: auto;
  max-width: none;
}
@media (max-width: 820px) {
  .fleet__slide img {
    width: 90vw;
    height: auto;
  }
}

.fleet__text {
  padding-block: clamp(14px, 2.2vw, 28px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.home-bg {
  position: relative;
  padding-bottom: clamp(380px, 44vw, 800px);
}
@media (max-width: 820px) {
  .home-bg {
    padding-bottom: 500px;
  }
}
.home-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #aacbe6 url("../assets/img/background-home-1.webp") bottom center/100% auto no-repeat;
}
@media (max-width: 820px) {
  .home-bg::before {
    background-size: cover;
    background-position: 68% bottom;
  }
}
.home-bg::before {
  -webkit-mask-image: linear-gradient(to bottom, transparent 38%, rgba(0, 0, 0, 0.35) 47%, rgba(0, 0, 0, 0.75) 52%, #000 56%);
  mask-image: linear-gradient(to bottom, transparent 38%, rgba(0, 0, 0, 0.35) 47%, rgba(0, 0, 0, 0.75) 52%, #000 56%);
  z-index: 0;
  pointer-events: none;
}
.home-bg > * {
  position: relative;
  z-index: 1;
}
.home-bg .fleet,
.home-bg .services,
.home-bg .stats,
.home-bg .advantages {
  background: transparent;
}

.services {
  padding-block: clamp(48px, 6vw, 88px);
}
.services > .container {
  max-width: 1200px;
}

.services__head {
  margin-bottom: 34px;
}
@media (max-width: 820px) {
  .services__head {
    padding-left: 0;
  }
}

.services__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.services__slider.is-dragging {
  cursor: grabbing;
}

.services__track {
  display: flex;
  gap: 20px;
  padding-inline: 40px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
@media (max-width: 820px) {
  .services__track {
    padding-inline: 24px;
  }
}
@media (max-width: 560px) {
  .services__track {
    padding-inline: 18px;
  }
}

.service-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 23vw, 443px);
  aspect-ratio: 443.36/291.45;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #16303f center/cover no-repeat;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 4%, rgba(0, 0, 0, 0) 46%);
  z-index: 1;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}
.service-card:hover img {
  transform: scale(1.06);
}
.service-card > span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 22px 22px;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.17vw, 22.5px);
  line-height: 1.25;
  letter-spacing: -0.4px;
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  display: flex;
  align-items: center;
  padding: clamp(20px, 2.2vw, 38px);
  background: rgba(255, 255, 255, 0.98);
  color: #2e2e2e;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.service-card__desc {
  width: 100%;
  text-align: left;
  font-weight: 300;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  overflow: hidden;
}
.service-card:hover .service-card__overlay, .service-card:focus-visible .service-card__overlay, .service-card.is-flipped .service-card__overlay {
  opacity: 1;
  visibility: visible;
}

.services__progress {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
  padding-inline: 18px;
}

.services__progress-track {
  position: relative;
  width: min(738px, 100%);
  height: 3px;
  background: #d9d9d9;
  overflow: hidden;
}

.services__progress-thumb {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 20%;
  background: #0673c7;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.stats {
  padding-block: clamp(48px, 6vw, 88px);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
}
@media (max-width: 820px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.stat:not(:first-child)::before {
  content: "";
  position: absolute;
  inset-inline-start: -12px;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: clamp(46px, 5.4vw, 104px);
  background: #064d75;
  pointer-events: none;
}
@media (max-width: 820px) {
  .stat:not(:first-child)::before {
    display: none;
  }
}
.stat__num {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(46px, 5.89vw, 113px);
  line-height: 1;
  color: #076093;
}
.stat__label {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-size: clamp(13px, 1.04vw, 20px);
  color: #242424;
}

.advantages {
  padding-block: clamp(48px, 6vw, 88px);
}
.advantages > .container {
  max-width: 1200px;
}

.advantages__head {
  margin-bottom: 30px;
}
@media (max-width: 820px) {
  .advantages__head {
    padding-left: 0;
  }
}

.adv-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.adv-slider.is-dragging {
  cursor: grabbing;
}

.adv-track {
  display: flex;
  gap: 40px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.adv-card {
  flex: 0 0 auto;
  width: clamp(280px, 23vw, 443px);
  opacity: 0.4;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.adv-card.is-active {
  opacity: 1;
}
.adv-card__media {
  aspect-ratio: 443.36/291.45;
  border-radius: 12px;
  overflow: hidden;
  background: #16303f center/cover no-repeat;
}
.adv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adv-card__title {
  margin-top: 18px;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.25vw, 24px);
  color: #000;
}

.adv-arrow {
  position: absolute;
  top: var(--adv-arrow-top, 40%);
  transform: translateY(-50%);
  z-index: 5;
  width: 70px;
  height: 48px;
  border: 1px solid #9c9c9c;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(8, 40, 70, 0.1);
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.adv-arrow:hover {
  background: #0673c7;
  color: #fff;
  border-color: #0673c7;
}
.adv-arrow svg {
  width: 26px;
  height: 26px;
}
.adv-arrow--prev {
  left: clamp(16px, 7vw, 140px);
}
.adv-arrow--next {
  right: clamp(16px, 7vw, 140px);
}
@media (max-width: 820px) {
  .adv-arrow {
    width: 48px;
    height: 34px;
  }
  .adv-arrow svg {
    width: 18px;
    height: 18px;
  }
}

.projects {
  position: relative;
  aspect-ratio: 1920/1315;
  min-height: 680px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: #181818;
}

.projects__bg {
  position: absolute;
  inset: 0;
  background: #ebebeb var(--img-projects-bg) center/cover no-repeat;
}

.projects__road-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.projects__road-art {
  width: 100%;
  height: 100%;
  background: var(--img-road-art) center bottom/100% auto no-repeat;
}

.projects__intro {
  position: absolute;
  left: 15.1%;
  top: 7.76%;
  width: 33.02%;
  z-index: 2;
}

.projects__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 48px);
  color: #0a4d80;
  white-space: nowrap;
}

.projects__lede {
  margin-top: clamp(12px, 1.35vw, 26px);
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(11px, 1.04vw, 20px);
  line-height: 1.55;
  color: #2e2e2e;
  text-align: left;
}

.projects__btn {
  margin-top: clamp(12px, 1.35vw, 26px);
}

.projects__roadmap {
  display: none;
}

.project-card {
  position: absolute;
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-radius: 6.6px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform-origin: center;
}
.project-card:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
.project-card__body {
  padding: clamp(8px, 1.46vw, 28px) clamp(6px, 1.09vw, 21px);
  color: #fff;
  border-radius: 6.6px 0 0 6.6px;
}
.project-card__name {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(9px, 0.857vw, 16.5px);
  letter-spacing: -0.01em;
  margin-bottom: 0.52vw;
  color: #fff;
}
.project-card__text {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(7px, 0.643vw, 12.4px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.project-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 6.6px 6.6px 0;
}
.project-card--shirvan {
  left: 14.01%;
  top: 40.68%;
  width: 19.94%;
  height: 11.87%;
  background: #2693d1;
}
.project-card--shirvan .project-card__body {
  background: #2693d1;
}
.project-card--murovdag {
  left: 48.75%;
  top: 24%;
  width: 19.94%;
  height: 11.87%;
  background: #076093;
}
.project-card--murovdag .project-card__body {
  background: #076093;
}
.project-card--bayraq {
  left: 76.35%;
  top: 58%;
  width: 19.94%;
  height: 11.87%;
  background: #064d75;
}
.project-card--bayraq .project-card__body {
  background: #064d75;
}
.project-card--zafar {
  left: 39.79%;
  top: 81%;
  width: 19.94%;
  height: 11.87%;
  background: #0c7bba;
}
.project-card--zafar .project-card__body {
  background: #0c7bba;
}

.pcon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.pcon[class*=-line] {
  width: 2px;
  background: #2693d1;
  transform: translateX(-50%);
}
.pcon[class*=-dot] {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #2693d1;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(38, 147, 209, 0.25);
}
.pcon--shirvan-line {
  left: 15%;
  top: 52.55%;
  height: 21.45%;
}
.pcon--shirvan-dot {
  left: 15%;
  top: 74%;
}
.pcon--murovdag-line {
  left: 67%;
  top: 35.87%;
  height: 9.53%;
}
.pcon--murovdag-dot {
  left: 67%;
  top: 45.4%;
}
.pcon--bayraq-dot {
  left: 77%;
  top: 35%;
}
.pcon--bayraq-line {
  left: 77%;
  top: 35%;
  height: 23%;
}
.pcon--zafar-dot {
  left: 41%;
  top: 68.2%;
}
.pcon--zafar-line {
  left: 41%;
  top: 69.4%;
  height: 11.6%;
}

@media (max-width: 820px) {
  .projects {
    aspect-ratio: auto;
    min-height: 0;
    padding-block: clamp(48px, 9vw, 72px);
  }
  .projects__road-wrap,
  .projects__roadmap,
  .pcon {
    display: none;
  }
  .projects__intro {
    position: relative;
    inset: auto;
    width: auto;
    padding-inline: 24px;
  }
  .projects__title {
    white-space: normal;
    font-size: clamp(24px, 5.6vw, 34px);
  }
  .projects__lede {
    font-size: 15px;
  }
  .project-card {
    position: relative;
    inset: auto;
    width: auto;
    margin: 20px 24px 0;
    grid-template-columns: 1.55fr 1fr;
    min-height: 128px;
  }
  .project-card__body {
    padding: 16px 16px;
  }
  .project-card__name {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .project-card__text {
    font-size: 12.5px;
    line-height: 1.5;
    -webkit-line-clamp: 5;
  }
}
.contact {
  position: relative;
  background: #0a1f2e var(--img-contact) center/cover no-repeat;
  color: #fff;
  padding-block: clamp(64px, 8vw, 120px);
  overflow: hidden;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(48deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 64%);
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
}

.contact__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.16;
  letter-spacing: -0.8px;
}

.contact__card {
  background: #fff;
  border-radius: 26px;
  padding: clamp(26px, 4vw, 44px);
  color: #181818;
  box-shadow: 0 18px 50px rgba(8, 40, 70, 0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full {
  grid-column: 1/-1;
}
.field label {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #181818;
}
.field input,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 16px;
  background: #d9d9d9;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 14px;
  color: #181818;
  transition: border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #8a8a8a;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: #2693d1;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}

.phone-input {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  background: #d9d9d9;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.phone-input:focus-within {
  border-color: #2693d1;
  background: #fff;
}
.phone-input .phone-input__cc {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0 28px 0 12px;
  font: inherit;
  font-size: 14px;
  color: #181818;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>") no-repeat right 9px center;
  margin: 5px;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
}
.phone-input .phone-input__cc:focus {
  outline: none;
}
.phone-input input {
  background: transparent;
  border: 0;
  flex: 1;
}
.phone-input input:focus {
  background: transparent;
}

.contact__submit {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.contact__submit .btn {
  padding: 12px 34px;
}

.form__success {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #e7f6ec;
  border: 1px solid #b6e0c4;
  color: #1c7a3f;
  font-size: 15px;
}

.field__error {
  color: #d64545;
  font-size: 13px;
}

.iti {
  width: 100%;
  display: block;
}
.iti input {
  width: 100%;
  box-sizing: border-box;
}
.iti__selected-flag {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.iti--separate-dial-code .iti__selected-flag {
  background: rgba(0, 0, 0, 0.05);
}

.scrolltop {
  position: fixed;
  inset-block-end: 28px;
  inset-inline-end: max(22px, (100vw - 1920px) / 2 + 22px);
  z-index: 40;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: #2693d1;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(8, 40, 70, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.scrolltop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scrolltop:hover {
  background: #0560ad;
}
.scrolltop svg {
  width: 24px;
  height: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.vision-page {
  --vision-w: clamp(280px, 60vw, 968px);
}

.vision-intro > .container,
.norm-quality > .container,
.partners > .container {
  max-width: var(--vision-w);
  padding-inline: 0;
}

.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #064d75;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 30, 50, 0.15) 0%, rgba(4, 30, 50, 0) 42%, rgba(4, 30, 50, 0.55) 100%);
  z-index: 1;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(120px, 16vw, 220px) clamp(40px, 6vw, 90px);
}
.page-hero__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.page-hero__sub {
  margin-top: 14px;
  max-width: 640px;
  font-size: clamp(15px, 1.4vw, 19px);
  opacity: 0.92;
}
@media (max-width: 820px) {
  .page-hero {
    min-height: 56vw;
  }
  .page-hero__inner {
    padding-block: 0 clamp(16px, 5vw, 28px);
  }
  .page-hero__title {
    font-size: clamp(26px, 7vw, 40px);
  }
  .page-hero__sub {
    margin-top: 8px;
    font-size: 14px;
  }
}

.vision-intro {
  padding-block: clamp(56px, 7vw, 104px);
  text-align: center;
}
.vision-intro__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.vision-intro__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 2.81vw, 54px);
  line-height: 1.22;
  color: #181818;
}
.vision-intro__lead {
  margin-top: 28px;
  margin-inline: auto;
  max-width: 640px;
  font-weight: 500;
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.55;
  color: #242424;
}
.vision-intro__list {
  margin-top: 26px;
  display: inline-block;
  text-align: left;
  list-style: disc;
  padding-left: 22px;
}
.vision-intro__list li {
  font-weight: 200;
  font-size: clamp(15px, 1.04vw, 20px);
  line-height: 1.9;
  color: #2e2e2e;
}
.vision-intro__list li::marker {
  color: #0673c7;
}

.vision-slider {
  position: relative;
  padding-block: clamp(20px, 3vw, 40px) clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.vision-slider__viewport {
  overflow: hidden;
}
.vision-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.vision-slider.is-dragging .vision-slider__track {
  cursor: grabbing;
}
.vision-slider__control {
  position: absolute;
  right: calc(50% - clamp(280px, 60vw, 968px) / 2);
  bottom: clamp(58px, 8vw, 108px);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 3;
}
@media (max-width: 820px) {
  .vision-slider__control {
    position: static;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }
}
.vision-slider__count {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  font-weight: 700;
  font-size: clamp(30px, 3vw, 44px);
  color: #2693d1;
}
.vision-slider__count-den {
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #076093;
}
.vision-slider__arrow {
  width: 72px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid #0673c7;
  background: transparent;
  color: #181818;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vision-slider__arrow svg {
  width: 22px;
  height: 22px;
}
.vision-slider__arrow:hover {
  background: #0673c7;
  border-color: #0673c7;
  color: #ffffff;
}
@media (max-width: 820px) {
  .vision-slider__arrow {
    width: 48px;
    height: 34px;
  }
  .vision-slider__arrow svg {
    width: 18px;
    height: 18px;
  }
}

.vision-slide {
  flex: 0 0 auto;
  width: var(--vision-w);
}
.vision-slide__media {
  aspect-ratio: 968/544;
  border-radius: 29px;
  overflow: hidden;
  background: #d9d9d9;
}
.vision-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vision-slide__caption {
  margin-top: 22px;
  max-width: calc(var(--vision-w) * 0.6);
  min-height: 72px;
  font-weight: 400;
  font-size: clamp(15px, 1.04vw, 20px);
  line-height: 1.6;
  color: #2e2e2e;
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vision-slide:not(.is-active) .vision-slide__caption {
  opacity: 0.4;
}

.vision-slider.is-moving .vision-slide__caption {
  opacity: 0;
  transition: opacity 0s;
}

.norm-quality {
  background: #076093;
  color: #ffffff;
  padding-block: clamp(48px, 6vw, 90px);
}
.norm-quality__inner {
  max-width: 900px;
}
.norm-quality__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 2.19vw, 42px);
  margin-bottom: 18px;
}
.norm-quality__text {
  max-width: 820px;
  font-weight: 300;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.7;
  opacity: 0.95;
}

.partners {
  padding-block: clamp(56px, 8vw, 120px);
}
.partners__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
}
.partners__row + .partners__row {
  margin-top: clamp(48px, 8vw, 110px);
}
.partners__media img {
  width: 100%;
  max-width: 536px;
  aspect-ratio: 536/621;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.partners__media--sm img {
  max-width: 432px;
  aspect-ratio: 432/439;
}
.partners__row--reverse .partners__media {
  justify-self: end;
}
.partners__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 2.19vw, 42px);
  color: #181818;
  margin-bottom: 16px;
}
.partners__body {
  max-width: 460px;
  font-weight: 200;
  font-size: clamp(15px, 1.04vw, 20px);
  line-height: 1.75;
  color: #2e2e2e;
}
@media (max-width: 820px) {
  .partners__row {
    grid-template-columns: 1fr;
  }
  .partners__row--reverse .partners__media {
    justify-self: start;
    order: -1;
  }
  .partners__media img {
    max-width: 100%;
  }
}

.contact--solid {
  background: #076093;
}
.contact--solid::after {
  content: none;
}
.contact--solid .contact__inner {
  display: block;
  text-align: center;
}
.contact--solid .contact__title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 50px);
  margin-bottom: clamp(28px, 4vw, 56px);
}
.contact--solid .contact__card {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.mission-page {
  --mission-w: clamp(280px, 60vw, 968px);
}

.mission-values {
  position: relative;
  aspect-ratio: 3840/3616;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 820px) {
  .mission-values {
    aspect-ratio: auto;
    background: #2a3342;
    padding-bottom: 320px;
  }
  .mission-values .mission-values__bg {
    top: auto;
    bottom: 0;
    height: 300px;
    object-position: center bottom;
  }
}
.mission-values__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.mission-values__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(32px, 4vw, 72px);
}
.mission-values__lead {
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 60px);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.55;
}
.mission-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 3vw, 50px) clamp(40px, 8vw, 120px);
  max-width: 960px;
}
@media (max-width: 820px) {
  .mission-values__grid {
    grid-template-columns: 1fr;
  }
}

.mission-value__icon {
  display: inline-block;
  margin-bottom: 18px;
}
.mission-value__icon img {
  height: 34px;
  width: auto;
  display: block;
}
.mission-value__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  margin-bottom: 14px;
}
.mission-value__text {
  max-width: 400px;
  font-weight: 200;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.mission-slider {
  background: #13161d;
  color: #ffffff;
  padding-block: clamp(24px, 4vw, 64px) clamp(64px, 9vw, 130px);
}
.mission-slider__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.4;
}
.mission-slider__stage {
  position: relative;
  display: flex;
  align-items: center;
}
.mission-slider__viewport {
  width: 100%;
  overflow: hidden;
}
.mission-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.mission-slider.is-dragging .mission-slider__track {
  cursor: grabbing;
}
.mission-slider__arrow {
  position: absolute;
  top: clamp(120px, 15vw, 240px);
  z-index: 3;
  width: 74px;
  height: 50px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: #181818;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(8, 40, 70, 0.1);
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mission-slider__arrow svg {
  width: 22px;
  height: 22px;
}
.mission-slider__arrow:hover {
  background: #0673c7;
  color: #ffffff;
}
.mission-slider__arrow--prev {
  left: clamp(12px, 3vw, 64px);
}
.mission-slider__arrow--next {
  right: clamp(12px, 3vw, 64px);
}
@media (max-width: 820px) {
  .mission-slider__arrow {
    width: 48px;
    height: 34px;
    top: calc(var(--mission-w) * 470 / 968 / 2 - 17px);
  }
  .mission-slider__arrow svg {
    width: 18px;
    height: 18px;
  }
}

.mission-slide {
  flex: 0 0 auto;
  width: var(--mission-w);
  opacity: 0.35;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mission-slide.is-active {
  opacity: 1;
}
.mission-slide__media {
  aspect-ratio: 968/470;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.mission-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission-slide__title {
  margin-top: 22px;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
}
.mission-slide__caption {
  margin-top: 10px;
  max-width: calc(var(--mission-w) * 0.66);
  font-weight: 200;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.mission-slide__title, .mission-slide__caption {
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-slider.is-moving .mission-slide__title,
.mission-slider.is-moving .mission-slide__caption {
  opacity: 0;
  transition: opacity 0s;
}

.breadcrumb {
  padding-top: clamp(22px, 3vw, 42px);
  font-size: 14px;
  color: #a8a8a8;
}
.breadcrumb a {
  color: #a8a8a8;
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.breadcrumb a:hover {
  color: #0673c7;
}
.breadcrumb__sep {
  margin-inline: 8px;
}
.breadcrumb__current {
  color: #181818;
}

.services-list {
  padding-block: clamp(48px, 7vw, 104px);
}
.services-list > .container {
  max-width: 1200px;
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 110px);
}
.services-row + .services-row {
  margin-top: clamp(44px, 7vw, 104px);
}
.services-row--flip .services-row__media {
  order: -1;
}
.services-row__body {
  display: flex;
  flex-direction: column;
}
.services-row__body > * {
  width: 100%;
  max-width: 460px;
}
.services-row--flip .services-row__body {
  align-items: flex-end;
}
.services-row__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px);
  color: #181818;
  margin-bottom: 16px;
}
.services-row__text {
  font-weight: 300;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.75;
  color: #2e2e2e;
}
.services-row__media img {
  width: 100%;
  aspect-ratio: 443/300;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 820px) {
  .services-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-row--flip .services-row__media {
    order: -1;
  }
  .services-row__text {
    max-width: none;
    margin-inline-start: 0;
  }
}

.sustain-page {
  background: #ffffff;
}

.sustain-intro > .container,
.sustain-commit > .container,
.sustain-reports > .container,
.sustain-tech > .container {
  max-width: 1200px;
}

.sustain-intro {
  background: linear-gradient(180deg, #a7ddf8 0%, #d9f0fc 38%, #f4f4f4 100%);
  padding-block: clamp(72px, 9vw, 150px) clamp(80px, 10vw, 170px);
  text-align: center;
}
.sustain-intro__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 52px);
  color: #181818;
  margin-bottom: clamp(44px, 6vw, 96px);
}

.sustain-facts {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 90px);
  flex-wrap: wrap;
}

.sustain-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 2.6vw, 40px);
}
.sustain-fact__icon {
  height: clamp(100px, 8.6vw, 156px);
  width: auto;
  display: block;
}
.sustain-fact__label {
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  color: #181818;
}

.sustain-commit {
  background: #333333;
  color: #ffffff;
  padding-block: clamp(64px, 9vw, 132px);
}
.sustain-commit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.sustain-commit__body {
  max-width: 560px;
}
.sustain-commit__lead {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.4;
  margin-bottom: 22px;
}
.sustain-commit__text {
  font-weight: 300;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}
.sustain-commit__media {
  position: relative;
  min-height: clamp(280px, 24vw, 400px);
}
.sustain-commit__img {
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(8, 40, 70, 0.14);
}
.sustain-commit__img--back {
  width: 52%;
  height: 76%;
  left: 0;
  top: 12%;
}
.sustain-commit__img--front {
  width: 58%;
  height: 100%;
  right: 0;
  top: 0;
}

.sustain-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.sustain-reports {
  background: #ffffff;
  padding-block: clamp(56px, 8vw, 112px);
}
.sustain-reports__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
  padding-inline: clamp(0px, 2vw, 40px);
}
.sustain-reports__mark {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(110px, 12vw, 200px);
  line-height: 0.82;
  color: #424242;
}
.sustain-reports__mark sub {
  font-size: 0.5em;
  font-weight: 700;
}
.sustain-reports__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 34px);
  color: #181818;
  margin-bottom: 18px;
}
.sustain-reports__text {
  font-weight: 300;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.75;
  color: #2e2e2e;
  max-width: 640px;
}

.sustain-files {
  list-style: none;
  margin-top: clamp(36px, 5vw, 72px);
  padding-inline: clamp(0px, 2vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 30px);
}

.sustain-file__link {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6vw, 26px);
  text-decoration: none;
  color: #181818;
}

.sustain-file__badge {
  flex: none;
  background: #076093;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 9px 15px;
  border-radius: 6px;
}

.sustain-file__name {
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 19px);
}

.sustain-file__dl {
  margin-left: auto;
  color: #076093;
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sustain-file__dl svg {
  width: 26px;
  height: 26px;
  display: block;
}

.sustain-file__link:hover .sustain-file__dl {
  color: #0560ad;
}

.sustain-tech {
  background: #333333;
  color: #ffffff;
  padding-block: clamp(56px, 8vw, 112px);
}
.sustain-tech__row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr) minmax(0, 5fr);
  align-items: start;
  gap: clamp(24px, 4vw, 64px);
}
.sustain-tech__row + .sustain-tech__row {
  margin-top: clamp(46px, 7vw, 92px);
}
.sustain-tech__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.25;
}
.sustain-tech__arrow {
  position: relative;
  align-self: start;
  margin-top: clamp(12px, 1vw, 18px);
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}
.sustain-tech__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  transform: translate(0, -50%) rotate(45deg);
}
.sustain-tech__lead {
  font-weight: 400;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.6;
  margin-bottom: 18px;
}
.sustain-tech__text {
  font-weight: 300;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 820px) {
  .sustain-commit__inner {
    grid-template-columns: 1fr;
  }
  .sustain-commit__media {
    min-height: clamp(300px, 70vw, 460px);
  }
  .sustain-facts {
    justify-content: center;
  }
  .sustain-reports__inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding-inline: 24px;
  }
  .sustain-reports__mark {
    font-size: clamp(96px, 28vw, 160px);
  }
  .sustain-files {
    padding-inline: 24px;
  }
  .sustain-tech__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sustain-tech__arrow {
    display: none;
  }
}
.contact-page {
  background: #ffffff;
}

.contact--dark {
  background: #333333;
}

.help > .container,
.faq > .container,
.contact-band > .container {
  max-width: 1200px;
}

.help {
  padding-block: clamp(48px, 7vw, 96px) clamp(40px, 5vw, 72px);
}
.help__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 40px);
  color: #181818;
  margin-bottom: clamp(30px, 4vw, 56px);
}
.help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
}

.help-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e4e4;
  border-radius: 26px;
  padding: clamp(24px, 2.4vw, 38px);
}
.help-card__icon {
  color: #181818;
}
.help-card__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}
.help-card__heading {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  color: #181818;
  margin: clamp(18px, 2vw, 28px) 0 clamp(14px, 1.6vw, 22px);
}
.help-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 18px);
  margin-bottom: clamp(22px, 2.6vw, 34px);
}
.help-card__list li {
  font-weight: 300;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.4;
  color: #2e2e2e;
}
.help-card__more {
  align-self: flex-start;
  margin-top: auto;
  background: #0673c7;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 999px;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.help-card__more:hover {
  background: #0560ad;
}

.faq {
  padding-block: clamp(20px, 3vw, 48px) clamp(56px, 8vw, 110px);
}
.faq__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 40px);
  color: #181818;
  margin-bottom: clamp(24px, 3vw, 44px);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.faq__col {
  align-self: start;
}

.faq-item {
  border-bottom: 1px solid #e2e2e2;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: clamp(18px, 2vw, 26px) 0;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.35;
  color: #181818;
}
.faq-item__chevron {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #181818;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item__a p {
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: #2e2e2e;
  padding-bottom: clamp(18px, 2vw, 26px);
}

.contact-band {
  background: #eaf6fd;
  padding-block: clamp(44px, 6vw, 80px);
  text-align: center;
}
.contact-band__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 40px);
  color: #181818;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.contact-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 30px);
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  justify-content: flex-start;
  background: transparent;
  border: 1px solid #181818;
  border-radius: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: #181818;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 17px);
  transition: border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.contact-chip__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.contact-chip__value {
  margin-left: auto;
  font-weight: 400;
}
.contact-chip:hover {
  border-color: #0673c7;
  color: #0673c7;
}

@media (max-width: 1100px) {
  .help__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}
@media (max-width: 820px) {
  .faq__grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .contact-chip {
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }
}
.legal-page {
  background: #ffffff;
}

.legal {
  padding-block: clamp(120px, 14vw, 190px) clamp(56px, 8vw, 110px);
}
.legal > .container {
  max-width: 1200px;
}
.legal .breadcrumb {
  padding-top: 0;
}
.legal__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 50px);
  color: #181818;
  margin: clamp(14px, 1.6vw, 24px) 0 clamp(28px, 3.5vw, 48px);
}
.legal__content {
  font-weight: 300;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.85;
  color: #2e2e2e;
}
.legal__content :is(h1, h2, h3, h4) {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  color: #181818;
  line-height: 1.3;
  margin: 1.6em 0 0.6em;
}
.legal__content h1 {
  font-size: clamp(22px, 2.2vw, 32px);
}
.legal__content h2 {
  font-size: clamp(20px, 1.9vw, 27px);
}
.legal__content h3 {
  font-size: clamp(18px, 1.6vw, 22px);
}
.legal__content p {
  margin-bottom: 1.1em;
}
.legal__content :is(ul, ol) {
  margin: 0 0 1.1em 1.4em;
}
.legal__content li {
  margin-bottom: 0.5em;
}
.legal__content a {
  color: #0673c7;
  text-decoration: underline;
}
.legal__content a:hover {
  color: #0560ad;
}
.legal__content strong {
  font-weight: 600;
  color: #181818;
}
.legal__content :first-child {
  margin-top: 0;
}

.projects-page {
  background: #ffffff;
}

.projects-intro {
  background: #eaf6fd;
  padding-block: clamp(24px, 3vw, 44px) clamp(48px, 7vw, 96px);
}
.projects-intro .breadcrumb {
  padding-top: 0;
}
.projects-intro__lead {
  margin-top: clamp(40px, 6vw, 90px);
  max-width: 1000px;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.4;
  color: #181818;
}
.projects-intro__link {
  display: inline-block;
  margin-top: clamp(20px, 2.4vw, 34px);
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 22px);
  color: #0673c7;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.projects-intro__link:hover {
  color: #0560ad;
}

.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: clamp(340px, 33vw, 560px);
}
.project-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(36px, 5vw, 72px);
  padding-inline: clamp(28px, 9vw, 170px);
}
.project-row__body > * {
  width: 100%;
  max-width: 620px;
}
.project-row__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 2.9vw, 50px);
  color: #181818;
  margin-bottom: clamp(16px, 1.8vw, 26px);
}
.project-row__text {
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.7;
  color: #2e2e2e;
}
.project-row__media img {
  display: block;
  width: 100%;
  height: clamp(340px, 33vw, 560px);
  object-fit: cover;
}
.project-row--flip .project-row__media {
  order: -1;
}
.project-row--flip .project-row__body {
  align-items: flex-end;
}

.project-list__band img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .project-row {
    grid-template-columns: 1fr;
  }
  .project-row__media {
    order: -1;
  }
  .project-row__media img {
    height: clamp(220px, 60vw, 360px);
  }
  .project-row__body {
    align-items: flex-start;
    padding-inline: clamp(24px, 6vw, 40px);
  }
  .project-row--flip .project-row__body {
    align-items: flex-start;
  }
}
.fleet-feature {
  position: relative;
  background: #ffffff;
  padding-block: clamp(48px, 6vw, 96px);
}
.fleet-feature > .container {
  position: relative;
}
.fleet-feature__crumb {
  padding-top: 0;
  margin-bottom: clamp(24px, 4vw, 56px);
}
.fleet-feature__viewport {
  position: relative;
}
.fleet-feature__slide {
  display: none;
}
.fleet-feature__slide.is-active {
  display: block;
  animation: fleetFade 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fleet-feature__slide img {
  display: block;
  width: min(92%, 1200px);
  aspect-ratio: 5/2;
  object-fit: contain;
  margin-inline: auto;
}
.fleet-feature__head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(16px, 2vw, 40px);
  margin-bottom: clamp(20px, 3vw, 48px);
}
.fleet-feature__name {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 64px);
  line-height: 1;
  color: #181818;
  letter-spacing: -0.5px;
}
.fleet-feature__number {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3.1vw, 52px);
  line-height: 1;
  color: #181818;
  border-bottom: 2px solid #181818;
  padding-bottom: 6px;
}
.fleet-feature__specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 6vw, 110px) clamp(32px, 8vw, 130px);
  margin-top: clamp(24px, 3vw, 48px);
  text-align: center;
}
.fleet-feature__specs .fleet-spec__value {
  font-size: clamp(28px, 2.5vw, 36px);
}
.fleet-feature__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(8, 40, 70, 0.25);
  background: #ffffff;
  color: #181818;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fleet-feature__arrow svg {
  width: 20px;
  height: 20px;
}
.fleet-feature__arrow:hover {
  background: #0673c7;
  color: #ffffff;
  border-color: #0673c7;
}
.fleet-feature__arrow--prev {
  left: 0;
}
.fleet-feature__arrow--next {
  right: 0;
}
@media (max-width: 820px) {
  .fleet-feature__arrow {
    width: 48px;
    height: 34px;
  }
  .fleet-feature__arrow svg {
    width: 18px;
    height: 18px;
  }
  .fleet-feature__arrow--prev {
    left: 10px;
  }
  .fleet-feature__arrow--next {
    right: 10px;
  }
}
.fleet-feature__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(20px, 2.4vw, 36px);
}
.fleet-feature__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 40, 70, 0.22);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fleet-feature__dot.is-active {
  width: 26px;
  background: #0673c7;
}

.fleet-spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fleet-spec__label {
  font-size: clamp(12px, 1vw, 15px);
  color: #2e2e2e;
}
.fleet-spec__value {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  color: #181818;
}

@keyframes fleetFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fleet-bp {
  background: #303030;
  color: #ffffff;
}
.fleet-bp > .container {
  padding-block: clamp(40px, 5vw, 80px);
}
.fleet-bp__media img {
  display: block;
  width: 100%;
  height: auto;
}
.fleet-bp__dims {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 9vw, 170px);
  margin-top: clamp(24px, 3vw, 52px);
  text-align: center;
}

.fleet-dim {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fleet-dim__label {
  font-size: clamp(12px, 1vw, 15px);
  color: rgba(255, 255, 255, 0.6);
}
.fleet-dim__value {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 28px);
}

.fleet-cargo {
  background: #ebebeb;
  padding-block: clamp(48px, 6vw, 92px);
}
.fleet-cargo > .container {
  max-width: 1200px;
}
.fleet-cargo__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 90px);
  align-items: start;
  margin-bottom: clamp(28px, 3vw, 48px);
}
@media (max-width: 820px) {
  .fleet-cargo__head {
    grid-template-columns: 1fr;
  }
}
.fleet-cargo__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 40px);
  color: #181818;
  line-height: 1.15;
}
.fleet-cargo__text {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
  color: #2e2e2e;
}
.fleet-cargo__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.4vw, 24px);
}
@media (max-width: 820px) {
  .fleet-cargo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .fleet-cargo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cargo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.cargo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cargo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 45%);
}
.cargo-card__label {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
  color: #ffffff;
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.25;
}
@media (max-width: 820px) {
  .cargo-card__label {
    font-size: 16px;
  }
}
.cargo-card__desc {
  display: none;
}

.fleet-vehicles {
  background: #ffffff;
  padding-block: clamp(48px, 6vw, 96px);
}
.fleet-vehicles > .container {
  max-width: 1200px;
}
.fleet-vehicles__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 44px);
  color: #0673c7;
  margin-bottom: clamp(28px, 3vw, 52px);
}
.fleet-vehicles__list {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.4vw, 56px);
}

.vehicle-card__panel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}
.vehicle-card__bg {
  display: block;
  width: 100%;
  height: auto;
}
.vehicle-card__bg--mobile {
  display: none;
}
@media (max-width: 560px) {
  .vehicle-card__panel:has(.vehicle-card__bg--mobile) .vehicle-card__bg:not(.vehicle-card__bg--mobile) {
    display: none;
  }
  .vehicle-card__bg--mobile {
    display: block;
  }
}
.vehicle-card__specs {
  position: absolute;
  inset: 0;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 26px);
  padding-inline: clamp(20px, 3.4vw, 56px);
}
.vehicle-card__specs .fleet-spec__label {
  font-size: clamp(11px, 0.95vw, 14px);
}
.vehicle-card__specs .fleet-spec__value {
  font-size: clamp(13px, 1.3vw, 20px);
}
@media (max-width: 560px) {
  .vehicle-card__specs {
    width: 48%;
    padding-inline: clamp(12px, 4vw, 20px);
    gap: 7px;
  }
  .vehicle-card__specs .fleet-spec {
    gap: 2px;
  }
  .vehicle-card__specs .fleet-spec__label {
    font-size: 9.5px;
    line-height: 1.2;
  }
  .vehicle-card__specs .fleet-spec__value {
    font-size: 12.5px;
    line-height: 1.2;
  }
}
.vehicle-card__foot {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  padding: clamp(16px, 1.6vw, 24px) clamp(8px, 1vw, 16px) 0;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 560px) {
  .vehicle-card__foot {
    flex-wrap: nowrap;
    gap: 10px;
  }
}
.vehicle-card__foot:hover .vehicle-card__btn {
  background: #0560ad;
}
.vehicle-card__name {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  color: #181818;
  white-space: nowrap;
}
.vehicle-card__range {
  font-size: clamp(12px, 1vw, 15px);
  color: #2e2e2e;
  white-space: nowrap;
}
.vehicle-card__line {
  position: relative;
  flex: 1 1 auto;
  height: 1px;
  background: rgba(8, 40, 70, 0.45);
  min-width: 40px;
}
.vehicle-card__line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(8, 40, 70, 0.45);
  border-right: 1px solid rgba(8, 40, 70, 0.45);
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 560px) {
  .vehicle-card__line {
    display: none;
  }
}
.vehicle-card__btn {
  flex: 0 0 auto;
}
@media (max-width: 560px) {
  .vehicle-card__btn {
    margin-inline-start: auto;
    padding: 8px 18px;
    font-size: 13px;
  }
}

.fleet-brand {
  background: #ebebeb;
  padding-block: clamp(48px, 6vw, 100px);
}
.fleet-brand > .container {
  max-width: 1200px;
}
.fleet-brand__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3vw, 48px);
}
.fleet-brand__head {
  max-width: 820px;
}
.fleet-brand__title {
  font-family: "Fira Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 42px);
  color: #181818;
  margin-bottom: clamp(12px, 1.4vw, 22px);
}
.fleet-brand__text {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  color: #2e2e2e;
}
.fleet-brand__player {
  position: relative;
  width: min(100%, 760px);
  border-radius: clamp(40px, 5vw, 64px);
  overflow: hidden;
  transition: border-radius 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleet-brand__player.is-playing {
  border-radius: 10px;
}
.fleet-brand__video {
  display: block;
  width: 100%;
  height: auto;
}
.fleet-brand__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(64px, 7vw, 88px);
  height: clamp(64px, 7vw, 88px);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fleet-brand__play img {
  width: 100%;
  height: 100%;
  display: block;
}
.fleet-brand__play:hover {
  transform: scale(1.06);
}
.is-playing .fleet-brand__play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

:root {
  --img-hero: url('https://www.figma.com/api/mcp/asset/3995d3d4-4614-4fa5-8b60-265e679b356f');
  --img-arrow: url('https://www.figma.com/api/mcp/asset/c6d468bf-9145-4464-aacd-4e8752f768d7');
  --img-projects-bg: url('https://www.figma.com/api/mcp/asset/ea6882b4-45b7-48e5-b5d1-4b8e28392765');
  --img-road-art: url('../assets/img/road.png');
  --img-road-mask: none;
  --img-contact: url('../assets/img/Contactbg.png');
}

/*# sourceMappingURL=main.css.map */
