:root {
  --color-brand-red:        #e61f22;
  --color-brand-red-dark:   #c4191c;
  --color-brand-red-light:  #ff4548;
  --color-brand-navy:       #000;
  --color-brand-navy-dark:  #1e1a33;
  --color-brand-white:      #FFFFFF;

  --color-brand-text-primary:  var(--color-brand-navy);
  --color-brand-text-accent:   var(--color-brand-red);
  --color-brand-text-on-dark:  #FFFFFF;

  --color-brand-cta-bg:        var(--color-brand-red);
  --color-brand-cta-bg-hover:  var(--color-brand-red-dark);
  --color-brand-cta-text:      #FFFFFF;

  --header-bg:      #F0F2F5;
  --pill-bg:        #FFFFFF;
  --pill-radius:    50px;
  --pill-shadow:    0 1px 3px rgba(0, 0, 0, 0.08);
  --br:             20px;

  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;

  --font-main: "Inter", sans-serif;

  --primary:        var(--color-brand-navy);
  --primary-hover:  var(--color-brand-navy-dark);
  --secondary:      var(--color-brand-red);
  --blue-dark:      var(--color-brand-navy);
  --white:          #FFFFFF;
  --border:         #e4e6ed;
  --color-2:        #fafbfc;
  --tertiary:       #8f8f8f;
  --fourty:         #4a5568;

  --mobile-gutter:    20px;
  --mobile-section-y: 40px;
  --mobile-h2:        20px;
  --mobile-h3:        18px;

  /* fixed header: 20px padding + 60px bar + 20px padding */
  --header-offset: 100px;
}

html {
  font-family: var(--font-main);
  background: #e4e9f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: #e4e9f2;
  padding-top: var(--header-offset);
  transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-brand-text-primary);
  overflow-x: hidden;
}

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

button,
[type="button"],
[type="submit"],
[type="reset"],
a[class*="btn"],
.nav-trigger,
.onlineregistration,
.modalBtn,
#main-button,
#open_menu,
._faq_question {
  cursor: pointer;
}

.container {
  max-width: 1450px;
  padding: 0 20px;
  margin: auto;
}

a { text-decoration: none; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  padding: 20px 0;
  transition:
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s ease,
    box-shadow 0.4s ease;
    background: var(--header-bg);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .container > div {
  border-radius: var(--br);
  background: #ffffff;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  transition:
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.logo {
  width: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #ffffff !important;
  border-radius: var(--br);
  overflow: hidden;
}

.logo svg { width: 30px; height: 30px; }
.logo a {
  display: block;
  width: auto;
  line-height: 0;
}
.logo img {
  display: block;
  width: auto;
  max-width: 170px;
  height: 44px;
  object-fit: contain;
  filter: none;
}

header .container > div.logo {
  padding-right: 12px;
}

.nav-trigger.desktop {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--color-brand-red);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s;
}

.nav-trigger.desktop:hover { background: var(--color-brand-red-dark); }
.nav-trigger.mobile { display: none; }

.headernav nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.headernav nav ul li a {
  color: rgba(41, 45, 52, 0.5);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
  padding: 0;
  line-height: 60px;
  display: inline-block;
}

.headernav nav ul li a:hover {
  color: var(--color-brand-red);
  border-color: var(--color-brand-red);
}

header .container > .phone {
  height: 60px;
  padding: 0 18px;
  background: var(--color-brand-red) !important;
}

.phone a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}

.phone a svg {
  flex-shrink: 0;
}

header .container > .icons {
  height: 60px;
  padding: 0 18px;
  background: var(--color-brand-navy) !important;
}

.icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icons__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}

.icons__phone svg {
  flex-shrink: 0;
}

.icons__phone svg path {
  fill: currentColor;
}

.icons__divider { width: 1px; height: 20px; background: #e4e6ed; flex-shrink: 0; }

/* ── RESPONSIVE HEADER ── */
@media (max-width: 1350px) {
  .none { display: none; }
  header nav ul { gap: 23px; }
}

@media (max-width: 1200px) {
  header .headernav,
  header .icons { display: none !important; }

  header .phone {
    display: none !important;
  }

  .nav-trigger.desktop {
    display: flex !important;
  }

  .nav-trigger.mobile {
    display: none !important;
  }

  header .container > div.logo {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    justify-content: flex-start;
  }

  body.menu-open .nav-trigger.desktop {
    background: var(--color-brand-navy-dark);
  }
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero {
  margin: 20px auto 16px;
}

section.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.heroSwiper {
  width: 100%;
  height: 520px;
  border-radius: var(--br);
  overflow: hidden;
  position: relative;
}

.heroSwiper .swiper-wrapper {
  height: 100%;
}

.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.heroSwiper.swiper-fade .swiper-slide {
  height: 100% !important;
}

.heroSwiper.swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none;
}

.heroSwiper.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
  z-index: 2;
}

.hero__slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 48px 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0) 100%
    );
  z-index: 1;
}

.hero__slide--1 {
  background-image: url('/assests/img/slide1new.png');
}

.hero__slide--2 {
  background-image: url('/assests/img/slide2new.png');
}

.hero__slide--3 {
  background-image: url('/assests/img/slide3new.png');
}

.hero__slide--4 {
  background-image: url('/assests/img/slide3new.png');
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.hero__title {
  font-size: 58px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero__title span {
  color: #ffffff;
}

.hero__desc {
  display: block;
  max-width: 520px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* ── Arrows ── */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .heroSwiper { height: 420px; border-radius: 0; }
  .hero { padding: 0; }
  .hero__slide { padding: 40px 30px; }
  .hero__title { font-size: 36px; }
  .hero__desc {
    max-width: 100%;
    font-size: 15px;
  }
  .article-full__content h2 {font-size: 22px!important;}
  
}

/* ── Home: декоративный фон секций ── */
.page-home main > section:not(.hero) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-home main > .car-search {
  z-index: 20;
  overflow: visible;
}

.page-home main > .car-search > .container {
  overflow: visible;
}

.page-home main > .cars {
  z-index: 1;
}

.page-home main > section:not(.hero) > .container {
  position: relative;
  z-index: 1;
}

.page-home main > section:not(.hero)::before {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: min(700px, 80vw);
  height: min(380px, 54vw);
  background: url('/assests/img/bannerFone.png') center / contain no-repeat;
  opacity: 0.2;
}

.page-home main > .car-search::before,
.page-home main > .brends::before,
.page-home main > .locations::before {
  top: 50%;
  right: max(-130px, -14vw);
  transform: translateY(-50%);
}

.page-home main > .cars::before,
.page-home main > .services::before,
.page-home main > .why-us::before {
  top: 50%;
  left: max(-130px, -14vw);
  transform: translateY(-50%) scaleX(-1);
}

@media (max-width: 767px) {
  .page-home main > section:not(.hero)::before {
    width: min(440px, 96vw);
    height: min(230px, 44vw);
    opacity: 0.12;
  }

  .page-home main > .car-search::before,
  .page-home main > .brends::before,
  .page-home main > .locations::before {
    top: 12px;
    right: -70px;
    transform: none;
  }

  .page-home main > .cars::before,
  .page-home main > .services::before,
  .page-home main > .why-us::before {
    top: auto;
    bottom: 12px;
    left: -70px;
    transform: scaleX(-1);
  }
}

.icons {
  display: flex;
  gap: 10px;
}
.icons img {
  width: 35px;
  height: 35px;
  transition: 0.4s ease;
}
.icons img:hover {
  opacity: 0.7;
}

.footer .container.first {
  background: #222831;
  color: #cfd3da;
  padding: 36px 40px 30px;
  border-radius: var(--br);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding-top: 8px;
}

.logo-footer {
  flex-shrink: 0;
}

.footer-container {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  min-width: 0;
}

/* titles */
.footer-col h4 {
  font-size: 16px;
  color: #ffffff80;
  margin-bottom: 15px;
}

/* links */
.footer-col a {
  display: block;
  color: #e5e7eb;
  line-height: 1.2;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col--articles a {
  line-height: 1.4;
}

/* text */
.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* spacing */
.mt {
  margin-top: 20px;
}

/* socials */
.logo-footer img {
  display: block;
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.politics {
  margin: 40px 0 0;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 15px;
}
.politics a {
  color: #ffffff;
  font-size: 16px;
}
.brands-footer {
  display: flex;
  gap: 13px 24px;
  align-items: center;
  overflow: hidden;
}
.brands-footer a {
  color: #fff;
}
.brands-footer img {
  max-width: 288px;
  max-height: 40px;
  width: auto;
  height: 40px;
  object-fit: contain;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom > a:hover {
  color: var(--blue-dark);
}
.footer-bottom > a {
  transition: 0.4s ease;
  font-size: 16px;
  color: #333;
}
.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 16px;
  color: #333;
}


@media (max-width: 1200px) {
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-container {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .politics {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom > a {
    transition: 0.4s ease;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.2;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f4f6f8;
  padding: 10px 18px;
  border-radius: var(--br);
  font-size: 14px;
  color: var(--color-brand-navy);
  font-weight: 500;
}

.section-label i {
  width: 8px;
  height: 8px;
  background: var(--color-brand-red);
  border-radius: 50%;
  display: inline-block;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-top: 15px;
}

.section-head--catalog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  margin-bottom: 32px;
}

.section-head.section-head--catalog {
  text-align: left;
}

.section-head--catalog h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.btn-catalog-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--br);
  background: var(--color-brand-navy);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.btn-catalog-all:hover {
  background: var(--color-brand-navy-dark);
  color: #fff;
}

@media (max-width: 575px) {
  .section-head--catalog {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .section-head--catalog h2 {
    font-size: 22px;
  }

  .section-head--catalog .btn-catalog-all {
    justify-content: center;
  }
}

/* BUTTON */
.btn-premium {
  text-transform: uppercase;
  width: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: var(--br);
  background: var(--color-brand-red);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s ease;
  margin: 20px auto 0 auto;
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.6s;
}

.btn-premium:hover::before {
  left: 120%;
}



.btn-premium:active {
  transform: scale(0.98);
}

.why-us {
  margin: 60px 0 32px;
  padding: 0;
}

.benefits-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 36px 40px 28px;
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.06);
}

.benefits-card__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-brand-navy);
  line-height: 1.25;
  margin: 0 0 32px;
  text-align: left;
}

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

.benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border-bottom: 1px solid #e8ecf2;
}

.benefits-item:nth-child(3n + 1),
.benefits-item:nth-child(3n + 2) {
  border-right: 1px solid #e8ecf2;
}

.benefits-item:nth-child(n + 4) {
  border-bottom: none;
  padding-bottom: 18px;
}

.benefits-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 33, 65, 0.08);
  border-radius: 12px;
  color: var(--color-brand-navy);
}

