.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgb(8 17 31 / 82%);
  backdrop-filter: blur(5px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100% - 32px));
  margin: 6vh auto 0;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #d9e5f3;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 76px rgba(8, 17, 31, 0.24);
}

.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid #d9e5f3;
  border-radius: 999px;
  background: #fff;
  color: #3f4856;
  cursor: pointer;
}

.lead-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b7280;
}

.lead-modal__dialog h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
}

.lead-modal__sub {
  margin: 0 0 16px;
  color: #6b7280;
}

.lead-modal__form {
  display: grid;
  gap: 12px;
}

.lead-modal__form label {
  display: grid;
  gap: 6px;
}

.lead-modal__form label span {
  font-size: 12px;
  font-weight: 700;
  color: #516079;
}

.lead-modal__form input {
  height: 46px;
  border-radius: 14px;
  border: 1px solid #dbe5f2;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
}

.lead-modal__form .btn {
  margin-top: 4px;
}

.lead-modal__contacts {
  margin-top: 2px;
}

.lead-modal__contacts-title {
  margin: 4px 0 2px;
  font-size: 13px;
  font-weight: 600;
  color: #5d6d85;
}

.lead-modal__contacts a {
  min-height: 40px;
  border-radius: 12px;
}

.lead-modal__status {
  margin: 0;
  font-size: 13px;
  display: none;
}

.lead-modal__status:not(:empty) {
  display: block;
}

.lead-modal__status.is-error {
  color: #c53131;
}

.lead-modal__status.is-success {
  color: #1e7a36;
}

body.lead-modal-open {
  overflow: hidden;
}
:root {
  --bg: #f7f9fc;
  --bg-soft: #eef3f9;
  --bg-dark: #07111f;
  --bg-dark-2: #0b1729;
  --card: #ffffff;
  --text: #08111f;
  --text-soft: #26334a;
  --muted: #63728a;
  --muted-dark: #9fb0c9;
  --accent: #1d4ed8;
  --accent-2: #38a7ff;
  --accent-soft: #e9f2ff;
  --border: #dde7f2;
  --border-dark: rgba(255, 255, 255, 0.12);
  --surface-glass: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(120, 145, 180, 0.2);
  --gradient-dark: linear-gradient(135deg, #07111f 0%, #0e2038 52%, #08111f 100%);
  --gradient-blue: linear-gradient(135deg, #1d4ed8 0%, #2a8cf0 100%);
  --shadow-sm: 0 8px 24px rgba(8, 17, 31, 0.06);
  --shadow-md: 0 18px 44px rgba(8, 17, 31, 0.1);
  --shadow-premium: 0 28px 80px rgba(8, 17, 31, 0.16);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --section: clamp(72px, 7.5vw, 112px);
  --section-head: clamp(30px, 3.8vw, 52px);
  --section-line: rgba(120, 145, 180, 0.16);
  --container: 1240px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(42, 140, 240, 0.12), transparent 28vw),
    radial-gradient(circle at 90% 10%, rgba(29, 78, 216, 0.08), transparent 30vw),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

html.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.preloader-active,
body.menu-open,
body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--gradient-dark);
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.preloader__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: none;
}

.preloader__logo img {
  width: 300px;
  max-width: 72vw;
  height: auto;
  opacity: 0.1;
}

.preloader__bar {
  width: 190px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.preloader__bar i {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, #2a8cf0, #9cc3ff);
  animation: preloader-slide 1.05s ease-in-out infinite;
}

@keyframes preloader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

.visually-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(56, 167, 255, 0.36);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.04;
}

h3 {
  font-size: 19px;
  line-height: 1.28;
  margin: 0 0 10px;
}

