:root {
  --color-bg: #030812;
  --color-bg-soft: #07111e;
  --color-surface: #08111c;
  --color-surface-2: #0b1726;
  --color-border: rgba(99, 130, 170, 0.28);
  --color-border-strong: rgba(71, 133, 255, 0.42);
  --color-text: #f4f7fb;
  --color-muted: #a9b6c9;
  --color-muted-2: #73839b;
  --color-accent: #1268ff;
  --color-accent-2: #2f8cff;
  --color-accent-glow: rgba(18, 104, 255, 0.42);
  --shadow-card: 0 18px 70px rgba(0, 0, 0, 0.46);
  --shadow-accent: 0 0 34px rgba(18, 104, 255, 0.42);
  --font-main: Inter, Manrope, Onest, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(18, 104, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #040914 0%, #02050c 100%);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1440px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(16px);
}

.site-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-logo__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, #1d76ff 0%, #064fc5 100%);
  box-shadow: var(--shadow-accent);
}

.site-logo__image {
  width: auto;
  max-width: 160px;
  height: 42px;
  object-fit: contain;
}

.site-logo__text {
  letter-spacing: 0;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.site-nav__list li {
  position: relative;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  border-color: rgba(71, 133, 255, 0.32);
  background: rgba(18, 104, 255, 0.12);
  color: var(--color-text);
  box-shadow: 0 0 22px rgba(18, 104, 255, 0.18);
  outline: none;
}

.site-nav__list .menu-item-has-children > a::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  opacity: 0.76;
  transform: rotate(45deg) translateY(-2px);
}

.site-nav__list .menu-item-has-children::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 29;
  width: max(100%, 210px);
  height: 10px;
  content: "";
}

.site-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 210px;
  gap: 4px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(71, 133, 255, 0.3);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.98) 0%, rgba(3, 8, 18, 0.98) 100%),
    radial-gradient(circle at 86% 0%, rgba(18, 104, 255, 0.2), transparent 42%);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42), 0 0 28px rgba(18, 104, 255, 0.18);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__list .menu-item-has-children:hover > .sub-menu,
.site-nav__list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__list .sub-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  color: var(--color-muted);
  white-space: nowrap;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible {
  color: var(--color-text);
}

.site-lang-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-lang-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  list-style: none;
  text-transform: uppercase;
}

.site-lang-nav__list li {
  position: relative;
}

.site-lang-nav__list a,
.site-lang-nav__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(71, 133, 255, 0.28);
  border-radius: 999px;
  background: rgba(6, 17, 34, 0.72);
  color: var(--color-text);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-lang-nav__list a:hover,
.site-lang-nav__list a:focus-visible,
.site-lang-nav__list .current-lang > a,
.site-lang-nav__list .current-lang > span {
  border-color: rgba(71, 133, 255, 0.62);
  background: rgba(18, 104, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(18, 104, 255, 0.18);
  outline: none;
}

.site-lang-nav__list .menu-item-has-children > a::after,
.site-lang-nav__list .pll-parent-menu-item > a::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  opacity: 0.76;
  transform: rotate(45deg) translateY(-2px);
}

.site-lang-nav__list .menu-item-has-children::after,
.site-lang-nav__list .pll-parent-menu-item::after {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 29;
  width: max(100%, 160px);
  height: 10px;
  content: "";
}

.site-lang-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 160px;
  gap: 4px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(71, 133, 255, 0.3);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.98) 0%, rgba(3, 8, 18, 0.98) 100%),
    radial-gradient(circle at 86% 0%, rgba(18, 104, 255, 0.2), transparent 42%);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42), 0 0 28px rgba(18, 104, 255, 0.18);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-lang-nav__list .menu-item-has-children:hover > .sub-menu,
.site-lang-nav__list .menu-item-has-children:focus-within > .sub-menu,
.site-lang-nav__list .pll-parent-menu-item:hover > .sub-menu,
.site-lang-nav__list .pll-parent-menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-lang-nav__list .sub-menu a,
.site-lang-nav__list .sub-menu span {
  justify-content: flex-start;
  width: 100%;
  min-height: 38px;
  border-color: transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--color-muted);
  box-shadow: none;
  white-space: nowrap;
}

.site-lang-nav__list .sub-menu a:hover,
.site-lang-nav__list .sub-menu a:focus-visible,
.site-lang-nav__list .sub-menu .current-lang > a,
.site-lang-nav__list .sub-menu .current-lang > span {
  border-color: rgba(71, 133, 255, 0.32);
  background: rgba(18, 104, 255, 0.12);
  color: var(--color-text);
  box-shadow: 0 0 22px rgba(18, 104, 255, 0.18);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  border-color: rgba(71, 133, 255, 0.62);
  background: rgba(18, 104, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(18, 104, 255, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: rgba(6, 14, 27, 0.72);
  color: var(--color-text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  border-color: rgba(89, 153, 255, 0.7);
  background: rgba(18, 104, 255, 0.14);
  box-shadow: 0 0 22px rgba(18, 104, 255, 0.22);
  outline: none;
}

.site-menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel[hidden] {
  display: none;
}

.mobile-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.mobile-menu-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 5, 12, 0.72);
  backdrop-filter: blur(10px);
}

.mobile-menu-panel__dialog {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  width: min(420px, calc(100% - 28px));
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(71, 133, 255, 0.36);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 2%, rgba(18, 104, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(7, 17, 32, 0.98) 0%, rgba(3, 8, 18, 0.99) 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62), 0 0 34px rgba(18, 104, 255, 0.18);
  overflow: auto;
}

.mobile-menu-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-menu-panel__close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(71, 133, 255, 0.34);
  border-radius: 10px;
  background: rgba(6, 14, 27, 0.76);
  color: var(--color-text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.mobile-nav__list,
.mobile-nav__list .sub-menu {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__list > li {
  border: 1px solid rgba(99, 130, 170, 0.22);
  border-radius: 12px;
  background: rgba(6, 14, 27, 0.58);
  overflow: hidden;
}

.mobile-nav__item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.mobile-nav__list a {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 16px;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 800;
}

.mobile-nav__submenu-toggle {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(99, 130, 170, 0.22);
  background: rgba(18, 104, 255, 0.08);
  color: var(--color-text);
  cursor: pointer;
}

.mobile-nav__submenu-toggle::before {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.mobile-nav__submenu-toggle[aria-expanded="true"]::before {
  transform: rotate(225deg) translate(-2px, -2px);
}

.mobile-nav__list .sub-menu {
  display: none;
  padding: 10px;
  border-top: 1px solid rgba(99, 130, 170, 0.18);
}

.mobile-nav__list .menu-item.is-submenu-open > .sub-menu {
  display: grid;
}

.mobile-nav__list .sub-menu a {
  min-height: 42px;
  border-radius: 8px;
  background: rgba(18, 104, 255, 0.1);
  color: var(--color-muted);
  font-size: 15px;
}

.mobile-nav__list .sub-menu a:hover,
.mobile-nav__list .sub-menu a:focus-visible {
  background: rgba(18, 104, 255, 0.18);
  color: var(--color-text);
  outline: none;
}

.mobile-menu-panel__cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(71, 133, 255, 0.5);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(31, 124, 255, 0.92) 0%, rgba(9, 94, 230, 0.92) 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(18, 104, 255, 0.28);
}

body.is-mobile-menu-open {
  overflow: hidden;
}

.site-main {
  min-height: calc(100vh - 78px);
}

.home-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 154px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.hero-card {
  display: flex;
  align-items: stretch;
  min-height: 640px;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.88) 34%, rgba(3, 8, 18, 0.34) 70%, rgba(3, 8, 18, 0.58) 100%),
    var(--hero-bg);
  background-position: center;
  background-size: cover;
}

.hero-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(122deg, transparent 0 70%, rgba(18, 104, 255, 0.42) 70.2% 72%, transparent 72.2%),
    radial-gradient(circle at 76% 58%, rgba(47, 140, 255, 0.22), transparent 32%);
}