.benefits-item__text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.benefits-item__text p {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991px) {
  .benefits-card {
    padding: 32px 28px 36px;
    border-radius: 32px;
  }

  .benefits-card__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

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

  .benefits-item {
    border-bottom: 1px solid #e8ecf2;
  }

  .benefits-item:nth-child(3n + 1),
  .benefits-item:nth-child(3n + 2) {
    border-right: none;
  }

  .benefits-item:nth-child(odd) {
    border-right: 1px solid #e8ecf2;
  }

  .benefits-item:nth-child(n + 5) {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .benefits-card {
    padding: 24px 20px 28px;
    border-radius: 24px;
  }

  .benefits-card__title {
    font-size: 22px;
  }

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

  .benefits-item {
    border-right: none !important;
    padding: 20px 0;
  }

  .benefits-item:not(:last-child) {
    border-bottom: 1px solid #e8ecf2;
  }
}

html {
  scroll-behavior: smooth;
}

#main-button:focus-visible {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 3px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-navy);
}

.icon img {
  width: 52px;
  height: 52px;
}

.icon {
  display: flex;
  gap: 10px;
}

.row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.brends {
  padding: 60px 0;
}

.brends .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  row-gap: 5px;
  align-items: stretch;
}

.brends .row > * {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  min-width: 0;
}

@media (min-width: 576px) {
  .brends .row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .brends .row {
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    row-gap: 5px;
  }
}

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

.brends-card {
  background-color: #fafbfd;
  border: none;
  border-radius: var(--br);
  min-height: 96px;
  height: 100%;
  padding: 12px 10px;
  justify-content: center;
}

.mouse-cursor-gradient-tracking {
  position: relative;
  font-size: 1.2rem;
  border: none;
  color: #fff;
  cursor: pointer;
  outline: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brends-card img {
  width: 100%;
  max-width: 110px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  position: relative;
  z-index: 10;
}

.brends__top {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 24px;
}

.brends__top .section-title {
    margin-bottom: 0;
}

.mouse-cursor-gradient-tracking {
    position: relative;
    font-size: 1.2rem;
    border: none;
    color: #fff;
    cursor: pointer;
    outline: 0;
    overflow: hidden;
    display: flex;
    align-items: center
}

.brends-card svg {
  width: min(100%, 110px);
  height: auto;
  max-height: 64px;
}
.mouse-cursor-gradient-tracking::before {
    --size: 0;
    content: '';
    position: absolute;
    z-index: 1;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side,#dbdbe2,transparent);
    transform: translate(-50%,-50%);
    transition: width .4s,height .4s
}

.mouse-cursor-gradient-tracking:hover::before {
    --size: 1000px
}

.car-search {
  padding-top: 20px;
}

.car-search__pill {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #fff;
  border-radius: 40px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.08);
  gap: 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.car-search__select {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 20px;
  cursor: pointer;
  user-select: none;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background-color: #f3f6fa;
  overflow: visible;
  transition: background 0.2s, border-color 0.2s;
}


.car-search__select > svg:first-child,
.car-search__currency-icon,
.car-search__currency {
  color: #64717f;
  flex-shrink: 0;
}

.car-search__currency-icon,
.car-search__currency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.car-search__currency {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.car-search__select.open {
  z-index: 30;
}

.car-search__value {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-search__value.selected {
  color: var(--color-brand-navy);
}

.car-search__chevron {
  color: #64717f;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.car-search__select.open .car-search__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.car-search__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--br);
  box-shadow: 0 8px 32px rgba(38, 33, 65, 0.14);
  z-index: 300;
  overflow: hidden;
  padding: 6px 0;
}

.car-search__select.open .car-search__dropdown {
  display: block;
}

.car-search__select.open .car-search__dropdown--fixed {
  position: fixed;
  right: auto;
  z-index: 1000;
}

.car-search__option {
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brand-navy);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.car-search__option:hover:not(.car-search__option--empty) {
  background: #f3f6fa;
}



.car-search__option--empty {
  color: #9ca3af;
  cursor: default;
  font-style: italic;
}

.car-search__option--empty:hover {
  background: none;
  color: #9ca3af;
}

/* Divider */
.car-search__divider {
  width: 1px;
  height: 28px;
  background: #e4e6ed;
  flex-shrink: 0;
  margin: 0 4px;
}

.car-search__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  background: var(--color-brand-red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
  text-transform: uppercase;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .car-search__select {
    min-width: 0;
  }
}

.car-search__pill .car-search__btn {
  flex: 0 0 auto;
  justify-content: center;
}

.car-search__btn:hover {
  background: var(--color-brand-red-dark);
}



@media (max-width: 640px) {
  .car-search__pill {
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: var(--br);
    padding: 12px;
    gap: 8px;
  }
  .car-search__divider { width: 100%; height: 1px; margin: 0; }
  .car-search__select { width: 100%; flex: 1 1 auto; }
  .car-search__pill .car-search__btn {
    width: 100%;
    justify-content: center;
  }
}
.hero-contact {
  position: relative;
  max-width: 1000px;
  margin: 32px auto 48px;
  background: #f3f3f3;
  border-radius: var(--br);
  padding: 24px;
  display: flex;
  align-items: stretch;
  gap: 20px;
  z-index: 1;
}

.hero-contact__quick {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: var(--br);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-contact__quick-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand-navy);
  line-height: 1.25;
}

.hero-contact__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(41, 45, 52, 0.72);
}

.hero-contact__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--br);
  background: var(--color-brand-red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-contact__cta:hover {
  background: var(--color-brand-red-dark);
}

.hero-contact__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(41, 45, 52, 0.45);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-contact__media {
  flex: 0 0 48%;
  max-width: 500px;
  min-width: 420px;
  min-height: 420px;
  border-radius: var(--br);
  overflow: hidden;
}

.hero-contact__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-card {
  background: #fff;
  border-radius: var(--br);
  padding: 10px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.contact-card .icon img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card span {
  font-size: 15px;
  color: #888;
}

.contact-card h4 {
  font-size: 24px;
  margin: 5px 0 0;
  color: var(--color-brand-navy);
}

@media (max-width: 991px) {
  .hero-contact {
    flex-direction: column;
    padding: 24px 20px;
  }

  .hero-contact__quick {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-contact {
    margin: 24px 0 32px;
  }

  .hero-contact__media {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 300px;
    height: 300px;
  }
}

.cars {
  padding: 8px 0 60px 0;
}

/* CARD */
.car-card {
  display: block;
  background: #ffffff;
  border-radius: var(--br);
  overflow: hidden;
  color: var(--color-brand-navy);
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.08);
}

a.car-card:hover {
  color: var(--color-brand-navy);
}

/* IMAGE */
.car-image {
  position: relative;
  width: 100%;
  height: 250px;
  background: #f4f6f8;
  overflow: hidden;
}

.car-image__primary,
.car-image__hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.car-image__hover {
  opacity: 0;
}

.car-card:hover .car-image__hover {
  opacity: 1;
}

/* CONTENT */
.car-content {
  padding: 20px;
}

.car-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-brand-navy);
}

/* META */
.car-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-meta span {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.badge {
  background: #f4f6f8;
  color: var(--color-brand-navy);
  padding: 6px 14px;
  border-radius: var(--br);
  font-size: 13px;
  font-weight: 500;
}

/* LINE */
.divider {
  height: 1px;
  background: #e4e6ed;
  margin: 16px 0;
}

/* SPECS GRID */
.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* SPEC ITEM */
.spec {
  display: flex;
  gap: 10px;
  align-items: center;
}

.spec p {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 3px;
}

.spec b {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
}

/* ICON BASE */
.car-card .icon {
  background: rgba(38, 33, 65, 0.08);
  border-radius: var(--br);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.car-card .icon svg {
  width: 20px;
  height: 20px;
}

.car-card .icon.mileage svg {
  stroke: var(--color-brand-navy);
}

.car-card .icon.gearbox svg circle,
.car-card .icon.gearbox svg path {
  stroke: var(--color-brand-navy);
  fill: none;
}

.car-card .icon.fuel svg path,
.car-card .icon.engine svg path {
  fill: var(--color-brand-navy);
}

/* BOTTOM */
.car-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brand-navy);
}

.price span {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 400;
}