p {
  margin: 0 0 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: #9cc3ff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 176px;
  max-width: 34vw;
  height: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.nav a {
  color: var(--text-soft);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

.nav a.is-active {
  color: var(--accent);
  font-weight: 700;
}

.nav__close {
  display: none;
}

.nav-backdrop {
  display: none;
}

.burger {
  display: none;
  margin-left: auto;
  position: relative;
  width: 46px;
  height: 46px;
  background: transparent;
  color: var(--text);
  border: 0;
  cursor: pointer;
  padding: 0;
}

body.menu-open {
  overflow: hidden;
}

.header .btn--small {
  min-height: auto;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  background: var(--gradient-blue);
  box-shadow: none;
}

.header .btn--small:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #173fb4 0%, #1977dc 100%);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 23px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--text);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #030712;
  box-shadow: 0 16px 34px rgba(8, 17, 31, 0.18);
}

.btn--primary {
  background: var(--gradient-blue);
  box-shadow: 0 14px 32px rgba(29, 78, 216, 0.24);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #173fb4 0%, #1977dc 100%);
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.34);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn--light {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--light:hover {
  background: #f8fbff;
}

#openCatalog {
  background: var(--gradient-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(29, 78, 216, 0.24);
}

#openCatalog:hover {
  background: linear-gradient(135deg, #173fb4 0%, #1977dc 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.34);
}

.btn--small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 13px;
}

.btn--hero {
  min-height: 56px;
  padding-inline: 27px;
}

@keyframes seo-lead-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.is-loading {
  position: relative;
  pointer-events: none;
  cursor: wait;
  color: transparent !important;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  animation: seo-lead-btn-spin 0.65s linear infinite;
  box-sizing: border-box;
}

.btn--light.is-loading::after {
  border-color: rgba(15, 23, 42, 0.12);
  border-top-color: var(--accent);
}

.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0 clamp(64px, 7vw, 92px);

  /*
   * Фон hero в .hero::after. На узких экранах iOS/Android fixed иногда рисуется за пределами
   * блока — для портрета/альбома ниже добавлен clip-path на .hero, fixed можно оставить.
   */
  --hero-bg-position: center center;
  --hero-bg-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 38%, rgba(56, 167, 255, 0.28), transparent 26vw),
    linear-gradient(135deg, rgba(29, 78, 216, 0.28), rgba(7, 17, 31, 0.04));
  opacity: 0.8;
  filter: saturate(110%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.8) 50%, rgba(11, 18, 32, 0.55) 100%),
    var(--seo-hero-bg-image, none);
  background-size: cover;
  background-position: var(--hero-bg-position);
  background-attachment: var(--hero-bg-attachment);
  background-repeat: no-repeat;
}

@media (max-width: 1600px) {
  .hero {
    --hero-bg-position: center center;
    --hero-bg-attachment: fixed;
  }
}

@media (max-width: 1400px) {
  .hero {
    --hero-bg-position: center center;
    --hero-bg-attachment: fixed;
  }
}

@media (max-width: 1200px) {
  .hero {
    --hero-bg-position: center center;
    --hero-bg-attachment: fixed;
  }
}

@media (max-width: 1024px) {
  .hero {
    --hero-bg-position: center center;
    --hero-bg-attachment: fixed;
  }
}

/* Портретный телефон: мобильный кадр + fixed; clip-path обрезает артефакты fixed вне блока */
@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    --hero-bg-position: center center;
    --hero-bg-attachment: fixed;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }

  .hero::after {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background:
      linear-gradient(100deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.8) 50%, rgba(11, 18, 32, 0.55) 100%),
      var(--seo-hero-bg-image-mobile, var(--seo-hero-bg-image, none));
    background-size: cover, cover;
    background-position: center center, center top;
    background-attachment: fixed, fixed;
    background-repeat: no-repeat, no-repeat;
  }
}

/* Альбом: десктопная картинка + тот же приём обрезки */
@media (orientation: landscape) and (max-width: 768px),
  (orientation: landscape) and (max-height: 520px) and (max-width: 1280px) {
  .hero {
    --hero-bg-position: center center;
    --hero-bg-attachment: fixed;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }

  .hero::after {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background:
      linear-gradient(100deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.8) 50%, rgba(11, 18, 32, 0.55) 100%),
      var(--seo-hero-bg-image, none);
    background-size: cover, cover;
    background-position: center center, center center;
    background-attachment: fixed, fixed;
    background-repeat: no-repeat, no-repeat;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
  max-width: 900px;
}

.hero h1,
.hero .hero__content {
  color: #fff;
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.05;
}

.hero .eyebrow {
  color: #9cc3ff;
}

.hero .eyebrow::before {
  background: #9cc3ff;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 640px;
  margin: 18px 0 28px;
}