.hero-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(700px, 58%);
  padding: clamp(34px, 5vw, 76px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card h1,
.cargo-panel h2,
.why-panel h2,
.contact-panel h2,
.services-intro-card h2,
.service-card h3,
.fleet-panel h2,
.empty-state h1 {
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-card h1 {
  max-width: 640px;
  font-size: clamp(38px, 5.2vw, 74px);
}

.hero-card__text {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.transfers-list--hero + .hero-card__actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #1f7cff 0%, #095ee6 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 104, 255, 0.32);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(18, 104, 255, 0.48);
}

.button-secondary {
  border: 1px solid var(--color-border-strong);
  background: rgba(6, 14, 27, 0.64);
  color: var(--color-text);
}

.button-secondary:hover {
  border-color: rgba(89, 153, 255, 0.72);
  background: rgba(18, 104, 255, 0.12);
}

.scroll-top-button {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 90;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(126, 157, 210, 0.42);
  border-radius: 12px;
  background: rgba(4, 11, 21, 0.9);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), 0 0 24px rgba(18, 104, 255, 0.16);
  color: var(--color-text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.scroll-top-button[hidden] {
  display: grid;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  border-color: rgba(79, 109, 176, 0.88);
  background: rgba(18, 104, 255, 0.22);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.4), 0 0 28px rgba(18, 104, 255, 0.26);
  outline: none;
}

.hero-card__car {
  position: absolute;
  right: clamp(16px, 4vw, 72px);
  bottom: clamp(-36px, -2vw, -18px);
  z-index: 1;
  width: min(58%, 820px);
  max-height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.55));
}

.services-grid-panel,
.fleet-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.panel-copy,
.fleet-slider {
  position: relative;
  z-index: 1;
}

.panel-copy h2 {
  max-width: 520px;
  font-size: clamp(30px, 3.3vw, 44px);
}

.panel-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
}

.services-grid-panel {
  margin-top: 14px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(7, 15, 27, 0.88) 0%, rgba(4, 9, 18, 0.96) 100%),
    radial-gradient(circle at 8% 0%, rgba(18, 104, 255, 0.18), transparent 30%);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-intro-card,
.service-card {
  position: relative;
  display: flex;
  min-height: 292px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(22px, 2.1vw, 30px);
  border: 1px solid rgba(99, 130, 170, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(8, 17, 28, 0.98) 0%, rgba(4, 9, 18, 0.98) 100%),
    radial-gradient(circle at 88% 12%, rgba(47, 140, 255, 0.2), transparent 32%);
}

.services-intro-card::before,
.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.services-intro-card::before {
  background:
    linear-gradient(135deg, rgba(18, 104, 255, 0.2) 0%, transparent 42%),
    radial-gradient(circle at 94% 92%, rgba(18, 104, 255, 0.28), transparent 30%);
}

.service-card::before {
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.48) 0%, rgba(3, 8, 18, 0.26) 48%, rgba(3, 8, 18, 0.58) 100%),
    linear-gradient(90deg, rgba(3, 8, 18, 0.78) 0%, rgba(3, 8, 18, 0.46) 48%, rgba(3, 8, 18, 0.08) 100%),
    var(--service-card-bg, none);
  background-position: center;
  background-size: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(71, 133, 255, 0.08);
  pointer-events: none;
}

.services-intro-card > *,
.service-card > * {
  position: relative;
  z-index: 2;
}

.services-intro-card h2 {
  max-width: 320px;
  font-size: clamp(30px, 2.6vw, 42px);
}

.services-intro-card p:not(.eyebrow) {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.45;
}

.services-intro-card__arrow {
  display: inline-grid;
  width: 58px;
  height: 58px;
  align-self: flex-end;
  place-items: center;
  border: 1px solid rgba(71, 133, 255, 0.55);
  border-radius: 14px;
  background: rgba(18, 104, 255, 0.16);
  color: var(--color-text);
  box-shadow: 0 0 28px rgba(18, 104, 255, 0.24);
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.services-intro-card__arrow::before {
  display: block;
  content: "\2192";
  line-height: 1;
  transform: translateY(-0.04em);
}

.services-intro-card__arrow:hover,
.services-intro-card__arrow:focus-visible {
  border-color: rgba(138, 186, 255, 0.72);
  background: rgba(18, 104, 255, 0.24);
  box-shadow: 0 0 34px rgba(18, 104, 255, 0.34);
  transform: translateX(2px);
}

.service-card:hover::before {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(79, 109, 176, 0.42);
  border-radius: 16px;
  background: rgba(6, 14, 27, 0.62);
  box-shadow: 0 0 22px rgba(79, 109, 176, 0.24);
}

.service-card__icon::before {
  width: 28px;
  height: 28px;
  border: 2px solid #4f6db0;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 12px rgba(79, 109, 176, 0.34);
}

.service-card__icon:has(img)::before {
  display: none;
}

.service-card__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.service-card__content {
  max-width: 310px;
  margin-top: 40px;
}

.service-card h3 {
  color: var(--color-text);
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.76);
}

.service-card__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #8abaff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 0 0 18px rgba(18, 104, 255, 0.36);
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.service-card__link span {
  color: var(--color-accent-2);
  font-size: 17px;
  line-height: 1;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  color: var(--color-text);
  text-shadow: 0 0 22px rgba(18, 104, 255, 0.54);
  transform: translateX(2px);
}

.fleet-panel {
  min-height: 430px;
  margin-top: 14px;
}

.home-duo-grid .fleet-panel {
  min-height: 390px;
  margin-top: 0;
}

.fleet-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(8, 17, 28, 0.98) 0%, rgba(4, 9, 18, 0.98) 100%),
    radial-gradient(circle at 74% 16%, rgba(47, 140, 255, 0.24), transparent 28%);
}

.fleet-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.fleet-panel .panel-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.fleet-panel .panel-copy p:not(.eyebrow) {
  max-width: 430px;
  font-size: 15px;
}

.fleet-panel__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 16px;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background: rgba(6, 14, 27, 0.72);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.fleet-panel__link:hover {
  transform: translateY(-1px);
  border-color: rgba(89, 153, 255, 0.72);
  background: rgba(18, 104, 255, 0.12);
}

.fleet-slider {
  margin-top: 28px;
}

.fleet-slider__track {
  position: relative;
  min-height: 255px;
}

.fleet-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.fleet-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.fleet-slide img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.5));
}

.fleet-slide h3 {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.fleet-slide p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.fleet-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.fleet-slider__controls button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background: rgba(6, 14, 27, 0.72);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.fleet-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.fleet-slider__dots button {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border-color: transparent;
  background: rgba(169, 182, 201, 0.28);
}

.fleet-slider__dots button.is-active {
  background: var(--color-accent-2);
  box-shadow: 0 0 16px var(--color-accent-glow);
}

.transfers-panel {
  position: relative;
  display: block;
  min-height: 360px;
  margin-top: 14px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: clamp(28px, 3.4vw, 44px);
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.8) 42%, rgba(3, 8, 18, 0.38) 72%, rgba(3, 8, 18, 0.52) 100%),
    var(--transfers-bg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-card);
}

.transfers-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 62% 18%, rgba(47, 140, 255, 0.18), transparent 28%),
    linear-gradient(122deg, transparent 0 78%, rgba(18, 104, 255, 0.26) 78.2% 79.6%, transparent 79.8%);
}

.transfers-panel__content {
  max-width: 760px;
}