.price .price-currency,
.price-inner .price-currency {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

.btn-car {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #6b7280;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  pointer-events: none;
}

.car-card:hover .btn-car {
  color: var(--color-brand-navy);
}

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

.cars-grid > .swiper-slide {
  width: auto !important;
  min-width: 0;
  height: auto;
  flex-shrink: unset;
  box-sizing: border-box;
}

.cars-grid .car-image {
  height: 180px;
}

.cars-grid .car-content {
  padding: 14px 16px;
}

.cars-grid .car-content h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.25;
}

.cars-grid .car-meta span {
  font-size: 11px;
}

.cars-grid .badge {
  padding: 4px 10px;
  font-size: 11px;
}

.cars-grid .divider {
  margin: 12px 0;
}

.cars-grid .car-specs {
  gap: 10px;
}

.cars-grid .spec p {
  font-size: 11px;
}

.cars-grid .spec b {
  font-size: 12px;
}

.cars-grid .car-card .icon {
  padding: 6px;
}

.cars-grid .car-card .icon svg {
  width: 16px;
  height: 16px;
}

.cars-grid .price {
  font-size: 17px;
}

.cars-grid .price span {
  font-size: 11px;
}

.cars-grid .btn-car {
  padding: 10px 14px;
  font-size: 11px;
  border-radius: var(--br);
}

@media (max-width: 1200px) {
  .cars-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

  .cars-grid .car-image {
    height: 220px;
  }
}
.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 15px;
  margin-top: 40px;
  align-items: stretch;
}

.servicesSwiper {
  width: 100%;
  min-height: 520px;
}

.servicesSwiper .swiper-wrapper {
  align-items: stretch;
}

.servicesSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.servicesSwiper .swiper-slide .service-card {
  width: 100%;
}
/* ── Services layout ── */
.services {
  padding: 60px 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 15px;
  margin-top: 40px;
  align-items: start;
}
.services-cta-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  background: #0D1520;
}

.services-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-cta-car-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 217px;
  object-fit: cover;
  object-position: center center;
}

.services-cta-overlay {
  position: absolute;
  inset: 0;

}

/* Content — flex column, space-between */
.services-cta-content {
  position: relative;
  z-index: 1;
  padding: 32px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 580px;
}

/* Yuxarı text bloku */
.services-cta-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.services-cta-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.services-cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

/* Aşağı form bloku */
.services-cta-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Input */
.services-cta-input {
  background: #fff;
  border-radius: 20px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.services-cta-input input {
  background: none;
  border: none;
  outline: none;
  color: #0D1520;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  letter-spacing: 1px;
}

.services-cta-input input::placeholder {
  color: #c0c8d4;
  font-weight: 400;
  letter-spacing: 0;
}

.services-cta-rus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  border-left: 1px solid #e4e6ed;
  padding-left: 12px;
}

.services-cta-rus span {
  font-size: 20px;
  line-height: 1;
}

.services-cta-rus small {
  font-size: 10px;
  font-weight: 700;
  color: #0D1520;
  letter-spacing: 0.5px;
}

/* Düymə */
.services-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--color-brand-red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}

.services-cta-btn:hover {
  background: var(--color-brand-red-dark);
}

.services-cta-link {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.services-cta-link:hover {
  color: #fff;
}
/* ── Services Swiper ── */
.servicesSwiper {
  overflow: hidden;
  height: 100%;
}

.servicesSwiper .swiper-slide {
  height: auto;
}


.services {
  padding: 60px 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 15px;
  margin-top: 40px;
  align-items: stretch;
}

/* ── Sol CTA card ── */
.services-cta-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0D1520;
}

.services-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-cta-car-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 217px;
  object-fit: cover;
  object-position: center center;
}

.services-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 21, 32, 0.85) 0%,
    rgba(13, 21, 32, 0.2) 40%,
    rgba(13, 21, 32, 0.2) 60%,
    rgba(13, 21, 32, 0.95) 100%
  );
}

.services-cta-content {
  position: relative;
  z-index: 1;
  padding: 32px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.services-cta-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.services-cta-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.services-cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

.services-cta-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-cta-input {
  background: #fff;
  border-radius: 20px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.services-cta-input input {
  background: none;
  border: none;
  outline: none;
  color: #0D1520;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  letter-spacing: 1px;
}

.services-cta-input input::placeholder {
  color: #c0c8d4;
  font-weight: 400;
  letter-spacing: 0;
}

.services-cta-rus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  border-left: 1px solid #e4e6ed;
  padding-left: 12px;
}

.services-cta-rus span { font-size: 20px; line-height: 1; }
.services-cta-rus small {
  font-size: 10px;
  font-weight: 700;
  color: #0D1520;
  letter-spacing: 0.5px;
}

.services-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--color-brand-red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}

.services-cta-btn:hover { background: var(--color-brand-red-dark); }

.services-cta-link {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.services-cta-link:hover { color: #fff; }

/* ── Swiper ── */
.servicesSwiper {
  width: 100%;
  overflow: hidden;
}

.servicesSwiper .swiper-wrapper {
  align-items: stretch;
}

.servicesSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ── Service card ── */
.service-card {
  background: #f5f7fa;
  border-radius: var(--br);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  border-radius: var(--br) var(--br) 0 0;

}

.services-content {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
  width: 100%;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-brand-red);
  transition: background 0.2s ease;
}

.service-card__btn:hover {
  background: var(--color-brand-red-dark);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-cta-card {
    min-height: 480px;
  }
}

/* ══════════════════════════════════════
   LOCATIONS
══════════════════════════════════════ */
.locations {
  padding: 60px 0;
}

.locations--contacts-page {
  padding: 40px 0 60px;
}

.locations--contacts-page .locations-grid {
  margin-top: 28px;
}

.locations-addresses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: #f5f7fa;
  border-radius: var(--br);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.location-address svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-brand-red);
}

.location-address__city {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin-bottom: 4px;
}

.location-address__text {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

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

.location-card {
  background: #fff;
  border-radius: var(--br);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.location-card:hover {
  box-shadow: 0 8px 28px rgba(38, 33, 65, 0.12);
}

.location-media {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f3f6fa;
}

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

/* ── Info ── */
.location-info {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.location-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin: 0;
}

.location-lead {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.location-contacts--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  flex: 1;
  align-items: start;
}

.location-contacts--cols .location-phones {
  flex: none;
}

.location-contacts__aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.location-contacts--cols .location-emails {
  gap: 6px;
}

@media (max-width: 480px) {
  .location-contacts--cols {
    grid-template-columns: 1fr;
  }
}

.location-phones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.location-phones li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.location-phones li svg {
  width: 14px;
  height: 14px;
  color: #6b7280;
  flex-shrink: 0;
}

.location-phones li a {
  color: var(--color-brand-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.location-phones li a:hover {
  color: var(--color-brand-navy-dark);
}

.location-phones--main li {
  align-items: flex-start;
  padding-bottom: 4px;
}

.location-phones__stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-phones__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
}

.location-email,
.location-emails a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-brand-navy);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}

.location-email svg,
.location-emails a svg {
  width: 14px;
  height: 14px;
  color: #6b7280;
  flex-shrink: 0;
}

.location-emails {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-email:hover,
.location-emails a:hover {
  color: var(--color-brand-navy-dark);
  text-decoration: underline;
}

/* ── Button ── */
.location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: var(--color-brand-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}

.location-btn:hover {
  background: var(--color-brand-navy-dark);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .locations-addresses { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
}

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

#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  pointer-events: none;
  isolation: isolate;
  width: 80px;
  height: 80px;
}

#main-div > * {
  pointer-events: auto;
}
#main-button .icon-close {
  display: none;
}
#main-button.open .icon-mail {
  display: none;
}
#main-button.open .icon-close {
  display: block;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 60px;
  width: 60px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(---light-yellow);
  border-radius: 50%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

#main-button:hover {
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: scale(1.08);
}

#main-button ~ .onlineregistration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  visibility: hidden;
  font-weight: bold;
  text-decoration: none;
  height: 50px;
  padding: 0 25px;
  color: #fff;
  border: 1px solid var(--blue);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: -1;
  right: 10px !important;
  bottom: 10px !important;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: 14px;
}

#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}


#main-button ~ .wrapper_icon_messenger {
  width: fit-content;
  height: fit-content;
  box-shadow: unset;
  border-radius: unset;
}
#main-button.open .icon-close {
  display: block;
}
#main-button .icon-close {
  display: none;
}
#main-button.open ~ .onlineregistration {
  visibility: visible;
  right: 80px !important;
  opacity: 1;
  z-index: 4;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  background: #fff;
  color: black;
  width: 200px;
}
#main-button.open ~ #wrapper_messenger {
  bottom: 82px;
  right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  z-index: 3;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ #wrappertg {
  bottom: 150px;
  background: linear-gradient(0deg, #017ab1, #01abe6) !important;
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  z-index: 3;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ #wrapper_whatsapp {
  bottom: 220px;
  background: lab(70.5521% -66.5147 45.8073);
}
#main-button.open ~ #wrapper_imo {
  bottom: 350px;
  border-radius: 50%;
  overflow: hidden;
}
#main-button.open ~ .wrappericon {
  opacity: 1;
  z-index: 3;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ #wrapper_messenger{
  width: 55px;
  height: 55px;
}
#main-button.chat-pulse::before,
#main-button.chat-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(38, 33, 65, 0.22);
  animation: chat-ripple 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: -1;
}

#main-button.chat-pulse::after {
  animation-delay: 1.3s;
}

#main-button.chat-pulse.open::before,
#main-button.chat-pulse.open::after {
  animation: none;
  opacity: 0;
}

@keyframes chat-ripple {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  70% {
    opacity: 0.12;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #main-button.chat-pulse::before,
  #main-button.chat-pulse::after {
    animation: none;
    opacity: 0;
  }
}