.hero__list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero__list li {
  position: relative;
  padding-left: 22px;
}

.hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(42, 140, 240, 0.15);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-bar {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.trust-bar__item {
  padding-right: 24px;
}

.trust-bar__item + .trust-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 24px;
}

.trust-bar__value {
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.trust-bar__label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-top: 8px;
}

.section {
  position: relative;
  padding: var(--section) 0;
  isolation: isolate;
  border-top: 1px solid var(--section-line);
}

.section--soft {
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 167, 255, 0.055), transparent 30vw),
    linear-gradient(180deg, #f2f6fb 0%, #f7f9fc 100%);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: var(--section-head);
}

.section__sub {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 690px;
  font-size: 16px;
}

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

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(196, 211, 228, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.88)),
    #fff;
  box-shadow: 0 16px 38px rgba(8, 17, 31, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.benefit-card::before,
.benefit-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.benefit-card::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(56, 167, 255, 0.08), transparent 42%),
    linear-gradient(90deg, rgba(8, 17, 31, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(8, 17, 31, 0.035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.benefit-card::after {
  right: -154px;
  bottom: -100px;
  width: 368px;
  height: 368px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgb(29 78 216 / 6%), transparent 68%);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 167, 255, 0.34);
  box-shadow: 0 24px 58px rgba(8, 17, 31, 0.11);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:first-child {
  color: #fff;
  background: var(--gradient-dark);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-premium);
}

.benefit-card:first-child h3 {
  color: #fff;
}

.benefit-card:first-child p {
  color: rgba(255, 255, 255, 0.75);
}

.benefit-card h3,
.benefit-card p,
.benefit-card .icon {
  position: relative;
  z-index: 1;
}

.benefit-card h3 {
  max-width: 310px;
  margin-top: auto;
  font-size: clamp(20px, 1.8vw, 25px);
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
  max-width: 320px;
  font-size: 15px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card:first-child .icon {
  background: rgba(255, 255, 255, 0.12);
  color: #9cc3ff;
}

.cars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.car {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 17, 31, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.car__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.car__image-link:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.45);
  outline-offset: 2px;
  border-radius: 24px 24px 0 0;
}

.car__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-soft);
  transition: transform 0.35s ease;
}

.car__image--placeholder {
  display: grid;
  place-items: center;
  color: var(--accent);
}

.car__image--placeholder svg {
  width: 58px;
  height: 58px;
}

.car__body {
  display: block;
  padding: 21px 22px 10px;
}

.car h3 {
  font-size: 17px;
  margin: 0 0 7px;
}

.car__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 10px;
}

.car__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.car__price-value {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.car__price-row--vat .car__price-value {
  font-size: 17px;
  font-weight: 700;
  color: #3f4856;
}

.car__price-caption {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b95a3;
}

.car__meta {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.car__actions {
  margin-top: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 22px 22px;
}

.car__action-btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 13px;
  width: 100%;
}

.cars__empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--border);
  border-radius: 24px;
  background: #fff;
  color: var(--muted);
}

.section__cta {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  background:
    radial-gradient(circle at 84% 22%, rgba(56, 167, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0d1c32 62%, #07111f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: clamp(26px, 3.6vw, 38px);
  box-shadow: 0 24px 64px rgba(8, 17, 31, 0.16);
  color: #fff;
}

.section__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
  pointer-events: none;
}

.section__cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(56, 167, 255, 0.12);
  pointer-events: none;
}

.section__cta-content,
.section__cta-media {
  position: relative;
  z-index: 1;
}

.section__cta-content {
  max-width: 620px;
}

.section__cta-content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9cc3ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__cta h3 {
  color: #fff;
  font-size: clamp(25px, 2.45vw, 36px);
  line-height: 1.12;
  margin: 0 0 10px;
}

.section__cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.section__cta-content .btn {
  margin-top: 24px;
  min-width: 230px;
}

.section__cta-media {
  align-self: stretch;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.section__cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.28), transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(7, 17, 31, 0.34));
}

.section__cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(105%) contrast(104%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.about-checks {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.about-checks span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

.about-checks svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: 0 0 auto;
}

.about-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.about-contacts a:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 167, 255, 0.42);
  color: var(--accent);
}