.transfers-panel h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.transfers-panel__text {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: clamp(15px, 1.15vw, 17px);
  text-transform: uppercase;
}

.transfers-panel .button {
  margin-top: 28px;
}

.transfers-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 650px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cargo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 560px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.transfers-list li {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.cargo-list li {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.transfers-list__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
}

.cargo-list__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
}

.transfers-list__icon::before {
  width: 26px;
  height: 26px;
  border: 2px solid #4f6db0;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 12px rgba(79, 109, 176, 0.34);
}

.cargo-list__icon::before {
  width: 26px;
  height: 26px;
  border: 2px solid #4f6db0;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 12px rgba(79, 109, 176, 0.34);
}

.transfers-list__icon:has(img)::before {
  display: none;
}

.cargo-list__icon:has(img)::before {
  display: none;
}

.transfers-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cargo-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.transfers-list__label span {
  display: block;
}
.car-rental-shell .transfers-list__label span {
  display: inline;
  font-size: 1rem;
}

.cargo-list__label span {
  display: block;
}

.transfers-list--about-story {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 650px);
}

.transfers-list--about-story li,
.transfers-list--about-story .transfers-list__label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.transfers-list--hero {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 28px;
}

.transfers-list--hero li {
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.cargo-panel {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 560px;
  margin-top: 14px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-surface);
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.9) 36%, rgba(3, 8, 18, 0.34) 70%, rgba(3, 8, 18, 0.6) 100%),
    var(--cargo-bg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-card);
}

.cargo-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(122deg, transparent 0 70%, rgba(18, 104, 255, 0.34) 70.2% 72%, transparent 72.2%),
    radial-gradient(circle at 76% 58%, rgba(47, 140, 255, 0.22), transparent 32%);
}

.cargo-panel__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, 56%);
  padding: clamp(34px, 5vw, 70px);
}

.cargo-panel h2 {
  max-width: 680px;
  font-size: clamp(34px, 4.6vw, 66px);
}

.cargo-panel__text {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: clamp(16px, 1.28vw, 18px);
}

.cargo-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cargo-panel__car {
  position: absolute;
  right: clamp(16px, 4vw, 72px);
  bottom: clamp(-36px, -2vw, -18px);
  z-index: 1;
  width: min(58%, 800px);
  max-height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.55));
}

.home-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.why-panel.car-rental-why-panel {
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.96) 0%, rgba(3, 8, 18, 0.82) 64%, rgba(3, 8, 18, 0.8) 100%),
    var(--why-bg, radial-gradient(circle at 82% 18%, rgba(47, 140, 255, 0.24), transparent 30%));
}
.why-panel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  isolation: isolate;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-surface);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-card);
}

.why-panel {
  background-position: 80% center;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.96) 0%, rgba(3, 8, 18, 0.82) 64%, rgba(3, 8, 18, 0.5) 100%),
    var(--why-bg, radial-gradient(circle at 82% 18%, rgba(47, 140, 255, 0.24), transparent 30%));
}

.duo-panel__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.2vw, 42px);
}

.why-panel h2 {
  max-width: 560px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
}

.duo-panel__content p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  width: min(100%, 780px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
}

@media (min-width: 1021px) {
  .car-rental-why-panel .why-list li:nth-child(even) {
    transform: translateY(27px);
  }
}

.why-list__icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
}

.why-list__icon::before {
  width: 24px;
  height: 24px;
  border: 2px solid #4f6db0;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 12px rgba(79, 109, 176, 0.34);
}

.why-list__icon:has(img)::before {
  display: none;
}

.why-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: 430px;
  margin-top: 14px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 52px);
  background-color: var(--color-surface);
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.86) 48%, rgba(3, 8, 18, 0.5) 100%),
    var(--contact-bg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-card);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 72% 28%, rgba(47, 140, 255, 0.22), transparent 30%),
    linear-gradient(122deg, transparent 0 76%, rgba(18, 104, 255, 0.24) 76.2% 77.6%, transparent 77.8%);
}

.contact-panel__content {
  position: relative;
  z-index: 1;
}

.contact-panel h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
}

.contact-panel__text {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(16px, 1.25vw, 18px);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
}

.contact-links > a,
.contact-links > span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(71, 133, 255, 0.28);
  border-radius: 999px;
  background: rgba(6, 14, 27, 0.62);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-links > a:hover {
  border-color: rgba(89, 153, 255, 0.72);
  color: var(--color-text);
}

.contact-links__item {
  gap: 8px;
}

.contact-links .site-footer__contact-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(71, 133, 255, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(8, 17, 28, 0.96) 0%, rgba(4, 9, 18, 0.96) 100%),
    radial-gradient(circle at 84% 10%, rgba(47, 140, 255, 0.2), transparent 30%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.contact-form h3 {
  margin: 0 0 4px;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-form .wpcf7 {
  margin-top: 14px;
}

.contact-form form {
  display: grid;
  gap: 14px;
}

.contact-form p {
  margin: 0;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 7px;
}

.contact-form__field {
  display: grid;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(99, 130, 170, 0.32);
  border-radius: 8px;
  background: rgba(3, 8, 18, 0.74);
  color: var(--color-text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form__field input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form__field textarea {
  height: 112px;
  min-height: 112px;
  resize: vertical;
  padding: 12px 14px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: rgba(89, 153, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(18, 104, 255, 0.14);
}

.contact-form .wpcf7-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact-form .wpcf7-response-output {
  display: none;
}

.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  color: #ffd0d0;
  font-size: 13px;
  font-weight: 600;
}

.contact-form .wpcf7-spinner {
  margin: 0 auto;
}

body.is-contact-modal-open {
  overflow: hidden;
}

body.is-contact-success-modal-open {
  overflow: hidden;
}

body.is-image-modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-success-modal[hidden] {
  display: none;
}

.image-modal[hidden] {
  display: none;
}

.contact-modal,
.contact-success-modal,
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal__backdrop,
.contact-success-modal__backdrop,
.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(18, 104, 255, 0.2), transparent 38%),
    rgba(1, 4, 10, 0.78);
  backdrop-filter: blur(18px);
}

.contact-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(22px, 3.5vw, 44px);
  width: min(1040px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  isolation: isolate;
  border: 1px solid var(--color-border-strong);
  border-radius: 14px;
  padding: clamp(24px, 3.4vw, 44px);
  background:
    linear-gradient(105deg, rgba(3, 8, 18, 0.98) 0%, rgba(5, 13, 28, 0.95) 54%, rgba(3, 8, 18, 0.98) 100%),
    var(--contact-popup-bg, linear-gradient(135deg, rgba(6, 18, 38, 0.74), rgba(3, 8, 18, 0.3))),
    radial-gradient(circle at 74% 20%, rgba(47, 140, 255, 0.24), transparent 28%);
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72), 0 0 44px rgba(18, 104, 255, 0.2);
  outline: none;
}

.contact-modal__dialog::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(122deg, transparent 0 72%, rgba(18, 104, 255, 0.34) 72.2% 73.6%, transparent 73.8%),
    radial-gradient(circle at 82% 64%, rgba(47, 140, 255, 0.18), transparent 30%);
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(71, 133, 255, 0.36);
  border-radius: 8px;
  background: rgba(6, 14, 27, 0.74);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible {
  border-color: rgba(89, 153, 255, 0.72);
  background: rgba(18, 104, 255, 0.16);
  box-shadow: 0 0 22px rgba(18, 104, 255, 0.2);
  outline: none;
}

.contact-modal__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding-right: 10px;
}

.contact-modal__copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-modal__copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 17px;
}

.contact-modal__form {
  align-self: center;
}