body > .wrapper {
  display: block;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* BURGER BUTTON */
#open_menu {
  display: none;
  cursor: pointer;
}

section.bredcrumb {
  padding: 16px 0 12px;
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.5;
  color: #686a7a;
  font-weight: 400;
}

section.bredcrumb .speedbar,
section.bredcrumb .over {
  display: block;
  height: auto;
  min-height: 0;
  overflow: visible;
  white-space: normal;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
}

section.bredcrumb a {
  font-size: inherit;
  line-height: inherit;
  color: #292d34;
  font-weight: 500;
}

section.bredcrumb a:hover {
  color: var(--color-brand-red);
}

/* Секция сразу после крошек */
main > .bredcrumb + section {
  padding-top: 16px;
}

main > .bredcrumb + section.bloginner {
  padding-top: 12px;
}
.about-box {
  background:var(--color-brand-navy-dark);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08);
  border-radius: var(--br);
  padding: 40px 40px;
  color: #fff;
}

/* HEAD */
.about-head {
  text-align: center;
  margin-bottom: 50px;
}

.about-head span {
  font-size: 17px;
}

.about-head h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}

.about-head p {
  opacity: 0.8;
}

/* STROKE EFFECT (экосистему) */
.stroke-text {
  position: relative;
  display: inline-block;
}

.stroke-text::before {
  content: "";
  width: 125%;
  height: 155%;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 619 140'%3E%3Cpath stroke='%23C4191C' stroke-linecap='round' stroke-width='9' fill='none' d='M73 5c96-2 368 20 462 48 62 19 73 47 8 58-126 22-343 0-440-9C-24 89-9 54 46 40c116-29 607 6 565 95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

/* LEFT BIG CARD */
.about-main {
  background: #fff;
  color: #000;
  border-radius: var(--br);
  padding: 30px 20px;
}

.about-main h3 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 600;
}

/* TAGS */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tags span {
  padding: 10px 15px;
  border-radius: var(--br-2);
  font-size: 14px;
  border: 1px solid #ecf0f5;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-tags span::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 11'%3E%3Cpath stroke='%23292D34' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7' fill='none' d='m15 1-9 9-5-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  background-color: #ccd8ff;
  width: 24px;
  height: 24px;
  border-radius: var(--br);
}

/* RIGHT CARDS */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.about-card {
  background: #fff;
  color: #000;
  border-radius: var(--br);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-card h4 {
  font-size: 28px;
}

.about-card p {
  font-size: 16px;
  color: #6b7280;
}

/* Premium about showcase (about1 / about2) */
.about-premium {
  padding: 80px 0 100px;
  background: #e4e9f2;
}

.about-premium .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-premium__row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-premium__row--content-left {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-premium--quality {
  padding-top: 48px;
}

.about-premium__row--equal-height {
  align-items: stretch;
}

.about-premium__row--equal-height .about-premium__media {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-premium__row--equal-height .about-premium__frame {
  flex: 1;
  aspect-ratio: unset;
  height: 100%;
  min-height: 100%;
}

.about-premium__row--equal-height .about-premium__frame img {
  height: 100%;
  min-height: 100%;
}

.about-premium__row--equal-height .about-premium__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-premium__row--equal-height .about-premium__btn {
  margin-top: auto;
}

.about-premium__media {
  position: relative;
}

.about-premium__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--br) + 4px);
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(30, 26, 51, 0.04),
    0 24px 64px rgba(30, 26, 51, 0.14);
  background: var(--color-brand-navy-dark);
}

.about-premium__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    transparent 45%,
    rgba(30, 26, 51, 0.35) 100%
  );
  pointer-events: none;
}

.about-premium__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-premium__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(30, 26, 51, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.about-premium__badge--accent {
  background: var(--color-brand-red);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(230, 31, 34, 0.35);
}

.about-premium__content {
  background: #fff;
  border-radius: calc(var(--br) + 4px);
  padding: 44px 40px;
  box-shadow: 0 12px 40px rgba(30, 26, 51, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-premium__content--dark {
  background: var(--color-brand-navy-dark);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.04),
    0 24px 56px rgba(30, 26, 51, 0.2);
}

.about-premium__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-red);
  margin-bottom: 16px;
}

.about-premium__content--dark .about-premium__label {
  color: var(--color-brand-red-light);
}

.about-premium__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-brand-navy-dark);
}

.about-premium__content--dark .about-premium__title {
  color: #fff;
}

.about-premium__title em {
  font-style: normal;
  position: relative;
  display: inline;
  color: var(--color-brand-red);
}

.about-premium__content--dark .about-premium__title em {
  color: #fff;
}

.about-premium__content--dark .about-premium__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--color-brand-red);
  border-radius: 2px;
}

.about-premium__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fourty);
  margin-bottom: 28px;
}

.about-premium__content--dark .about-premium__lead {
  color: rgba(255, 255, 255, 0.78);
}

.about-premium__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-premium__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #2c2f36;
}

.about-premium__list-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef1ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 11'%3E%3Cpath stroke='%23C4191C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' fill='none' d='m15 1-9 9-5-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
}

.about-premium__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-premium__stat {
  padding: 20px 18px;
  border-radius: var(--br);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-premium__stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #fff;
}

.about-premium__stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.about-premium__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-brand-red);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 24px rgba(230, 31, 34, 0.28);
}

.about-premium__btn:hover {
  background: var(--color-brand-red-dark);
}

.about-premium__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.about-premium__btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  box-shadow: none;
}

@media (max-width: 992px) {
  .about-premium__row,
  .about-premium__row--content-left {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-premium__row--equal-height .about-premium__frame {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .about-premium__row--equal-height .about-premium__btn {
    margin-top: 0;
  }

  .about-premium__content {
    padding: 32px 24px;
  }
}

@media (max-width: 576px) {
  .about-premium .container {
    gap: 28px;
  }

  .about-premium__badge {
    top: 16px;
    left: 16px;
    font-size: 11px;
    padding: 8px 14px;
  }
}

.about-bottom {
  padding-top: 0 !important;
}

.about-bottom-inner {
  position: relative;
  text-align: center;
}

/* TITLE */
.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}
.about-line-green {
  position: relative;
}

/* GREEN LINE */
.about-line-green::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 172%;
  height: 300px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 819 301'%3E%3Cpath stroke='%23ADEF7B' stroke-linecap='round' stroke-width='9' d='M546 296c190-22 121-63 21-78-84-13-393-24-511-15-52 4-79 26-8 40 72 14 573 72 735-26 48-30 33-75-2-98A884 884 0 0 0 415 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: -85%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.about-card2 {
  position: relative;
  background: #fff;
  border-radius: var(--br);
  padding: 40px 20px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* ICON (before) */
.about-card2::before {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  display: block;
  margin-bottom: 15px;

background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 42 42'%3E%3Cpath fill='%23C4191C' d='M40 2h-6l-2-2H11C9 0 8 1 8 2H2L0 4v5c0 5 4 9 8 10 0 6 4 11 10 12v1l-1 2-2 2h-3l-2 1-1 4 1 1h22l1-1-1-4-2-1h-3l-2-2-1-2v-1c6-1 10-6 10-12 4-1 8-5 8-10V4l-2-2ZM8 14c-2 0-4-2-4-5V6h4v8Zm17 7-4-2-4 2 1-4-3-4h4l2-5 2 5h4l-3 4 1 4ZM38 9c0 3-2 5-4 5V6h4v3Z'/%3E%3Cpath fill='url(%23a)' fill-opacity='.5' d='M40 2h-6l-2-2H11C9 0 8 1 8 2H2L0 4v5c0 5 4 9 8 10 0 6 4 11 10 12v1l-1 2-2 2h-3l-2 1-1 4 1 1h22l1-1-1-4-2-1h-3l-2-2-1-2v-1c6-1 10-6 10-12 4-1 8-5 8-10V4l-2-2ZM8 14c-2 0-4-2-4-5V6h4v8Zm17 7-4-2-4 2 1-4-3-4h4l2-5 2 5h4l-3 4 1 4ZM38 9c0 3-2 5-4 5V6h4v3Z'/%3E%3Cpath fill='url(%23b)' d='M40 2h-6l-2-2H11C9 0 8 1 8 2H2L0 4v5c0 5 4 9 8 10 0 6 4 11 10 12v1l-1 2-2 2h-3l-2 1-1 4 1 1h22l1-1-1-4-2-1h-3l-2-2-1-2v-1c6-1 10-6 10-12 4-1 8-5 8-10V4l-2-2ZM8 14c-2 0-4-2-4-5V6h4v8Zm17 7-4-2-4 2 1-4-3-4h4l2-5 2 5h4l-3 4 1 4ZM38 9c0 3-2 5-4 5V6h4v3Z'/%3E%3Cdefs%3E%3CradialGradient id='b' cx='0' cy='0' r='1' gradientTransform='matrix(21.8 15.8 -26.6 36.9 7 23)' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23C4191C'/%3E%3Cstop offset='1' stop-color='%23C4191C' stop-opacity='0'/%3E%3C/radialGradient%3E%3ClinearGradient id='a' x1='39.6' x2='21.8' y1='4.8' y2='32.3' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23C4191C'/%3E%3Cstop offset='1' stop-color='%23C4191C' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");  background-repeat: no-repeat;
  background-size: contain;
}

/* TEXT */
.about-card2 p {
  font-size: 18px;
  color: #2c2f36;
  font-weight: 500;
  line-height: 1.5;
}

/* CARD BASE */

/* LEFT DARK */

/* RIGHT GRADIENT */

/* TEXT */

/* GLOW EFFECT */
.services_detail_content article :is(ol, ul), .detail_section_one_inner_content :is(ul, ol) {
  padding-left: 20px;
}
.services_detail_content :is(h2, h3) {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  opacity: 1;
  margin-bottom: 20px;
}
b {
  font-weight: bold;
}
@media (max-width: 900px) {
  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-title::before {
    width: 280px;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-head h2 {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .about-main h3 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 600;
  }
  .about-title{
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .car-inner-grid {
    display: flex !important;
    flex-direction: column;
  }
  .about-box {
    background: linear-gradient(135deg, #2f5bff, #04387f);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08);
    border-radius: var(--br);
    padding: 40px 20px;
    color: #fff;
  }
  .about-main h3 {
    font-size: 23px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 600;
  }
  .about-title {
    font-size: 23px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
  }
}
section{
  padding: 60px 0;
}

section.car-search {
  padding-top: 20px;
}

section.bloginner,
section.bredcrumb + section.bloginner {
  padding-top: 12px;
  padding-bottom: 48px;
}

section.bredcrumb {
  padding: 28px 0 16px;
}
._logoMarquee_50ytu_157 {
  overflow: hidden;
  position: relative;
  display: flex;
}

._logoMarquee_50ytu_157::before,
._logoMarquee_50ytu_157::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

._logoMarquee_50ytu_157::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

._logoMarquee_50ytu_157::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

._logoMarqueeList_50ytu_164 {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  will-change: transform;
}

._logoMarqueeListItem_50ytu_183 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 257px;
  height: 176px;
}

._bestStandardsDealer_50ytu_136 .content{
  background: #fff;
  border-radius: var(--br);
  padding: 40px 20px 0 20px;
  text-align: center;
}
._bestStandardsDealerTitle_50ytu_144{
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 16px;
}
._faq_section .content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 16px;
}

._faq_title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 32px;
}

._faq_list {
  display: flex;
  flex-direction: column;
}

._faq_item {
  border-top: 1px solid #ecf0f5;
}

._faq_item:last-child {
  border-bottom: 1px solid #ecf0f5;
}

._faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;

}

._faq_question span:first-child {
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.4;
}

._faq_icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f6fa;
  transition: transform 0.35s ease;
}