.about-contacts svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

.about-contacts .contact-icon--img {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-contacts .contact-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-map-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(14px);
}

.about-map-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(56, 167, 255, 0.12);
  pointer-events: none;
}

.about-map-card__frame {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: 22px;
  background: var(--bg-soft);
}

.about-map-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-map-card__info {
  position: relative;
  z-index: 1;
  padding: 8px 8px 10px;
}

.about-map-card__info span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-map-card__info p {
  color: var(--text-soft);
  margin: 0 0 6px;
  font-size: 14px;
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 30px;
  background: var(--bg-dark);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 17, 31, 0.9) 100%);
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card__body {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.58);
  backdrop-filter: blur(16px);
}

.team-card__body span {
  display: block;
  color: #9cc3ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-card__body h3 {
  color: #fff;
  margin-bottom: 7px;
}

.team-card__body p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  margin: 0;
}

.payment-info {
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 167, 255, 0.11), transparent 32vw),
    linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.payment-info__head {
  align-items: flex-end;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.payment-info__list {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.payment-info__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(30, 64, 175, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.payment-info__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.payment-info__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.payment-info__card h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
  grid-column: 2;
}

.payment-info__text {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.72;
  grid-column: 2;
}

.payment-info__text p,
.payment-info__text ul {
  margin: 0;
}

.payment-info__text ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.payment-info__text li {
  position: relative;
  padding-left: 24px;
}

.payment-info__text li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(29, 78, 216, 0.09);
}

.lead-section {
  background: #07111f;
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.1);
}

.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 167, 255, 0.2), transparent 34vw),
    radial-gradient(circle at 86% 18%, rgba(29, 78, 216, 0.16), transparent 28vw),
    repeating-linear-gradient(115deg, transparent 0 118px, rgba(255, 255, 255, 0.035) 119px 120px);
  pointer-events: none;
}

.lead-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(400px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.lead-block h2 {
  color: #fff;
}

.lead-block__content p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 620px;
}

.lead-result {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.lead-result li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.lead-result svg {
  width: 18px;
  height: 18px;
  color: #9cc3ff;
}

.lead-flash {
  position: fixed;
  z-index: 100001;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  left: auto;
  top: auto;
  transform: none;
  max-width: min(
    420px,
    calc(100vw - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.lead-flash--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.lead-flash--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.form__status {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0;
  transition: max-height 0.2s ease, padding 0.2s ease, opacity 0.2s ease;
}

.form__status.is-visible {
  max-height: 96px;
  padding: 10px 14px;
  opacity: 1;
}

.form__status.is-success {
  color: #d8ffe8;
  background: rgba(22, 163, 74, 0.16);
  border: 1px solid rgba(74, 222, 128, 0.24);
}

.form__status.is-error {
  color: #ffe0e0;
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.24);
}

.form__field {
  display: grid;
  gap: 6px;
}

.form__field--wide {
  grid-column: 1 / -1;
}

.form__field span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  box-shadow: 0 13px 28px rgba(3, 7, 18, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form textarea {
  resize: vertical;
  min-height: 96px;
}

.form select option {
  color: var(--text);
  background: #fff;
}

.form input::placeholder,
.form textarea::placeholder,
.form select:invalid {
  color: #7b879a;
}

.form input:hover,
.form select:hover,
.form textarea:hover {
  background: #fff;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--accent-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(56, 167, 255, 0.18), 0 16px 30px rgba(3, 7, 18, 0.14);
}

.form__field.is-invalid input,
.form__field.is-invalid select,
.form__field.is-invalid textarea {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
}

.form__field small {
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: #fecaca;
  font-size: 11px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(-2px);
  transition: max-height 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.form__field.is-invalid small {
  max-height: 26px;
  opacity: 1;
  transform: translateY(0);
}

.checkbox {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12.5px;
  line-height: 1.5;
  padding: 2px 0;
}

.checkbox input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--accent-2);
}

.form button {
  grid-column: 1 / -1;
  min-height: 52px;
  font-size: 15px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.comparison-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: #c9d8ea;
  box-shadow: var(--shadow-md);
}

.comparison-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-card h3 {
  font-size: clamp(24px, 2vw, 32px);
}

.comparison-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.12);
}

.comparison-card--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.94)),
    #fff;
}