.contact-success-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 430px);
  justify-items: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(73, 210, 146, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(73, 210, 146, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 17, 28, 0.98) 0%, rgba(4, 9, 18, 0.98) 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56), 0 0 34px rgba(73, 210, 146, 0.14);
  text-align: center;
}

.contact-success-modal__dialog:focus {
  outline: none;
}

.contact-success-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(99, 130, 170, 0.3);
  border-radius: 50%;
  background: rgba(3, 8, 18, 0.72);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-success-modal__close:hover,
.contact-success-modal__close:focus-visible {
  border-color: rgba(73, 210, 146, 0.6);
  background: rgba(73, 210, 146, 0.12);
  box-shadow: 0 0 18px rgba(73, 210, 146, 0.2);
  outline: none;
}

.contact-success-modal__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(73, 210, 146, 0.54);
  border-radius: 50%;
  background: rgba(73, 210, 146, 0.12);
  color: #bff7dc;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(73, 210, 146, 0.18);
}

.contact-success-modal__dialog h2 {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.04;
  text-transform: uppercase;
}

.contact-success-modal__dialog p {
  max-width: 320px;
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 16px;
}

.contact-success-modal__button {
  margin-top: 24px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.image-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1180px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  outline: none;
}

.image-modal__image {
  display: block;
  max-width: min(1180px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border: 1px solid rgba(99, 130, 170, 0.28);
  border-radius: 8px;
  background: rgba(3, 8, 18, 0.88);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72), 0 0 44px rgba(18, 104, 255, 0.16);
  object-fit: contain;
}

.image-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(71, 133, 255, 0.36);
  border-radius: 8px;
  background: rgba(6, 14, 27, 0.78);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.image-modal__close:hover,
.image-modal__close:focus-visible {
  border-color: rgba(89, 153, 255, 0.72);
  background: rgba(18, 104, 255, 0.16);
  box-shadow: 0 0 22px rgba(18, 104, 255, 0.2);
  outline: none;
}

.about-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 48px;
}

.about-hero,
.about-story,
.about-benefits,
.about-stats {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.about-hero {
  display: flex;
  align-items: stretch;
  min-height: 640px;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.88) 34%, rgba(3, 8, 18, 0.34) 70%, rgba(3, 8, 18, 0.58) 100%),
    var(--about-hero-bg);
  background-position: center;
  background-size: cover;
}

.about-hero::before,
.about-story::before,
.about-benefits::before,
.about-stats::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(122deg, transparent 0 74%, rgba(18, 104, 255, 0.24) 74.2% 75.6%, transparent 75.8%),
    radial-gradient(circle at 76% 34%, rgba(47, 140, 255, 0.18), transparent 28%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(700px, 58%);
  padding: clamp(34px, 5vw, 76px);
}

.about-hero__car {
  position: absolute;
  right: clamp(16px, 4vw, 72px);
  bottom: clamp(-36px, -2vw, -18px);
  z-index: 1;
  width: min(58%, 820px);
  max-height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.55));
}

.about-hero h1,
.about-story h2,
.about-benefits h2 {
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.about-hero h1 {
  max-width: 640px;
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: 0.98;
}

.about-hero__text {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--color-text);
  font-size: clamp(16px, 1.2vw, 18px);
}

.about-hero .button {
  width: fit-content;
  margin-top: 30px;
}

.about-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.about-mini-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 110px);
  gap: 10px;
  align-items: center;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.about-mini-list__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(18, 104, 255, 0.32);
}

.about-mini-list__icon:has(img) {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-mini-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-story {
  min-height: 420px;
  margin-top: 14px;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.9) 42%, rgba(3, 8, 18, 0.42) 70%, rgba(3, 8, 18, 0.2) 100%),
    var(--about-story-bg);
  background-position: center right;
  background-size: cover;
}

.about-story__content {
  display: flex;
  min-height: 420px;
  width: min(700px, 58%);
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
}

.about-story h2,
.about-benefits h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.about-story__text {
  max-width: 560px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 16px;
}

.about-story__text p {
  margin: 0 0 16px;
}

.about-story__text p:last-child {
  margin-bottom: 0;
}

.about-benefits {
  margin-top: 14px;
  padding: clamp(30px, 4vw, 58px);
  background-image:
    linear-gradient(180deg, rgba(3, 8, 18, 0.82) 0%, rgba(3, 8, 18, 0.72) 100%),
    var(--about-benefits-bg, radial-gradient(circle at 82% 18%, rgba(47, 140, 255, 0.18), transparent 32%));
  background-position: center;
  background-size: cover;
}

.about-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-benefit-card,
.about-stat-card {
  border: 1px solid rgba(99, 130, 170, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(8, 17, 28, 0.82) 0%, rgba(4, 9, 18, 0.92) 100%),
    radial-gradient(circle at 80% 8%, rgba(47, 140, 255, 0.16), transparent 34%);
}

.about-benefit-card {
  min-height: 220px;
  padding: 18px;
}

.about-benefit-card img {
  width: 100%;
  aspect-ratio: 1.65;
  border-radius: 8px;
  object-fit: cover;
}

.about-benefit-card h3 {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.2;
}

.about-benefit-card p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.about-stats {
  margin-top: 14px;
  padding: clamp(28px, 3.6vw, 46px);
  background-image:
    linear-gradient(180deg, rgba(3, 8, 18, 0.84) 0%, rgba(3, 8, 18, 0.72) 100%),
    var(--about-stats-bg, radial-gradient(circle at 82% 16%, rgba(47, 140, 255, 0.16), transparent 34%));
  background-position: center;
  background-size: cover;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-stat-card {
  display: grid;
  min-height: 128px;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  padding: 22px 26px;
}

.about-stat-card__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(18, 104, 255, 0.28);
}

.about-stat-card__icon:has(img) {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-stat-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-stat-card strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.about-stat-card p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.25;
}

.autopark-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 48px;
}

.autopark-hero,
.autopark-categories,
.autopark-brands,
.autopark-benefits,
.autopark-gallery,
.autopark-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.autopark-hero {
  min-height: 660px;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.99) 0%, rgba(3, 8, 18, 0.91) 36%, rgba(3, 8, 18, 0.34) 72%, rgba(3, 8, 18, 0.62) 100%),
    var(--autopark-hero-bg);
  background-position: center;
  background-size: cover;
}

.autopark-hero::before,
.autopark-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(122deg, transparent 0 70%, rgba(18, 104, 255, 0.28) 70.2% 71.4%, transparent 71.6%),
    radial-gradient(circle at 74% 34%, rgba(47, 140, 255, 0.2), transparent 30%);
}

.autopark-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 660px;
  width: min(720px, 58%);
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
}

.autopark-hero__car {
  position: absolute;
  right: clamp(-20px, 1.8vw, 38px);
  bottom: 8vw;
  z-index: 1;
  width: min(58%, 780px);
  max-height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.58));
}

.autopark-hero h1,
.autopark-categories h2,
.autopark-brands h2,
.autopark-gallery h2,
.autopark-cta h2 {
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.autopark-hero h1 {
  max-width: 660px;
  font-size: clamp(42px, 5.6vw, 78px);
}

.autopark-hero__meta {
  max-width: 640px;
  margin: 22px 0 0;
  color: #86b7ff;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
}

.autopark-hero__text {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

.autopark-model-list,
.autopark-check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.autopark-model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
}

.autopark-model-list li::before {
  display: inline-block;
  width: 18px;
  margin-right: 10px;
  color: var(--color-accent-2);
  content: "—";
}

.autopark-check-list {
  max-width: 560px;
  margin-top: 34px;
}

.autopark-check-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--color-text);
  font-weight: 600;
}