._faq_item.active ._faq_icon {
  transform: rotate(45deg);
}

._faq_answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

._faq_answer p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
  padding-bottom: 24px;
}
.simple_page{
  padding-top: 0 !important;
}
.inner{
  display: flex;
  gap: 20px;
  flex-direction: column;
}
main section.simple_page .container .inner .contacts {
    display: flex;
    gap: 40px;
    padding: 20px;
    border-radius: 6px;
}

@media (max-width: 767.98px) {
    main section.simple_page .container .inner .contacts {
        flex-direction:column;
        gap: 15px
    }
}

main section.simple_page .container .inner .contacts .contact_wr {
    display: flex;
    gap: 15px;
    flex-direction: column;
    width: 100%
}

@media (max-width: 767.98px) {
    main section.simple_page .container .inner .contacts .contact_wr {
        gap:10px
    }
}

main section.simple_page .container .inner .contacts .contact_wr .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500
}

main section.simple_page .container .inner .contacts .contact_wr .value {
    color: #4f4f4f
}

main section.simple_page .container .inner .card-office {
    display: flex;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(224,224,224,.5803921569);
    box-shadow: 1px 1px 0 0 rgba(224,224,224,.231372549);
    background-color: #fff
}

@media (max-width: 767.98px) {
    main section.simple_page .container .inner .card-office {
        padding:0
    }
}

main section.simple_page .container .inner .card-office .card-office_wr {
    display: flex;
    gap: 40px
}

@media (max-width: 767.98px) {
    main section.simple_page .container .inner .card-office .card-office_wr {
        flex-wrap:wrap;
        gap: 20px
    }
}

main section.simple_page .container .inner .card-office .card-office_wr .card-info_wr,main section.simple_page .container .inner .card-office .card-office_wr .card-phone_wr {
    align-items: flex-start
}

@media (max-width: 767.98px) {
    main section.simple_page .container .inner .card-office .card-office_wr .card-info_wr,main section.simple_page .container .inner .card-office .card-office_wr .card-phone_wr {
        justify-content:flex-start;
        padding: 0 20px
    }

    main section.simple_page .container .inner .card-office .card-office_wr .card-btn_wr {
        padding: 0 20px 20px
    }
}

main section.simple_page .container .inner .card-office .card-office_wr .card-btn_wr .card-btn a.btn {
    font-weight: 300;
    font-size: 16px;
    padding: 15px;
    max-width: unset
}

main section.simple_page .container .inner .card-office .card-office_wr>div {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex
}

main section.simple_page .container .inner .card-office .card-office_wr>div .card-office-img img {
    border-radius: 6px;
    width: 100%
}

@media (max-width: 767.98px) {
    main section.simple_page .container .inner .card-office .card-office_wr>div {
        max-width:100%
    }
}

main section.simple_page .container .inner .card-office .card-office_wr h2 {
    margin-bottom: 20px;
            font-size: 32px;
        line-height: .94;
        font-weight: 500
}

main section.simple_page .container .inner .card-office .card-office_wr h4,main section.simple_page .container .inner .card-office .card-office_wr p {
    padding-bottom: 40px
}
.inner .location-btn {
  padding: 0 20px;
}
.inner h4{
  font-size: 14px;
  font-weight: 700;
}
.map{
  border-radius: var(--br);
  padding-top: 20px
}
#map{
  width: 100%;
  height: 550px;
  border-radius: var(--br);
}

.adv_top_wrapper {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.adv_bottom_wrapper {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 0px 0px 16px 16px;
}


/* TOP */
.adv_top_wrapper {
  background: #fff;
  padding: var(--br);
  border-radius: var(--br);
  position: relative;
  z-index: 2;
}

/* buttons row */
.top_buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top_buttons button {
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--br);
}

.top_buttons .active {
  background: #F4F5F9;
}

/* form */
.form_wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.inputs {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
}

.inputs input {
  width: 22%;
  border: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding: 8px 0;
  outline: none;
}

/* actions */
.actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.actions .location-btn {
      padding: 25px 28px;
}

.location_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid #caccdf;
  border-radius: var(--br);
  background: white;
  cursor: pointer;
  color: #7a7c8a;
  text-decoration: none;
}

.location_btn svg {
  flex-shrink: 0;
  color: #7a7c8a;
}

.submit_btn {
  background: #8BC540;
  color: white;
  padding: 12px 56px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* BOTTOM */
.adv_bottom_wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 28px 28px;
  background: #f4f5f9;
  margin-top: -25px;
  position: relative;
  z-index: 1;
  color: #686a7a;
}

.adv_bottom_wrapper .left_text {
  width: 100%;
  max-width: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
}

.contacts-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  width: 100%;
}

.contacts-quick__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.contacts-quick__col--catalog {
  justify-content: flex-start;
}

.contacts-quick__label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  line-height: 1.3;
}

.contacts-quick__phones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  column-gap: 24px;
}

.contacts-quick__phones a,
.contacts-quick__phone {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-brand-navy-dark);
  text-decoration: none;
  white-space: nowrap;
}

.contacts-quick__phones a:hover,
.contacts-quick__phone:hover {
  color: var(--color-brand-red);
}

.contacts-quick__catalog {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy-dark);
  text-decoration: none;
  line-height: 1.45;
}

.contacts-quick__catalog:hover {
  color: var(--color-brand-red);
}

.contacts-quick__catalog svg {
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .inputs {
    width: 100%;
  }

  .inputs input {
    width: 48%;
  }

  .contacts-quick {
    grid-template-columns: 1fr 1fr;
  }

  .contacts-quick__col--catalog {
    grid-column: 1 / -1;
  }

  .contacts-quick__phones a,
  .contacts-quick__phone {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .contacts-quick {
    grid-template-columns: 1fr;
  }

  .contacts-quick__col--catalog {
    grid-column: auto;
  }

  .contacts-quick__phones {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .inputs input {
    width: 100%;
  }

  .actions {
    width: 100%;
    flex-direction: column;
  }

  .submit_btn,
  .location_btn,
  .actions .location-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

.blog_section {
  padding: 40px 0;
}

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

.blog_card {
  background: #fff;
  border-radius: var(--br);
  overflow: hidden;
  cursor: pointer;
}


.blog_card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f4f6;
  max-height: 212px;
}

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

.blog_card__body {
  padding: 16px 20px 20px;
}

.blog_card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blog_card__date {
  font-size: 13px;
  color: #9ca3af;
}

.blog_card__views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #9ca3af;
}

.blog_card__title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.blog_card__title , .blog_card__excerpt , .services-grid .service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_card__excerpt {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .blog_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog_grid {
    grid-template-columns: 1fr;
  }
}
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.car-filter-section {
  padding: 8px 0 28px;
}

.car-filter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.car-filter__top,
.car-filter__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.car-filter__field,
.car-filter__range {
  min-width: 0;
}

.car-filter__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.car-filter__field--wide {
  grid-column: span 3;
}

.car-filter__field span,
.car-filter__range span {
  display: block;
  min-height: 16px;
  color: #5c6470;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.car-filter__field input,
.car-filter__field select,
.car-filter__range input {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 13px;
  outline: none;
  padding: 0 11px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.car-filter__field select {
  cursor: pointer;
}

.car-filter__field input:focus,
.car-filter__field select:focus,
.car-filter__range input:focus {
  border-color:  var(--color-brand-red-dark);
  box-shadow: 0 0 0 3px rgba(168, 116, 41, 0.14);
}

.car-filter__range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
}

.car-filter__range span {
  grid-column: 1 / -1;
}

.car-filter__actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  border-top: none;
  padding-top: 0;
}

.car-filter__status:empty {
  display: none;
}

.car-filter__status {
  margin-right: auto;
  color: #5c6470;
  font-size: 13px;
  min-height: 18px;
}

.car-filter__reset,
.car-filter__submit {
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-brand-navy-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 0 18px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
    width:50%;
}

.car-filter__reset {
  background: #fff;
  color: var(--color-brand-navy-dark);
}

.car-filter__submit {
  background: var(--color-brand-navy-dark);
  color: #fff;
}

.car-filter__reset:hover,
.car-filter__submit:hover {
  border-color: var(--color-brand-red-dark);
}

.car-filter__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.car-filter-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  color: #5c6470;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.68);
}