.comparison-card--muted > span {
  color: #b42318;
}

.comparison-card--muted h3 {
  max-width: 520px;
}

.comparison-card--accent {
  color: #fff;
  background: var(--gradient-dark);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-premium);
}

.comparison-card--accent h3 {
  color: #fff;
}

.comparison-card--accent > span {
  color: #9cc3ff;
}

.comparison-card--accent li {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-card--accent li::before {
  height: 13px;
  top: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(56, 167, 255, 0.14);
}

.import-value {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(56, 167, 255, 0.1), transparent 34vw),
    linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}

.import-value::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(9, 22, 39, 0.06));
  pointer-events: none;
}

.import-value__head {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.import-value__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.import-value-card {
  position: relative;
  min-height: clamp(360px, 34vw, 470px);
  overflow: hidden;
  border: 1px solid rgba(141, 160, 185, 0.24);
  border-radius: 30px;
  background: #0b1728;
  box-shadow: 0 22px 52px rgba(8, 20, 36, 0.16);
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.import-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 167, 255, 0.42);
  box-shadow: 0 32px 74px rgba(8, 20, 36, 0.22);
}

.import-value-card__media {
  position: absolute;
  inset: 0;
}

.import-value-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 24, 0.04) 0%, rgb(5 13 24 / 50%) 42%, rgb(5 13 24) 100%), radial-gradient(circle at 18% 16%, rgba(56, 167, 255, 0.28), transparent 36%);
}

.import-value-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.import-value-card:hover .import-value-card__media img {
  transform: scale(1.08);
}

.import-value-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  box-sizing: border-box;
  padding: clamp(20px, 2.2vw, 28px);
  padding-top: clamp(74px, 7vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: clamp(230px, 21vw, 270px);
}

.import-value-card__body span {
  position: absolute;
  top: clamp(20px, 2.2vw, 28px);
  left: clamp(20px, 2.2vw, 28px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  color: #b7dcff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.import-value-card:hover .import-value-card__body span {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(106, 191, 255, 0.72);
  background: linear-gradient(145deg, rgba(56, 167, 255, 0.46), rgba(30, 92, 227, 0.52));
  color: #fff;
  box-shadow: 0 16px 30px rgba(29, 78, 216, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.import-value-card__body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.import-value-card__body p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.slider__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.slider--full {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.slider__button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.slider__button:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 167, 255, 0.45);
  background: var(--accent);
  color: #fff;
}

.slider__button:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.slider__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px max(4vw, calc((100vw - var(--container)) / 2)) 56px;
  margin: -8px 0 0;
  touch-action: pan-x pan-y;
  cursor: grab;
  user-select: none;
}

.slider__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.slider__viewport::-webkit-scrollbar {
  display: none;
}

.slider__track {
  display: flex;
  gap: 18px;
}

.slider__slide {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -24px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c9d6e8;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider__dot.is-active {
  width: 28px;
  background: var(--accent);
}

.review-card {
  position: relative;
  width: 100%;
  cursor: grab;
  text-align: left;
  padding: 12px;
  border: 1px solid rgba(196, 211, 228, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.9)),
    #fff;
  box-shadow: 0 16px 38px rgba(8, 17, 31, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.slider__viewport.is-dragging .review-card {
  cursor: grabbing;
  pointer-events: none;
}

.review-card__open {
  position: absolute;
  right: 22px;
  top: 58px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.76);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.9;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(12px);
  cursor: pointer;
  pointer-events: auto;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 167, 255, 0.42);
  box-shadow: 0 26px 62px rgba(8, 17, 31, 0.13);
}

.review-card__open:hover {
  background: rgba(29, 78, 216, 0.86);
  opacity: 1;
  transform: scale(1.04);
}

.review-card span {
  display: inline-flex;
  margin: 5px 5px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: 21px;
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px rgba(8, 17, 31, 0.06);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(29, 78, 216, 0.42), transparent);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline article:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.timeline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--gradient-blue);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.24);
}