.autopark-check-list__icon,
.autopark-card-icon,
.autopark-benefit__icon {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(79, 109, 176, 0.72);
  background: rgba(18, 104, 255, 0.08);
  box-shadow: 0 0 18px rgba(18, 104, 255, 0.18);
}

.autopark-check-list__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.autopark-check-list__icon::before {
  color: var(--color-accent-2);
  content: "✓";
  font-size: 14px;
  font-weight: 800;
}

.autopark-check-list__icon:has(img)::before,
.autopark-card-icon:has(img)::before,
.autopark-benefit__icon:has(img)::before {
  content: none;
}

.autopark-check-list__icon img,
.autopark-card-icon img,
.autopark-benefit__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.autopark-hero .button {
  width: fit-content;
  margin-top: 34px;
}

.autopark-categories,
.autopark-brands,
.autopark-benefits,
.autopark-gallery,
.autopark-cta {
  margin-top: 14px;
  padding: clamp(26px, 3.8vw, 50px);
}

.autopark-categories h2,
.autopark-brands h2,
.autopark-gallery h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.autopark-category-grid,
.autopark-brand-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.autopark-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.autopark-brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.autopark-category-card,
.autopark-brand-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(99, 130, 170, 0.32);
  border-radius: 10px;
  background-image:
    linear-gradient(180deg, rgba(8, 17, 28, 0.94) 0%, rgba(4, 9, 18, 0.76) 42%, rgba(4, 9, 18, 0.34) 68%, rgba(4, 9, 18, 0.1) 100%),
    var(--autopark-card-bg),
    radial-gradient(circle at 84% 8%, rgba(47, 140, 255, 0.18), transparent 34%);
  background-position: center, center bottom, center;
  background-size: cover, cover, cover;
}

.autopark-category-card::before,
.autopark-brand-card::before,
.autopark-benefits::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(130deg, transparent 0 68%, rgba(18, 104, 255, 0.08) 68.2% 69.2%, transparent 69.4%),
    radial-gradient(circle at 12% 0%, rgba(18, 104, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.autopark-category-card > *,
.autopark-brand-card > *,
.autopark-benefits > * {
  position: relative;
  z-index: 1;
}

.autopark-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.autopark-card-icon::before {
  width: 18px;
  height: 18px;
  border: 2px solid #4f6db0;
  border-radius: 999px;
  content: "";
}

.autopark-category-card h3,
.autopark-brand-card h3,
.autopark-benefit h3 {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 21px;
  line-height: 1.15;
  text-transform: uppercase;
}

.autopark-category-card p,
.autopark-brand-card p,
.autopark-benefit p,
.autopark-cta p {
  color: var(--color-muted);
  line-height: 1.5;
}

.autopark-category-card p,
.autopark-brand-card p {
  max-width: 290px;
  margin: 14px 0 0;
  font-size: 15px;
}

.autopark-category-card__car,
.autopark-brand-card__car {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  width: min(78%, 330px);
  max-height: 44%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.55));
}

.autopark-brand-card {
  min-height: 360px;
}

.autopark-brand-card__logo {
  width: 68px;
  height: 48px;
  object-fit: contain;
  opacity: 0.9;
}

.autopark-brand-card__car {
  width: min(84%, 400px);
  max-height: 50%;
}

.autopark-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.autopark-benefit {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  min-height: 190px;
  align-items: center;
  padding: clamp(24px, 3vw, 42px);
}

.autopark-benefit + .autopark-benefit {
  border-left: 1px solid rgba(99, 130, 170, 0.28);
}

.autopark-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.autopark-benefit__icon::before {
  width: 18px;
  height: 18px;
  border: 2px solid #4f6db0;
  border-radius: 999px;
  content: "";
}

.autopark-benefit h3 {
  margin-top: 0;
}

.autopark-benefit p {
  margin: 12px 0 0;
  font-size: 15px;
}

.autopark-gallery {
  background-image:
    radial-gradient(circle at 12% 0%, rgba(47, 140, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(4, 11, 21, 0.96), rgba(9, 22, 42, 0.88));
}

.autopark-gallery__head {
  max-width: 760px;
}

.autopark-gallery__head p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}

.autopark-gallery__stage {
  position: relative;
  margin-top: 30px;
}

.autopark-gallery__controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.autopark-gallery__controls button {
  position: absolute;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(126, 157, 210, 0.42);
  border-radius: 10px;
  background: rgba(4, 11, 21, 0.86);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  color: var(--color-text);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.autopark-gallery__controls button:first-child {
  left: 10px;
}

.autopark-gallery__controls button:last-child {
  right: 10px;
}

.autopark-gallery__controls button:hover {
  border-color: rgba(79, 109, 176, 0.88);
  background: rgba(18, 104, 255, 0.2);
  transform: translateY(-50%) scale(1.03);
}

.autopark-gallery__viewport {
  display: flex;
  gap: 18px;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.autopark-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.autopark-gallery__card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  aspect-ratio: 1.18;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(126, 157, 210, 0.22);
  border-radius: 12px;
  background: rgba(4, 11, 21, 0.72);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}

.home-gallery .autopark-gallery__card {
  flex-basis: calc((100% - 18px) / 2);
  aspect-ratio: auto;
  background: rgba(4, 11, 21, 0.92);
}

.home-gallery__head {
  max-width: 860px;
}

.home-gallery__head .eyebrow {
  margin: 0 0 18px;
  color: var(--color-accent-2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.home-gallery__head h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.98;
}

.home-gallery__head p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

.home-gallery .autopark-gallery__card img {
  height: auto;
  object-fit: contain;
}

.home-gallery__image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
}

.home-gallery__image-button:focus-visible {
  outline: 2px solid rgba(89, 153, 255, 0.8);
  outline-offset: 4px;
}

.autopark-gallery__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autopark-cta:not(.leasing-cta) {
  min-height: 360px;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.88) 42%, rgba(3, 8, 18, 0.3) 100%),
    var(--autopark-cta-bg);
  background-position: center right;
  background-size: cover;
}

.autopark-cta:not(.leasing-cta) > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 260px;
  width: min(620px, 62%);
  flex-direction: column;
  justify-content: center;
}

.autopark-cta:not(.leasing-cta) h2 {
  max-width: 580px;
  font-size: clamp(32px, 4vw, 56px);
}

.autopark-cta:not(.leasing-cta) p {
  max-width: 420px;
  margin: 20px 0 0;
  font-size: 17px;
}

.autopark-cta:not(.leasing-cta) .button {
  width: fit-content;
  margin-top: 28px;
}

.contacts-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 48px;
}

.contacts-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(360px, 0.48fr);
  grid-template-rows: 1fr auto;
  gap: clamp(22px, 3vw, 40px);
  min-height: calc(100vh - 154px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-surface);
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.99) 0%, rgba(3, 8, 18, 0.9) 34%, rgba(3, 8, 18, 0.42) 72%, rgba(3, 8, 18, 0.6) 100%),
    var(--contacts-bg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-card);
}

.contacts-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 65% 48%, rgba(47, 140, 255, 0.2), transparent 32%),
    linear-gradient(122deg, transparent 0 77%, rgba(18, 104, 255, 0.22) 77.2% 78.4%, transparent 78.6%);
}

.contacts-panel__copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  max-width: 660px;
}