@media (min-width: 1201px) {
  .car-filter {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .car-filter__grid {
    display: contents;
  }

  .car-filter__actions {
    grid-column: 5;
    grid-row: 2;
    align-self: end;
  }
}

@media (max-width: 1200px) {
  .car-filter__top,
  .car-filter__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .car-filter__field--wide {
    grid-column: span 2;
  }

  .car-filter__actions {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding-top: 14px;
    align-items: center;
  }
}

@media (max-width: 992px) {
  .car-filter__top,
  .car-filter__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .car-filter__field--wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .car-filter {
    padding: 14px var(--mobile-gutter);
    gap: 12px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .car-filter__top,
  .car-filter__grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #e2e8f0;
    margin-inline: calc(-1 * var(--mobile-gutter));
    padding: 0 var(--mobile-gutter) 6px;
  }

  .car-filter__top::-webkit-scrollbar,
  .car-filter__grid::-webkit-scrollbar {
    height: 5px;
  }

  .car-filter__top::-webkit-scrollbar-thumb,
  .car-filter__grid::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 999px;
  }

  .car-filter__field,
  .car-filter__range {
    flex: 0 0 auto;
    width: 132px;
    scroll-snap-align: start;
  }

  .car-filter__range {
    width: 156px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .car-filter__field--wide {
    width: 200px;
  }

  .car-filter__field span,
  .car-filter__range span {
    font-size: 10px;
    min-height: auto;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .car-filter__field input,
  .car-filter__field select,
  .car-filter__range input {
    height: 40px;
    font-size: 13px;
    padding: 0 8px;
  }

  .car-filter__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 0 0;
    margin: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .car-filter__status {
    grid-column: 1 / -1;
    margin-right: 0;
    text-align: center;
    order: -1;
  }

  .car-filter__reset,
  .car-filter__submit {
    width: 100%;
    height: 44px;
  }
}

.prem-offers__grid.is-updating {
  opacity: 0.55;
  pointer-events: none;
}

#prem-offers-section {
  overflow: visible;
}

.prem-offers__bg {
  background: transparent;
  position: relative;
  padding: 0 0 20px;
}
.article-full {
  display: flex;
  justify-content: space-between;
  padding: 0;
  gap: 40px;
  align-items: flex-start;
}

section.bloginner {
  padding-top: 12px;
  padding-bottom: 48px;
}

.article_left_content {
  width: 70%;
}

.article-full__image {
  height: 500px;
  overflow: hidden;
  border-radius: 32px;
}

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

.article-full__content {
  margin-top: 48px;
  font-size: 22px;
  line-height: 1.7;
  color: #1a1a1a;
  text-align: justify;
}

.article-full__content p:first-of-type::first-letter {
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  margin-right: 2px;
  margin-top: 4px;
}

.article-full__content h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #111;
  text-align: left;
}

.article-full__content p {
  margin: 0 0 24px;
}

.article-full__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.article-full__meta span {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--br);
  border: 1.5px solid var(--color-brand-navy-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #374151;
}

#other_articles {
  width: 28%;
  flex-shrink: 0;
  align-self: flex-start;
}

.article-sidebar-sticky {
  position: sticky;
  top: calc(var(--header-offset, 100px) + 16px);
  z-index: 2;
}

.article-sidebar-sticky__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-brand-red-dark);
  margin: 0 0 20px;
}

.article-sidebar-sticky__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog_item {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.blog_item .h-\[150px\] {
  height: 150px;
  overflow: hidden;
}

.blog_item .h-\[150px\] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog_item:hover .h-\[150px\] img {
  transform: scale(1.1);
}

.blog_item .p-4 {
  padding: 16px;
}

.blog_item .p-4 span {
  font-size: 12px;
  font-weight: 600;
  color: #8f96a3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.blog_item h3 {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.blog_item p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #666;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .article-full {
    flex-direction: column;
  }
  .article_left_content,
  #other_articles {
    width: 100%;
  }
  #other_articles {
    width: 100%;
  }

  .article-sidebar-sticky {
    position: static;
    top: auto;
  }
  .article-sidebar-sticky__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .blog_item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .article-full__image {
    height: 280px;
    border-radius: 20px;
  }
  .article-full__content {
    font-size: 18px;
  }
  .blog_item {
    flex: 1 1 100%;
  }
}



.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  transition: gap 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.socials img {
  width: 42px;
  height: 42px;
  transition:
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.socials img:hover {
  opacity: 1;
}


@media (prefers-reduced-motion: reduce) {
  .socials,
  .socials img {
    transition-duration: 0.01ms !important;
  }
}


.icon svg{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


a.car-card:focus-visible {
  outline: 2px solid var(--blue-dark2);
  outline-offset: 3px;
}


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


.socials a:hover {
  background: rgba(255, 255, 255, 0.16);
}


.icon svg {
  width: 22px;
  height: 22px;
}
.icon svg path,
.icon svg {
  stroke: var(--blue-dark);
}



.icon {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #6b7a8d;
}

.icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: 0.2s;
}

.icon{
  display: flex;
  gap: 10px;
}


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

.spec p {
  font-size: 13px;
  color: #9aa1b1;
  margin-bottom: 5px;
}

.spec b {
  font-size: 14px;
  color: #111;
}

/* ICON BASE */
.icon svg {
  width: 22px;
  height: 22px;
}
.icon svg path,
.icon svg {
  stroke: var(--blue-dark);
}

/* Страница авто: отдельный визуальный язык (не «как у типового маркетплейса») */
.car-inner {
  padding: 56px 0 80px;
}

.car-inner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

/* LEFT: галерея в «подложке» */
.car-gallery {
  position: relative;
  min-width: 0;
  max-width: 100%;
  padding: 14px;
  background: #fff;
  border-radius: 22px;
  box-shadow:
    0 2px 3px rgb(15 23 42 / 4%),
    0 16px 40px rgb(15 23 42 / 8%);
}

.main-image {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: none;
  box-shadow: inset 0 0 0 1px rgb(15 23 42 / 6%);
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* STATUS */
.status {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #0f172a;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* THUMBS */
.thumbs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 #e2e8f0;
}

.thumbs::-webkit-scrollbar {
  height: 6px;
}

.thumbs::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 999px;
}

.thumbs::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 999px;
}

.thumbs a {
  display: block;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.thumbs a.is-active,
.thumbs a:hover,
.thumbs a:focus-visible {
  border-color: rgb(22 111 163 / 45%);
  box-shadow: 0 0 0 3px rgb(22 111 163 / 12%);
}

.thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.25s, transform 0.25s;
}

.thumbs a.is-active img,
.thumbs a:hover img,
.thumbs a:focus-visible img {
  opacity: 1;
  transform: none;
}

/* RIGHT: карточка параметров */
.car-info-box {
  box-sizing: border-box;
  padding-left: clamp(28px, 3vw, 44px);
  padding-right: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(24px, 3vw, 40px);
  padding-top: clamp(52px, 7vw, 88px);
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgb(15 23 42 / 7%);
  box-shadow:
    0 2px 3px rgb(15 23 42 / 4%),
    0 20px 50px rgb(15 23 42 / 7%);
  position: relative;
}

.car-info-box h1 , .car-inner h2{
  font-size: clamp(26px, 2.6vw, 34px);
  margin: 0 0 4px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.car-info-box.desc{
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-top: 18px;
  padding: 35px !important;
}
.car-info-box.desc p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}
.price-inner {
  font-size: clamp(26px, 2.4vw, 32px);
  color: #0f172a;
  font-weight: 800;
  margin: 18px 0 22px;
  padding-bottom: 0;
  border-bottom: none;
  letter-spacing: -0.02em;
}

.price-inner::before {
  content: "Стоимость";
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}

/* Контакты менеджера (как в шапке) */
.car-inner .car-info-manager {
  margin-top: 8px;
  padding-top: 22px;
}

.car-inner .car-info-manager__title {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.car-inner .car-info-manager__row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.car-inner .car-info-manager__cta {
  margin: 0;
  flex-shrink: 0;
  height: 52px;
  padding: 0 24px;
  font-size: 14px;
}

.car-inner .car-info-manager__socials {
  padding-right: 0;
  gap: 12px;
}

.car-inner .car-info-manager__socials img {
  width: 42px;
  height: 42px;
}

.car-inner .car-info-manager__socials a {
  display: flex;
  border-radius: 12px;
  transition: opacity 0.2s, transform 0.2s;
}

.car-inner .car-info-manager__socials a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* BADGES */
.car-inner .badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  align-items: center;
}