.timeline p {
  color: var(--muted);
  margin: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 34%, rgba(56, 167, 255, 0.24), transparent 28vw),
    radial-gradient(circle at 18% 80%, rgba(29, 78, 216, 0.16), transparent 26vw),
    var(--gradient-dark);
  color: #fff;
  padding: var(--section) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  pointer-events: none;
}

.cta-band__line {
  position: absolute;
  right: 8%;
  top: 24%;
  width: 560px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 167, 255, 0.72), transparent);
  transform: rotate(-10deg);
}

.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  z-index: 1;
}

.cta-band__content {
  max-width: 680px;
}

.cta-band h2 {
  color: #fff;
  max-width: 660px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
}

.cta-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  font-size: clamp(16px, 1.15vw, 18px);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 32px;
}

.cta-band__visual {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.cta-band__visual::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(56, 167, 255, 0.12);
  pointer-events: none;
}

.cta-band__visual-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band__visual-head span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(156, 195, 255, 0.24);
  border-radius: 999px;
  background: rgba(156, 195, 255, 0.1);
  color: #9cc3ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-band__visual-head strong {
  display: block;
  max-width: none;
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-size: clamp(27px, 2.25vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.cta-band__visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cta-band__visual-grid div {
  display: grid;
  align-content: start;
  min-height: 120px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(7, 17, 31, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-band__visual-grid strong {
  display: block;
  min-height: 38px;
  margin-bottom: 18px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.cta-band__visual-grid span {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.faq-layout__head {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq details[open] {
  border-color: #c6d7eb;
  box-shadow: var(--shadow-md);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  padding: 22px 24px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq details[open] summary svg {
  transform: rotate(180deg);
}

.faq p {
  color: var(--muted);
  margin: -6px 24px 24px;
  font-size: 15px;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 167, 255, 0.2), transparent 32vw),
    radial-gradient(circle at 94% 16%, rgba(29, 78, 216, 0.18), transparent 34vw),
    linear-gradient(180deg, #07111f 0%, #040914 100%);
  color: var(--muted-dark);
  padding: clamp(76px, 7vw, 104px) 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.footer::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 78%);
  opacity: 0.24;
}

.footer::after {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: -210px;
  border-radius: 50%;
  background: rgba(56, 167, 255, 0.16);
  filter: blur(70px);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 68px);
  padding-bottom: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
}

.footer__grid > div {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__main {
  padding-top: 0 !important;
  border-top: 0 !important;
}

.footer__main p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(214, 226, 243, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.footer h3 {
  color: rgba(255, 255, 255, 0.96);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 20px;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: rgba(214, 226, 243, 0.68);
  font-size: 14px;
  line-height: 1.42;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer a:focus-visible {
  outline: 2px solid rgba(56, 167, 255, 0.55);
  outline-offset: 4px;
  color: #fff;
  border-radius: 6px;
}

.footer p {
  color: rgba(214, 226, 243, 0.68);
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 1.55;
}

.footer__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 10px;
}

.footer__item svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
  color: rgba(214, 226, 243, 0.68);
}

.footer__item.footer__item--link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 0;
}

.footer__item.footer__item--link .contact-icon--img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__item.footer__item--link .contact-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__item span {
  display: block;
}

.footer a.footer__item--link {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 11px;
}

.footer__brand {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.footer__brand img {
  width: clamp(220px, 18vw, 290px);
  max-width: 55vw;
  height: auto;
  opacity: 0.1;
}

.footer__telegram {
  margin-top: 26px;
  padding: 13px 18px;
  border: 1px solid rgba(56, 167, 255, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(56, 167, 255, 0.2), rgba(37, 99, 235, 0.24)),
    rgba(255, 255, 255, 0.04);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.2);
}

.footer__telegram:hover {
  transform: translateY(-2px);
  color: #fff;
}

.footer__requisites {
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(214, 226, 243, 0.58) !important;
}

.footer__bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(214, 226, 243, 0.5);
  font-size: 12px;
  line-height: 1.4;
}

.footer__bottom span {
  flex: 0 1 auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 34px);
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: grid;
  touch-action: pan-x;
  overscroll-behavior: contain;
}

.lightbox img {
  max-height: 90vh;
  max-width: min(94vw, 1440px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.lightbox__nav--prev {
  left: clamp(16px, 4vw, 42px);
}

.lightbox__nav--next {
  right: clamp(16px, 4vw, 42px);
}

@media (max-width: 1240px) {
  .hero__grid,
  .lead-block {
    grid-template-columns: 1fr;
  }

  .cars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1320px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 31;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(8, 17, 31, 0.24);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.28s ease;
  }

  body.menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .burger {
    position: relative;
    z-index: 33;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    box-shadow: none;
    transition: transform 0.22s ease;
  }

  .burger::before,
  .burger::after {
    content: "";
    position: absolute;
    left: 9px;
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.24s ease, top 0.24s ease, opacity 0.24s ease;
  }

  .burger::before {
    top: 14px;
  }

  .burger::after {
    top: 23px;
  }

  body.menu-open .burger::before,
  body.menu-open .burger::after {
    opacity: 0;
  }

  .header .btn--small {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 32;
    width: min(430px, calc(100vw - 28px));
    min-height: 100dvh;
    margin-left: 0;
    padding: 18px clamp(24px, 5vw, 42px) 34px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    counter-reset: menu;
    background:
      radial-gradient(circle at 18% 6%, rgba(56, 167, 255, 0.2), transparent 44%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.98));
    border-left: 1px solid #dbe6f4;
    box-shadow: -20px 0 56px rgba(8, 17, 31, 0.16);
    transform: translateX(110%);
    visibility: hidden;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s ease;
  }

  .nav::before {
    content: "Навигация";
    display: block;
    margin: 0 0 18px;
    padding-top: 6px;
    color: #5d6f8f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav__close {
    position: sticky;
    top: 0;
    align-self: flex-end;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 0 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dbe5f2;
    box-shadow: 0 8px 24px rgba(8, 17, 31, 0.1);
    cursor: pointer;
  }

  .nav__close::before,
  .nav__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    margin-top: -1px;
    border-radius: 999px;
    background: #32425d;
  }

  .nav__close::before {
    transform: rotate(45deg);
  }

  .nav__close::after {
    transform: rotate(-45deg);
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav a {
    counter-increment: menu;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #dbe6f4;
    border-radius: 18px;
    background: #fff;
    color: #12213a;
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 800;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateX(18px);
    box-shadow: 0 10px 22px rgba(8, 17, 31, 0.05);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .nav a::before {
    content: counter(menu, decimal-leading-zero);
    flex: 0 0 auto;
    width: 34px;
    color: #7d90b0;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .nav.is-open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.is-open a:nth-of-type(1) { transition-delay: 0.04s; }
  .nav.is-open a:nth-of-type(2) { transition-delay: 0.07s; }
  .nav.is-open a:nth-of-type(3) { transition-delay: 0.1s; }
  .nav.is-open a:nth-of-type(4) { transition-delay: 0.13s; }
  .nav.is-open a:nth-of-type(5) { transition-delay: 0.16s; }
  .nav.is-open a:nth-of-type(6) { transition-delay: 0.19s; }
  .nav.is-open a:nth-of-type(7) { transition-delay: 0.22s; }
  .nav.is-open a:nth-of-type(8) { transition-delay: 0.25s; }
  .nav.is-open a:nth-of-type(9) { transition-delay: 0.28s; }
  .nav.is-open a:nth-of-type(10) { transition-delay: 0.31s; }

  .nav a:hover,
  .nav a.is-active {
    border-color: #1d4ed8;
    background: linear-gradient(135deg, #1d4ed8 0%, #2a8cf0 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(29, 78, 216, 0.24);
  }

  .nav a:hover::before,
  .nav a.is-active::before {
    color: rgba(255, 255, 255, 0.75);
  }
}

@media (max-width: 1024px) {
  .trust-bar,
  .cars {
    grid-template-columns: repeat(2, 1fr);
  }

  .section__cta {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
    gap: 24px;
  }

  .section__cta-media {
    min-height: 210px;
  }

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

  .trust-bar .trust-bar__item + .trust-bar__item:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .benefits-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout,
  .comparison,
  .faq-layout,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

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

  .section__head {
    grid-template-columns: 1fr;
  }

  .faq-layout__head {
    position: static;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }

  .cta-band__visual {
    max-width: 640px;
  }

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

  .footer__main {
    grid-column: 1 / -1;
    max-width: 680px;
  }
}

@media (max-width: 860px) {
  .hero__list {
    grid-template-columns: 1fr;
  }

  .section__cta {
    grid-template-columns: 1fr;
  }

  .section__cta-media {
    order: -1;
    min-height: 240px;
  }

  .team {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card img {
    min-height: 460px;
  }

  .about-map-card__frame {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  :root {
    --section: 64px;
    --section-head: 30px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

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

  .hero__actions,
  .cta-band__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band__visual-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__visual-grid div {
    min-height: auto;
    gap: 16px;
  }

  .section__cta {
    text-align: left;
    padding: 22px;
  }

  .section__cta-media {
    min-height: 190px;
    border-radius: 20px;
  }

  .section__cta h3 {
    font-size: clamp(25px, 9vw, 34px);
  }

  .section__cta-content .btn {
    min-width: 0;
  }

  .hero__actions .btn,
  .cta-band__actions .btn,
  .section__cta .btn {
    width: 100%;
  }

  .trust-bar,
  .benefits-bento,
  .cars,
  .import-value__grid,
  .form {
    grid-template-columns: 1fr;
  }

  .hero .trust-bar {
    margin-top: 40px;
    padding-top: 32px;
    width: 100%;
    max-width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 4vw, 28px);
    row-gap: clamp(20px, 4vw, 28px);
    text-align: center;
    justify-items: center;
    align-items: start;
  }

  .hero .trust-bar__item {
    border-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .hero .trust-bar__item + .trust-bar__item {
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .hero .trust-bar__value {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero .trust-bar__label {
    font-size: 15px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 220px;
    color: rgba(255, 255, 255, 0.82);
  }

  .payment-info__card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .payment-info__card h3,
  .payment-info__text {
    grid-column: auto;
  }

  .import-value-card {
    min-height: 390px;
    border-radius: 24px;
  }

  .slider__controls {
    width: 100%;
    justify-content: flex-start;
  }

  .slider__viewport {
    scroll-padding-inline: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .slider__slide {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: start;
  }

  .trust-bar__item {
    border-left: 0 !important;
    padding-left: 0 !important;
  }

  .trust-bar__item + .trust-bar__item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    margin-top: 20px;
  }

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

  .form__field--wide,
  .form__status,
  .checkbox,
  .form button {
    grid-column: auto;
  }

  .comparison-card,
  .lead-block .form {
    border-radius: 24px;
  }

  .about-map-card {
    padding: 10px;
    border-radius: 24px;
  }

  .about-map-card__frame {
    min-height: 320px;
    border-radius: 18px;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline article {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .timeline span {
    width: 52px;
    height: 52px;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer__grid > div {
    padding: 18px 0 0;
  }

  .footer__bottom span {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .header__inner {
    gap: 14px;
  }

  .logo img {
    width: 150px;
  }

  .hero {
    padding-bottom: 72px;
  }

  .team-card,
  .team-card img {
    min-height: 420px;
  }

  .review-card {
    padding: 10px;
  }

  .lightbox {
    padding: max(14px, env(safe-area-inset-top, 0px)) max(14px, env(safe-area-inset-right, 0px))
      max(22px, env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-left, 0px));
    place-content: center;
  }

  .lightbox img {
    max-width: 94vw;
    max-height: 82vh;
    border-radius: 18px;
  }

  .lightbox__nav {
    top: auto;
    bottom: max(18px, env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    transform: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  }

  .lightbox__nav:hover {
    transform: none;
  }

  .lightbox__nav--prev {
    left: calc(50% - 58px);
  }

  .lightbox__nav--next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 375px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .btn {
    padding-inline: 18px;
  }

  .benefit-card,
  .comparison-card,
  .form {
    border-radius: 22px;
  }

  .slider__slide {
    flex-basis: 84vw;
  }
}

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


.about-contacts.lead-modal__contacts {
  margin: 0;
  padding: 0px;
  gap: 0;
  display: flex;
  flex-flow: column;
}

.about-contacts.lead-modal__contacts  a {
  padding: 0px;
  border: none;
  box-shadow: none;
  background: none;
}