.contacts-panel h1 {
  max-width: 660px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(40px, 4.3vw, 60px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.contacts-panel__text {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.contacts-quick-list {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contacts-quick-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-accent-2);
  border-radius: 0 8px 8px 0;
  background: rgba(4, 11, 21, 0.7);
}

.contacts-list__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(79, 109, 176, 0.56);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(79, 109, 176, 0.24);
}

.contacts-list__icon::before {
  width: 22px;
  height: 22px;
  border: 2px solid #4f6db0;
  border-radius: 50%;
  content: "";
}

.contacts-list__icon:has(img)::before {
  display: none;
}

.contacts-list__icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.contacts-quick-list strong,
.contacts-detail-list strong {
  display: block;
  color: var(--color-accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contacts-quick-list a,
.contacts-quick-list div > span {
  display: block;
  margin-top: 7px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.35;
}

.contacts-panel__form {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  width: 100%;
  border-radius: 8px;
  background: rgb(4 11 21 / 70%);
}

.contacts-panel__form h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.contacts-panel__form-note {
  margin: 12px 0 0;
  color: var(--color-muted-2);
  font-size: 13px;
}

.contacts-detail-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin: 0;
  padding: 22px 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(4, 11, 21, 0.76);
  list-style: none;
}

.contacts-detail-list li {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid rgba(99, 130, 170, 0.2);
}

.contacts-detail-list li:last-child {
  border-right: 0;
}

.contacts-detail-list p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.leasing-shell {
  display: grid;
  gap: 14px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto 14px;
}

.leasing-hero,
.leasing-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-card);
}

.leasing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  padding: clamp(36px, 5vw, 78px);
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.96) 0%, rgba(3, 8, 18, 0.78) 48%, rgba(3, 8, 18, 0.32) 100%),
    var(--leasing-hero-bg);
}

.leasing-hero::before,
.leasing-cta::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.leasing-hero::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(18, 104, 255, 0.2), transparent 30%),
    radial-gradient(circle at 74% 76%, rgba(47, 140, 255, 0.2), transparent 34%);
}

.leasing-hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
}

.leasing-hero h1,
.leasing-section-head h2,
.leasing-cta h2 {
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.leasing-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.2vw, 88px);
}

.leasing-hero__text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.leasing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.leasing-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 42px 0 0;
}

.leasing-metrics .transfers-list__label {
  font-size: 15px;
}

.leasing-metrics .transfers-list__label span:first-child {
  color: var(--color-text);
  font-size: clamp(19px, 1.7vw, 25px);
}

.leasing-hero__car {
  position: absolute;
  right: 8vw;
  bottom: -12vw;
  z-index: 1;
  width: min(52%, 650px);
  object-fit: contain;
  filter: drop-shadow(0 38px 48px rgba(0, 0, 0, 0.58));
}

.leasing-tariffs,
.leasing-process {
  --leasing-section-bg-image: none;

  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(7, 15, 27, 0.88) 0%, rgba(4, 9, 18, 0.66) 100%),
    radial-gradient(circle at 92% 0%, rgba(18, 104, 255, 0.18), transparent 30%),
    var(--leasing-section-bg-image);
  background-position: center;
  background-size: cover;
}

.leasing-section-head {
  max-width: 790px;
}

.leasing-section-head h2 {
  font-size: clamp(32px, 4.2vw, 62px);
}

.leasing-section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

.leasing-tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.leasing-tariff-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3.3vw, 46px);
  border: 1px solid rgba(99, 130, 170, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(10, 22, 36, 0.26) 0%, rgba(4, 9, 18, 0.98) 100%),
    radial-gradient(circle at 90% 8%, rgba(79, 109, 176, 0.22), transparent 32%);
  box-shadow: var(--shadow-card);
}

.leasing-tariff-card--accent {
  border-color: rgba(71, 133, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(11, 26, 46, 0.96) 0%, rgba(4, 9, 18, 0.98) 100%),
    radial-gradient(circle at 86% 4%, rgba(18, 104, 255, 0.3), transparent 34%);
}

.leasing-tariff-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.leasing-tariff-card__price {
  margin: 22px 0 0;
}

.leasing-tariff-card__price strong {
  display: block;
  color: var(--color-accent-2);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.leasing-tariff-card__price span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.leasing-feature-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leasing-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.45;
}

.leasing-feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-accent-2);
  content: "→";
  font-weight: 800;
}

.leasing-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.leasing-process-card {
  min-height: 270px;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(99, 130, 170, 0.24);
  border-radius: 14px;
  background:
  linear-gradient(180deg, rgba(4, 9, 18, 0.5) 0%, rgba(4, 9, 18, 0.56) 48%, rgba(4, 9, 18, 0.3) 100%),
  linear-gradient(90deg, rgba(4, 9, 18, 0.94) 0%, rgba(4, 9, 18, 0.2) 58%, rgba(4, 9, 18, 0.14) 100%),
  var(--leasing-process-card-bg, radial-gradient(circle at 88% 0%, rgba(18, 104, 255, 0.16), transparent 34%));
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.leasing-process-card > span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(79, 109, 176, 0.48);
  border-radius: 14px;
  background: rgba(18, 104, 255, 0.12);
  color: var(--color-accent-2);
  font-size: 15px;
  font-weight: 800;
}

.leasing-process-card h3 {
  margin: 34px 0 0;
  color: var(--color-text);
  font-size: clamp(21px, 1.5vw, 28px);
  line-height: 1.08;
  text-transform: uppercase;
}

.leasing-process-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.leasing-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 28px;
  min-height: 430px;
  padding: clamp(28px, 4vw, 56px);
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.96) 0%, rgba(3, 8, 18, 0.78) 52%, rgba(3, 8, 18, 0.62) 100%),
    var(--leasing-cta-bg);
}

.leasing-cta::before {
  background: radial-gradient(circle at 15% 18%, rgba(18, 104, 255, 0.18), transparent 34%);
}

.leasing-cta__copy,
.leasing-cta__form {
  position: relative;
  z-index: 1;
}

.leasing-cta__copy {
  align-self: center;
  max-width: 720px;
}

.leasing-cta h2 {
  font-size: clamp(34px, 4.8vw, 68px);
}

.leasing-cta__copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

.leasing-cta__form {
  align-self: center;
}

.purchase-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.purchase-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.purchase-trust-card {
  min-height: 420px;
}

.purchase-trust-card__text {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.management-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.5vw, 62px);
}

.management-profit-card h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  overflow-wrap: normal;
}

.taxi-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.4vw, 76px);
}

.taxi-hero__car {
  bottom: -7vw;
  right: 18vw;
}

.taxi-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.taxi-list-panel {
  min-height: 430px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(99, 130, 170, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(10, 22, 36, 0.96) 0%, rgba(4, 9, 18, 0.18) 100%),
    radial-gradient(circle at 88% 8%, rgba(79, 109, 176, 0.2), transparent 34%);
  box-shadow: var(--shadow-card);
}

.taxi-list-panel--accent {
  border-color: rgba(71, 133, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(11, 26, 46, 0.96) 0%, rgba(4, 9, 18, 0.98) 100%),
    radial-gradient(circle at 86% 4%, rgba(18, 104, 255, 0.28), transparent 34%);
}

.taxi-list-panel h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.taxi-list-panel > p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.taxi-feature-list {
  margin-top: 26px;
}

.taxi-feature-list li {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.taxi-list-panel--accent .taxi-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  padding-left: 0;
}

.taxi-list-panel--accent .taxi-feature-list li::before {
  position: static;
  flex: 0 0 auto;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  content: "✓";
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 0 12px rgba(18, 104, 255, 0.34);
}

.cargo-service-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 76px);
}

.cargo-service-hero__car {
  right: 12vw;
  bottom: 6vw;
}

.cargo-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.cargo-delivery-panel {
  min-height: 470px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(99, 130, 170, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(10, 22, 36, 0.96) 0%, rgba(4, 9, 18, 0.18) 100%),
    radial-gradient(circle at 88% 8%, rgba(79, 109, 176, 0.2), transparent 34%);
  box-shadow: var(--shadow-card);
}