.car-inner .badges span {
  background: #fff;
  color: var(--blue-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  border: 1px solid rgb(22 111 163 / 35%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 80%) inset;
}

.car-inner .badges span svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.car-inner .badges span svg path {
  stroke: var(--blue-dark);
}

.car-inner .badges span svg path[fill="currentColor"] {
  stroke: none;
}

/* Характеристики: плитки вместо «таблицы» */
.car-inner .specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 8px;
}

.car-inner .specs-grid .spec {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  position: relative;
  background: linear-gradient(145deg, #f1f5f9 0%, #f8fafc 100%);
  border-radius: 14px;
  border: 1px solid rgb(148 163 184 / 18%);
}

.car-inner .specs-grid .spec:nth-child(odd)::after {
  display: none;
}

.car-inner .specs-grid .spec:not(:nth-last-child(-n + 2)) {
  border-bottom: none;
}

.car-inner .specs-grid .spec .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgb(15 23 42 / 6%);
}

.car-inner .specs-grid .spec .icon svg {
  width: 22px;
  height: 22px;
}

.car-inner .specs-grid .spec p {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 4px;
  line-height: 1.3;
}

.car-inner .specs-grid .spec b {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.spec-unit {
  font-weight: 500;
  color: #64748b;
}

.car-inner .specs-grid .spec .icon.gearbox svg circle,
.car-inner .specs-grid .spec .icon.gearbox svg path {
  stroke: var(--blue-dark) !important;
}

.car-inner .btn-premium {
  margin-top: 22px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .car-inner-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 28px);
  }

  .car-inner-grid > :first-child {
    display: contents;
  }

  .car-inner .car-gallery {
    order: 1;
  }

  .car-inner-grid > .car-info-box:not(.desc) {
    order: 2;
  }

  .car-inner .car-info-box.desc {
    order: 3;
    margin-top: 0;
  }

  .car-info-box {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 26px;
    padding-top: clamp(44px, 10vw, 56px);
  }

  .car-info-box.desc {
    padding: 20px !important;
  }

  .car-inner .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .car-inner .specs-grid .spec {
    padding: 12px 14px;
    gap: 0;
  }

  .car-inner .specs-grid .spec .icon {
    display: none;
  }

  .car-inner .specs-grid .spec p {
    font-size: 11px;
  }

  .car-inner .specs-grid .spec b {
    font-size: 13px;
  }

  .car-inner .badges {
    gap: 6px;
    margin-bottom: 16px;
  }

  .car-inner .badges span {
    font-size: 10px;
    padding: 5px 10px;
    gap: 5px;
  }

  .car-inner .badges span svg {
    width: 12px;
    height: 12px;
  }

  .main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .thumbs a,
  .thumbs img {
    width: 56px;
    height: 56px;
  }
}

/* ── Premium site menu modal ── */
.site-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-menu-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.site-menu-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(165deg, #ffffff 0%, #f6f8fc 48%, #eef2f8 100%);
  box-shadow: -24px 0 80px rgba(15, 23, 42, 0.22);
  padding: 28px 24px 36px;
  transform: translateX(104%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu-modal.is-open .site-menu-modal__panel {
  transform: translateX(0);
}

.site-menu-modal__panel::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -40px;
  width: min(320px, 72vw);
  height: 220px;
  background: url('/assests/img/bannerFone.png') right top / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.site-menu-modal__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.site-menu-modal__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(30, 26, 51, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-menu-modal__close:hover {
  background: #f3f6fa;
  color: var(--color-brand-navy-dark);
  border-color: rgba(30, 26, 51, 0.18);
}

.site-menu-modal__brand {
  flex: 1;
  min-width: 0;
}

.site-menu-modal__brand img {
  display: block;
  width: 168px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-menu-modal__label {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.site-menu-modal__nav {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.site-menu-modal__nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu-modal__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--color-brand-navy-dark);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-menu-modal__nav a::after {
  content: '→';
  font-size: 16px;
  color: #cbd5e1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-menu-modal__nav a:hover,
.site-menu-modal__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-brand-red);
}

.site-menu-modal__nav a:hover::after,
.site-menu-modal__nav a:focus-visible::after {
  color: var(--color-brand-red);
  transform: translateX(3px);
}

.site-menu-modal__contacts {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.site-menu-modal__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(30, 26, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-brand-navy-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-menu-modal__contact:hover {
  border-color: rgba(230, 31, 34, 0.28);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.site-menu-modal__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1e1a33, #2d2850);
  color: #fff;
  flex-shrink: 0;
}

.site-menu-modal__contact-icon svg {
  width: 18px;
  height: 18px;
}

.site-menu-modal__contact-text {
  min-width: 0;
  line-height: 1.35;
  word-break: break-word;
}

.site-menu-modal__socials {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.site-menu-modal__socials-label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.site-menu-modal__socials-row {
  display: flex;
  gap: 10px;
}

.site-menu-modal__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(30, 26, 51, 0.08);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-menu-modal__social:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 31, 34, 0.25);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.site-menu-modal__social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.site-menu-modal__cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-brand-red-dark) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(230, 31, 34, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-menu-modal__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(230, 31, 34, 0.34);
}

@media (max-width: 767px) {
  .site-menu-modal__panel {
    width: 100%;
    padding: 24px var(--mobile-gutter, 20px) 32px;
  }

  .site-menu-modal__nav a {
    font-size: 16px;
    padding: 13px 14px;
  }
}

/* ── Request modal ── */
.request-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.request-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.request-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.request-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: calc(var(--br) + 4px);
  padding: 32px 28px 28px;
  box-shadow: 0 24px 64px rgba(30, 26, 51, 0.18);
}

.request-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f3f6fa;
  color: #64748b;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.request-modal__close:hover {
  background: #e8edf3;
  color: #1e1a33;
}

.request-modal__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand-navy-dark);
  line-height: 1.25;
  padding-right: 36px;
}

.request-modal__subtitle {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(41, 45, 52, 0.72);
}

.request-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.request-modal__form input,
.request-modal__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e4e6ed;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-brand-navy-dark);
  background: #fafbfd;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-modal__form input:focus,
.request-modal__form textarea:focus {
  border-color: var(--color-brand-red);
  box-shadow: 0 0 0 3px rgba(230, 31, 34, 0.12);
}

.request-modal__form textarea {
  resize: vertical;
  min-height: 88px;
}