.cargo-delivery-panel--accent {
  border-color: rgba(71, 133, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(11, 26, 46, 0.96) 0%, rgba(4, 9, 18, 0.98) 100%),
    radial-gradient(circle at 86% 4%, rgba(18, 104, 255, 0.28), transparent 34%);
}

.cargo-delivery-panel h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.cargo-delivery-panel > p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.cargo-delivery-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cargo-delivery-list li {
  position: relative;
  min-height: 22px;
  padding-left: 28px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cargo-delivery-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--color-accent);
  content: "→";
  font-size: 15px;
  line-height: 1;
}

.cargo-delivery-list--checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  padding-left: 0;
}

.cargo-delivery-list--checks li::before {
  position: static;
  flex: 0 0 auto;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  content: "✓";
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 0 12px rgba(18, 104, 255, 0.34);
}

.cargo-service-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cargo-service-why-card {
  min-height: 300px;
}

.transfer-service-hero h1 {
  max-width: 800px;
  font-size: clamp(42px, 5.2vw, 74px);
}

.transfer-service-hero__car {
  right: 10vw;
  bottom: -7vw;
}

.transfer-service-panel-section .transfers-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.transfer-service-why-card {
  min-height: 290px;
}

.purchase-shell > *,
.purchase-shell .leasing-hero__content,
.purchase-shell .leasing-section-head,
.purchase-shell .leasing-cta__copy,
.purchase-shell .leasing-cta__form {
  min-width: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, 0.62fr) minmax(170px, 0.74fr) minmax(220px, 0.95fr);
  align-items: start;
  gap: 24px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 48px;
  color: var(--color-muted);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer__brand span {
  max-width: 360px;
}

.site-footer__menu {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu a {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-muted);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-footer__contacts {
  color: var(--color-muted);
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
  border-color: rgba(71, 133, 255, 0.32);
  background: rgba(18, 104, 255, 0.12);
  color: var(--color-text);
  box-shadow: 0 0 20px rgba(18, 104, 255, 0.16);
  outline: none;
}

.site-footer__contacts {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.site-footer__contacts a {
  color: var(--color-muted);
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__contact-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  object-fit: contain;
}

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

.site-footer strong {
  color: var(--color-text);
}

.empty-state {
  display: grid;
  min-height: 60vh;
  place-items: center;
}

@media (max-width: 1020px) {
  .site-nav {
    display: none;
  }

  .site-menu-toggle {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-card {
    min-height: 620px;
  }

  .hero-card__content {
    width: min(680px, 68%);
  }

  .hero-card__car {
    width: min(62%, 620px);
  }

  .transfers-list--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 540px;
  }

  .home-duo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .fleet-panel {
    min-height: 430px;
  }

  .transfers-panel {
    min-height: 420px;
  }

  .cargo-panel {
    min-height: 540px;
  }

  .cargo-panel__content {
    width: min(680px, 68%);
  }

  .cargo-panel__car {
    width: min(62%, 620px);
  }

  .leasing-hero,
  .leasing-cta {
    grid-template-columns: 1fr;
  }

  .leasing-hero__content {
    max-width: 720px;
  }

  .leasing-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-support-grid,
  .purchase-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taxi-offer-grid,
  .cargo-delivery-grid {
    grid-template-columns: 1fr;
  }

  .leasing-hero__car {
    right: -80px;
    bottom: 24px;
    width: min(70%, 620px);
  }

  .transfers-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .transfer-service-panel-section .transfers-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cargo-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 520px;
  }

  .why-panel,
  .duo-panel__content {
    min-height: 360px;
  }

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

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

  .contact-modal__copy {
    min-height: 0;
    padding-right: 48px;
  }

  .about-hero,
  .about-story {
    min-height: 620px;
  }

  .about-hero__content {
    width: min(680px, 68%);
  }

  .about-story__content {
    width: min(680px, 68%);
  }

  .about-hero__car {
    width: min(62%, 620px);
  }

  .about-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .autopark-hero {
    min-height: 620px;
  }

  .autopark-hero__content {
    width: min(680px, 68%);
  }

  .autopark-hero__car {
    right: 12px;
    bottom: 34px;
    width: min(50%, 520px);
    max-height: 46%;
  }

  .autopark-category-grid,
  .autopark-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .autopark-benefits {
    grid-template-columns: 1fr;
  }

  .autopark-benefit + .autopark-benefit {
    border-top: 1px solid rgba(99, 130, 170, 0.28);
    border-left: 0;
  }

  .autopark-gallery__card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .home-gallery .autopark-gallery__card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .autopark-cta > div {
    width: min(680px, 72%);
  }

  .contacts-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .contacts-panel__copy,
  .contacts-panel__form,
  .contacts-detail-list {
    grid-column: 1;
    grid-row: auto;
  }

  .contacts-panel__form {
    align-self: auto;
  }

  .contacts-detail-list {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header,
  .home-shell,
  .about-shell,
  .autopark-shell,
  .contacts-shell,
  .leasing-shell,
  .site-footer {
    width: min(100% - 28px, 1440px);
  }

  .site-header {
    min-height: 66px;
    gap: 10px;
  }

  .site-lang-nav {
    margin-left: auto;
  }

  .site-lang-nav__list {
    gap: 4px;
    font-size: 12px;
  }

  .site-lang-nav__list a,
  .site-lang-nav__list span {
    min-height: 36px;
    padding: 0 10px;
  }

  .site-logo__mark {
    width: 38px;
    height: 38px;
  }

  .site-logo__image {
    max-width: 132px;
    height: 38px;
  }

  .site-header__cta {
    display: none;
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .home-shell {
    padding-top: 8px;
  }

  .hero-card {
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.78) 46%, rgba(3, 8, 18, 0.72) 100%),
      var(--hero-bg);
  }

  .hero-card__content {
    justify-content: flex-start;
    width: 100%;
    padding: 30px 22px 120px 22px;
  }

  .hero-card h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.04;
  }

  .hero-card__text {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-card__actions {
    margin-top: 28px;
  }

  .transfers-list--hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .leasing-hero.cargo-service-hero {
    padding: 30px 22px 100px 22px;
  }
  .leasing-hero.taxi-hero {
    padding: 30px 22px 80px 22px;
  }

  .leasing-hero {
    padding: 30px 22px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.82) 58%, rgba(3, 8, 18, 0.64) 100%),
      var(--leasing-hero-bg);
  }

  .leasing-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.04;
  }

  .leasing-hero__text {
    margin-top: 22px;
    font-size: 16px;
  }

  .leasing-hero__actions {
    margin-top: 28px;
  }

  .leasing-metrics {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .leasing-hero__car {
    right: -78px;
    bottom: 14px;
    width: 118%;
  }

  .purchase-hero__car {
    right: 0;
    bottom: -20vw;
    width: 94%;
  }

  .purchase-shell h2 {
    overflow-wrap: anywhere;
  }

  .purchase-hero h1 {
    font-size: clamp(32px, 9.6vw, 40px);
    overflow-wrap: normal;
  }

  .leasing-tariffs,
  .leasing-process,
  .leasing-cta {
    padding: 28px 20px;
  }

  .leasing-section-head h2,
  .leasing-cta h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .leasing-tariff-grid,
  .leasing-process-grid,
  .purchase-support-grid,
  .purchase-trust-grid {
    grid-template-columns: 1fr;
  }

  .leasing-tariff-card,
  .leasing-process-card,
  .taxi-list-panel {
    min-height: 0;
  }

  .leasing-process-card h3 {
    margin-top: 24px;
  }

  .leasing-cta {
    min-height: 0;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.78) 100%),
      var(--leasing-cta-bg);
  }

  .hero-card__car {
    right: -72px;
    width: 118%;
    max-width: none;
    max-height: 23%;
  }

  .services-grid-panel {
    margin-top: 12px;
    padding: 10px;
  }

  .services-card-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 6px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .services-intro-card,
  .service-card {
    flex: 0 0 80%;
    min-height: 245px;
    padding: 24px 20px;
    scroll-snap-align: start;
  }

  .services-intro-card h2,
  .panel-copy h2,
  .fleet-panel .panel-copy h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .services-intro-card__arrow {
    width: 52px;
    height: 52px;
  }

  .services-intro-card__arrow::before {
    transform: translateY(-0.04em);
  }

  .service-card__content {
    margin-top: 34px;
  }

  .fleet-panel {
    min-height: 500px;
    padding: 26px 22px;
  }

  .panel-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .fleet-panel__head {
    flex-direction: column;
    gap: 14px;
  }

  .fleet-slider__track {
    min-height: 270px;
  }

  .fleet-slide img {
    max-height: 170px;
  }

  .transfers-panel {
    min-height: 560px;
    padding: 26px 22px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.78) 48%, rgba(3, 8, 18, 0.84) 100%),
      var(--transfers-bg);
  }

  .transfers-panel h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .transfers-panel .button {
    width: 100%;
    margin-top: 28px;
  }

  .transfers-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .transfer-service-panel-section .transfers-list {
    grid-template-columns: 1fr;
  }

  .cargo-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .transfers-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
  }

  .cargo-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
  }

  .cargo-panel {
    min-height: 760px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.78) 46%, rgba(3, 8, 18, 0.72) 100%),
      var(--cargo-bg);
  }

  .cargo-panel__content {
    justify-content: flex-start;
    width: 100%;
    padding: 30px 22px;
  }

  .cargo-panel h2 {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.04;
  }

  .cargo-panel__text {
    margin-top: 22px;
    font-size: 16px;
  }

  .cargo-panel__actions {
    margin-top: 28px;
  }

  .cargo-panel__car {
    right: -72px;
    bottom: 16px;
    width: 118%;
    max-width: none;
    max-height: 38%;
  }

  .home-duo-grid {
    margin-top: 12px;
  }

  .why-panel {
    min-height: 360px;
  }

  .duo-panel__content {
    min-height: 360px;
    padding: 26px 22px;
  }

  .why-panel h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .why-list {
    grid-template-columns: 1fr;
    width: min(100%, 460px);
  }

  .contact-panel {
    min-height: 0;
    padding: 28px 22px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.82) 48%, rgba(3, 8, 18, 0.9) 100%),
      var(--contact-bg);
  }

  .contact-panel h2 {
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.04;
  }

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

  .contact-links > a,
  .contact-links > span {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-modal {
    padding: 14px;
  }

  .contact-modal__dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 22px;
  }

  .contact-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .contact-modal__copy {
    padding-right: 44px;
  }

  .contact-modal__copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .contact-modal__copy p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 15px;
  }

  .about-shell {
    padding-top: 8px;
  }

  .about-hero,
  .about-story {
    min-height: 620px;
    background-position: center right;
  }

  .about-hero {
    min-height: 690px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.78) 46%, rgba(3, 8, 18, 0.72) 100%),
      var(--about-hero-bg);
  }

  .about-story {
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.88) 56%, rgba(3, 8, 18, 0.58) 100%),
      var(--about-story-bg);
  }

  .about-hero__content,
  .about-story__content {
    justify-content: flex-start;
    width: 100%;
    min-height: 620px;
    padding: 30px 22px;
  }

  .about-hero__car {
    right: -72px;
    bottom: -70px;
    width: 118%;
    max-width: none;
    max-height: 38%;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.04;
  }

  .about-story h2,
  .about-benefits h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

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

  .about-mini-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .about-mini-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .about-benefits,
  .about-stats {
    padding: 26px 22px;
  }

  .about-benefits__grid,
  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .about-benefit-card {
    min-height: 0;
  }

  .about-stat-card {
    min-height: 108px;
    padding: 20px;
  }

  .autopark-shell {
    padding-top: 8px;
  }

  .autopark-hero {
    min-height: 930px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.99) 0%, rgba(3, 8, 18, 0.84) 54%, rgba(3, 8, 18, 0.74) 100%),
      var(--autopark-hero-bg);
    background-position: center right;
  }

  .autopark-hero__content {
    justify-content: flex-start;
    width: 100%;
    min-height: 930px;
    padding: 30px 22px;
  }

  .autopark-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.04;
  }

  .autopark-hero__meta {
    font-size: 18px;
    line-height: 1.4;
  }

  .autopark-hero__car {
    right: -92px;
    bottom: 12px;
    width: 126%;
    max-width: none;
    max-height: 28%;
  }

  .autopark-model-list,
  .autopark-check-list {
    gap: 12px;
  }

  .autopark-model-list {
    display: grid;
  }

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

  .autopark-categories,
  .autopark-brands,
  .autopark-gallery,
  .autopark-cta:not(.leasing-cta) {
    padding: 26px 22px;
  }

  .autopark-gallery__head {
    max-width: none;
  }

  .autopark-gallery__head p {
    font-size: 15px;
  }

  .autopark-gallery__stage {
    margin-top: 24px;
  }

  .autopark-gallery__controls button {
    width: 46px;
    height: 46px;
  }

  .autopark-gallery__controls button:first-child {
    left: 8px;
  }

  .autopark-gallery__controls button:last-child {
    right: 8px;
  }

  .autopark-gallery__viewport {
    gap: 12px;
    margin-right: -22px;
    padding-right: 22px;
  }

  .autopark-gallery__card {
    flex: 0 0 80%;
    aspect-ratio: 0.92;
  }

  .home-gallery .autopark-gallery__card {
    flex: 0 0 80%;
  }

  .autopark-category-grid,
  .autopark-brand-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .autopark-category-card,
  .autopark-brand-card {
    min-height: 285px;
    padding: 24px 20px;
  }

  .autopark-category-card__car,
  .autopark-brand-card__car {
    width: min(76%, 300px);
    max-height: 38%;
  }

  .autopark-benefit {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 24px 20px;
  }

  .autopark-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .autopark-cta {
    min-height: 390px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.84) 62%, rgba(3, 8, 18, 0.7) 100%),
      var(--autopark-cta-bg);
  }

  .autopark-cta:not(.leasing-cta) > div {
    width: 100%;
    min-height: 300px;
  }

  .autopark-cta:not(.leasing-cta) h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .autopark-cta:not(.leasing-cta) .button {
    width: 100%;
  }

  .contacts-shell {
    padding-top: 8px;
  }

  .contacts-panel {
    gap: 22px;
    padding: 28px 22px;
    background-image:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.78) 50%, rgba(3, 8, 18, 0.9) 100%),
      var(--contacts-bg);
  }

  .contacts-panel h1 {
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.04;
  }

  .contacts-panel__text {
    margin-top: 22px;
    font-size: 16px;
  }

  .contacts-quick-list {
    margin-top: 26px;
  }

  .contacts-quick-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 70px;
    padding: 10px 12px;
  }

  .contacts-list__icon {
    width: 44px;
    height: 44px;
  }

  .contacts-detail-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .contacts-detail-list li {
    padding: 0;
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .site-footer__brand {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__nav,
  .site-footer__contacts {
    display: grid;
    width: min(100%, 260px);
    max-width: 100%;
    margin-inline: auto;
    justify-items: start;
    text-align: left;
  }

  .site-footer__menu {
    justify-items: start;
  }

  .site-footer__menu a {
    min-height: unset;
  }

  .site-footer strong {
    margin-bottom: 10px;
  }

  .site-footer__contact-item {
    margin-left: -9px;
    text-align: left;
  }
}