.request-modal__submit {
  margin-top: 4px;
  height: 52px;
  border: none;
  border-radius: 20px;
  background: var(--color-brand-red);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.request-modal__submit:hover {
  background: var(--color-brand-red-dark);
}

.request-modal__success {
  margin: 0;
  padding: 16px;
  border-radius: 12px;
  background: #f0fdf4;
  color: #166534;
  font-size: 14px;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .request-modal__dialog {
    padding: 28px 20px 22px;
  }

  .request-modal__title {
    font-size: 20px;
  }
}

/* ── Mobile: единые отступы и заголовки ── */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  body > .wrapper {
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
  }

  main,
  .container {
    max-width: 100%;
    min-width: 0;
  }

  .container {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .hero__slide {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  section {
    padding-top: var(--mobile-section-y);
    padding-bottom: var(--mobile-section-y);
  }

  section.hero,
  section.simple_page,
  .about-bottom {
    padding-top: 0;
  }

  section.car-search {
    padding-top: 16px;
  }

  :root {
    --header-offset: 112px;
  }

  section.bredcrumb {
    padding: 36px 0 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  section.bredcrumb .speedbar,
  section.bredcrumb .over,
  section.bredcrumb a {
    font-size: inherit;
    line-height: inherit;
  }

  main > .bredcrumb + section {
    padding-top: 12px;
  }

  main > .bredcrumb + section.bloginner {
    padding-top: 8px;
  }

  section.bloginner {
    padding-top: 8px;
    padding-bottom: 32px;
  }

  .article-full {
    padding-top: 0;
  }

  .car-search {
    padding-top: 16px;
  }

  .cars {
    padding-top: 16px;
    padding-bottom: var(--mobile-section-y);
  }

  .why-us {
    margin-top: var(--mobile-section-y);
    margin-bottom: 24px;
    padding: 0;
  }

  .about-premium {
    padding-top: var(--mobile-section-y);
    padding-bottom: var(--mobile-section-y);
  }

  .about-premium .container {
    gap: 28px;
  }

  .about-premium__row,
  .about-premium__row > * {
    min-width: 0;
    max-width: 100%;
  }

  .about-premium__content {
    padding: 20px var(--mobile-gutter);
    box-sizing: border-box;
    overflow-wrap: break-word;
  }

  .about-premium__title,
  .about-premium__lead,
  .about-premium__label,
  .about-premium__list li {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .about-premium__label {
    letter-spacing: 0.08em;
  }

  .about-premium__stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .about-premium__stat {
    padding: 16px;
  }

  .about-premium__stat strong {
    font-size: 22px;
  }

  .about-premium__stat span {
    font-size: 13px;
  }

  .about-premium__btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
  }

  .car-inner {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .locations,
  .services,
  .locations--contacts-page {
    padding-top: var(--mobile-section-y);
    padding-bottom: var(--mobile-section-y);
  }

  .blog_section {
    padding-top: var(--mobile-section-y);
    padding-bottom: var(--mobile-section-y);
  }

  .car-filter-section {
    padding-top: 8px;
    padding-bottom: 20px;
  }

  .footer .container.first {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .benefits-card {
    padding: 24px var(--mobile-gutter) 28px;
    border-radius: 24px;
  }

  ._bestStandardsDealer_50ytu_136 .content {
    padding: 28px var(--mobile-gutter) 0;
  }

  ._faq_section .content {
    padding: 28px var(--mobile-gutter) 12px;
  }

  .about-box {
    padding: 28px var(--mobile-gutter);
  }

  .adv_top_wrapper {
    padding: var(--mobile-gutter);
  }

  .adv_bottom_wrapper {
    padding: var(--mobile-gutter);
    padding-top: 40px;
  }

  .hero-contact {
    padding: 24px var(--mobile-gutter);
    margin-left: 0;
    margin-right: 0;
  }

  .car-search__pill {
    padding: 12px var(--mobile-gutter);
  }

  .car-search__pill .car-search__btn {
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--br);
    justify-content: center;
  }

  .brends {
    padding: 0;
  }

  .car-content {
    padding: 16px var(--mobile-gutter) 20px;
  }

  .services-content {
    padding: 16px var(--mobile-gutter) 20px;
  }

  .location-info {
    padding: 18px var(--mobile-gutter) 20px;
  }

  .blog_card__body {
    padding: 16px var(--mobile-gutter) 20px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head--catalog {
    margin-bottom: 20px;
  }

  .locations-grid {
    margin-top: 24px;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-head h2,
  .section-head--catalog h2,
  ._bestStandardsDealerTitle_50ytu_144,
  ._faq_title,
  .about-head h2,
  .about-title,
  .benefits-card__title,
  .about-premium__title,
  .services-cta-card h3,
  .about-main h3 {
    font-size: var(--mobile-h2);
    line-height: 1.25;
  }

  .car-info-box h1,
  .car-inner h2 {
    font-size: var(--mobile-h2);
    line-height: 1.25;
  }

  .car-content h3,
  .cars-grid .car-content h3,
  .service-card h3,
  .blog_card__title,
  .location-info h4,
  .benefits-item__text h3,
  .blog_item h3,
  .about-card h4 {
    font-size: var(--mobile-h3);
    line-height: 1.3;
  }

  .blog_card__title {
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  ._faq_question {
    gap: 12px;
    padding: 16px 0;
  }

  ._faq_question span:first-child {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
  }

  ._faq_icon {
    width: 32px;
    height: 32px;
  }

  ._faq_icon svg {
    width: 16px;
    height: 16px;
  }

  ._faq_answer p {
    font-size: 14px;
    padding-bottom: 16px;
  }

  .top_buttons button {
    font-size: var(--mobile-h2);
    padding: 12px var(--mobile-gutter);
  }

  .inputs {
    padding-left: 0;
    padding-right: 0;
  }
}

:root {
    --f-spinner-width: 36px;
    --f-spinner-height: 36px;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75
}

:root {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65
}

.f-button:focus:not(:focus-visible) {
    outline: none
}

.f-button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.fancybox__container::backdrop {
    background-color: rgba(0,0,0,0)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity)
}

.fancybox__toolbar:focus-visible {
    z-index: 1
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex
}

/** * Swiper 11.0.4 * Most modern mobile touch slider and framework with hardware accelerated transitions * https://swiperjs.com * * Copyright 2014-2023 Vladimir Kharlampidi * * Released under the MIT License * * Released on:November 9, 2023 */
@font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

:root {
    --swiper-navigation-size: 44px
}

* {
    outline: 0;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent
}

*::-webkit-scrollbar {
    width: 6px
}

*::-webkit-scrollbar-track {
    background-color: #e6e6e6
}

*::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 0.5rem;
    border: 1px solid #9b979a
}

html {
    height: 100%;
    touch-action: manipulation;
    -ms-overflow-style: scrollbar;
    box-sizing: border-box
}

*,::after,::before {
    box-sizing: inherit
}

img {
    border: 0;
    vertical-align: bottom;
    max-width: 100%;
    height: auto
}

a, a:hover {
    text-decoration: none
}

@media screen and (max-width: 1320px) {
    body {
        font-size:16px
    }


}

@media screen and (max-width: 768px) {


    body:has(.over_header) .main {
        padding-top: 104px
    }
}

/* ══════════════════════════════════════
   CREDIT PAGE (Автокредит)
══════════════════════════════════════ */
.credit-page {
  padding-bottom: 20px;
}

.credit-page > .container:first-child {
  padding-top: 8px;
}

.credit-hero {
  margin-bottom: 8px;
}

.promo-banner {
  position: relative;
  border-radius: var(--br);
  overflow: hidden;
  background: #0d1520;
  display: flex;
  align-items: center;
  min-height: 280px;
}

.promo-banner__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.promo-banner__img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(13, 21, 32, 0.96) 0%,
      rgba(13, 21, 32, 0.82) 42%,
      rgba(13, 21, 32, 0.35) 72%,
      rgba(13, 21, 32, 0) 100%
    );
}

.promo-banner__content {
  position: relative;
  z-index: 1;
  padding: 48px 56px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promo-banner__content h1,
.promo-banner__content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.promo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  width: fit-content;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--br);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.promo-banner__btn:hover {
  background: var(--color-brand-red);
  border-color: var(--color-brand-red);
  color: #fff;
}

.credit-btn,
.credit-zero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  width: fit-content;
  border: none;
  border-radius: var(--br);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-brand-red);
  cursor: pointer;
  transition: background 0.2s ease;
}

.credit-btn:hover {
  background: var(--color-brand-red-dark);
  color: #fff;
}

.credit-advantages {
  padding: 20px 0 36px;
}

.credit-advantages__head {
  max-width: 900px;
  margin-bottom: 32px;
}

.credit-advantages__head h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-brand-navy);
  margin: 0 0 12px;
}

.credit-accent {
  color: var(--color-brand-red);
}

.credit-advantages__head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #4a5568;
}

.credit-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.credit-advantage-card {
  position: relative;
  min-height: 300px;
  border-radius: 32px;
  overflow: hidden;
  background: #f3f3f3;
}

.credit-advantage-card__text {
  position: relative;
  z-index: 2;
  padding: 24px 24px 16px;
}

.credit-advantage-card__text h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-brand-navy);
}

.credit-advantage-card__text p {
  margin: 0;
  max-width: 260px;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7280;
}

.credit-advantage-card:nth-child(n + 3) {
  background: #0d0d0d;
}

.credit-advantage-card:nth-child(n + 3) .credit-advantage-card__text h3 {
  color: #fff;
}

.credit-advantage-card:nth-child(n + 3) .credit-advantage-card__text p {
  color: rgba(255, 255, 255, 0.78);
}

.credit-advantage-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:  center;
  pointer-events: none;
  border-radius: 0;
}

.credit-advantage-card:nth-child(n + 3) img {
  object-fit: cover;
  object-position: center;
}

.credit-banks,
.credit-steps {
  padding: 36px 0;
}

.credit-section-title,
.credit-docs-title {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-brand-navy);
}

.credit-docs-title {
  margin-top: 40px;
  font-size: 22px;
}

.credit-banks__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.credit-banks__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 16px 20px;
  border-radius: var(--br);
  background: #fff;
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.08);
}

.credit-banks__item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
}

.credit-btn {
  margin-top: 28px;
}

.credit-zero {
  padding: 12px 0 36px;
}

.credit-zero__banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 220px;
  padding: 40px 48px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, #0d1520 0%, #1a2433 55%, #2a1218 100%);
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.1);
}

.credit-zero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.credit-zero__content h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.credit-zero__content p {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
}

.credit-zero__btn {
  margin-top: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.credit-zero__btn:hover {
  background: var(--color-brand-red);
  border-color: var(--color-brand-red);
}

.credit-zero__badge {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(230, 31, 34, 0.85);
  text-shadow: 0 8px 30px rgba(230, 31, 34, 0.18);
  user-select: none;
}

.credit-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.credit-step-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.08);
}

.credit-step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credit-step-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 21, 32, 0.72) 0%,
    rgba(13, 21, 32, 0.2) 55%,
    rgba(13, 21, 32, 0.05) 100%
  );
}

.credit-step-card--light .credit-step-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.2) 55%,
    rgba(255, 255, 255, 0) 100%
  );
}

.credit-step-card p {
  position: absolute;
  top: 20px;
  left: 18px;
  right: 18px;
  z-index: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

.credit-step-card--light p {
  color: var(--color-brand-navy);
}

.credit-docs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.credit-docs__item {
  overflow: hidden;
  border-radius: var(--br);
  background: #fff;
  box-shadow: 0 2px 16px rgba(38, 33, 65, 0.08);
}

.credit-docs__item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1199px) {
  .credit-banks__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .credit-advantages__grid,
  .credit-steps__grid,
  .credit-docs__grid {
    grid-template-columns: 1fr;
  }

  .promo-banner__content h1,
  .promo-banner__content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .credit-advantages,
  .credit-banks,
  .credit-steps {
    padding: 32px 0;
  }

  .credit-advantages__head h2,
  .credit-section-title {
    font-size: 24px;
  }

  .credit-advantages__grid,
  .credit-steps__grid,
  .credit-docs__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 14px;
    overflow: visible;
  }

  .credit-advantage-card,
  .credit-step-card,
  .credit-docs__item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .credit-step-card {
    aspect-ratio: 4 / 3;
  }

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

  .promo-banner {
    min-height: 260px;
  }

  .promo-banner__content {
    padding: 36px 28px;
  }

  .credit-zero__banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    border-radius: var(--br);
  }

  .credit-zero__badge {
    align-self: flex-end;
    font-size: 72px;
  }
  .credit-advantage-card , .credit-advantage-card__text p {
      min-height:260px; height:260px;
  }
}

@media (max-width: 575px) {
  .promo-banner__content h1,
  .promo-banner__content h2 {
    font-size: 22px;
  }

  .credit-banks__grid {
    grid-template-columns: 1fr;
  }

  .credit-btn,
  .promo-banner__btn {
    width: 100%;
  }
}
