@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;800&display=swap');

:root {
  --color-primary: #C41E3A;
  --color-primary-hover: #A01830;
  --color-primary-soft: #FCE8EC;
  --color-primary-muted: #C46B7A;
  --color-primary-bright: #E02445;
  --color-text: #151518;
  --color-muted: #797A7D;
  --color-bg: #FAFAFA;
  --color-whatsapp: #28CE53;
  --color-telegram: #1A89D3;
}

html {
  scroll-behavior: smooth;
}

html[lang="ar"] p, html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6, html[lang="ar"] a, html[lang="ar"] span, html[lang="ar"] label {
  direction: rtl;
}

.container {
  position: relative;
}
.row {
  --bs-gutter-x: 2.7rem;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 2.7rem;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fbfbfb;
  font-size: 1.4rem;
  padding-top: 7.2rem;
}

p {

}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  object-fit: contain;
}

a {
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input, select, textarea {
  box-shadow: none;
  display: block;
  width: 100%;
  border: 0.1rem solid #f2f2f2;
  border-radius: 1rem;
  padding: 0.9rem 1.4rem;
  transition: 0.3s;
  font-size: 1.2rem;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-primary);
}
input::placeholder, textarea::placeholder {
  color: #797a7d;
}

.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.1rem solid rgba(242, 242, 242, 0.9);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 0;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.header.is-hidden {
  transform: translateY(-110%);
}

.header.is-scrolled {
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 7.2rem;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: auto;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo__mark {
  width: 3.6rem;
  height: 3.6rem;
  display: block;
  flex-shrink: 0;
}
.header-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header-logo__text strong {
  color: #151518;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.header-logo__text small {
  color: #797a7d;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 0.15rem;
}
.header-nav {
  flex: 1;
  min-width: 0;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0;
  border: 0;
  margin: 0;
}
.footer-logo {
  width: 3.6rem;
  height: 3.6rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
}
.footer-brand span {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.header-menu li {
  margin: 0;
}
.header-menu li a {
  display: block;
  font-size: 1.35rem;
  font-weight: 500;
  color: #5f6064;
  padding: 0.8rem 1.1rem;
  border-radius: 1rem;
  white-space: nowrap;
  transition: 0.2s ease;
}
.header-menu li a:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 1rem;
  transition: 0.2s ease;
}
.header-phone__label {
  font-size: 1rem;
  color: #797a7d;
  font-weight: 500;
}
.header-phone__num {
  font-size: 1.6rem;
  color: #151518;
  font-weight: 700;
  direction: ltr !important;
  white-space: nowrap;
}
.header-phone:hover {
  background: #f7f7f8;
}
.header-phone:hover .header-phone__num {
  color: var(--color-primary);
}
.header-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  color: #28ce53;
  background: rgba(40, 206, 83, 0.1);
  border: 0.1rem solid rgba(40, 206, 83, 0.22);
  transition: 0.2s ease;
  flex-shrink: 0;
}
.header-wa:hover {
  background: #28ce53;
  color: #fff;
  border-color: #28ce53;
}
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  padding: 0 1.6rem;
  border: 0;
  border-radius: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-header-cta:hover {
  background: var(--color-primary-hover);
  color: #fff;
}
.header-mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-call {
  display: none;
}
.header .change-lang-label {
  padding: 0.6rem 0.8rem;
  border-radius: 1rem;
}
.header .change-lang-label:hover {
  background: #f7f7f8;
}
.utf-section {
  background: url("../img/utf-bg.svg") center top no-repeat;
  background-size: cover;
  padding-top: 9.5rem;
}
.utf-img {
  width: 62rem;
}
.utf-section h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: #fff;
  width: 110%;
  margin: 0;
}
.utf-section__form {
  background: #fff;
  padding: 1.4rem 2.4rem 2.4rem;
  border-radius: 1rem;
  margin: 6.6rem 0 0;
  box-shadow: 0 2rem 5rem 0 rgba(0, 0, 0, 0.10);
  width: 39rem;
}
fieldset {
  margin-top: 1rem;
}
fieldset label {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.btn-car {
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1rem;
  padding: 1.4rem;
  border: 0.1rem solid var(--color-primary);
  transition: 0.3s;
  cursor: pointer;
}
button.btn-car {
  font-family: inherit;
}
.btn-car:hover {
  background: var(--color-primary-hover);
  color: #fff;
}
.btn-car img {
  width: 2rem;
}
.btn-car span {
  margin-left: 0.8rem;
}
.utf-section__form button {
  margin-top: 3rem;
}
.title-section {
  color: #151518;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: normal;
  margin: 0 0 4rem;
}
.best-deals {
  margin-top: -10.5rem;
  padding: 14rem 0 2.4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(196, 30, 58, 0.06), transparent 55%),
    #f7f7f8;
}

.best-deals__head .title-section {
  margin-bottom: 1.2rem;
}

.best-deals__head .section-lead {
  margin-bottom: 2.4rem;
}

.best-deals__slider {
  position: relative;
}

.best-deals .car-card {
  margin-top: 0;
  height: 100%;
}

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

.best-deals__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0;
}

.best-deals__nav {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  border: 0.1rem solid #e6e6e8;
  background: #fff;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.best-deals__nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.best-deals__pagination.swiper-pagination {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.swiper-pagination-bullet{
  transition: 0.3s;
}
.best-deals__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 !important;
  background: #d0d0d4;
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.best-deals__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 2rem;
  border-radius: 1rem;
}

.best-deals__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.2rem;
  padding: 1.6rem;
  border-radius: 1rem;
}
.bestDealsSwiper{
  padding-top: 1rem;
  padding-bottom: 4rem;
  overflow: visible;
}
.best-deals__cta .btn-car {
  margin: 0;
  min-width: 22rem;
  flex: 1 1 22rem;
  max-width: 32rem;
  border-radius: 1rem;
  box-shadow: none;
}

.best-deals__cta .btn-car-empty {
  background: #fff;
}

.car-card {
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  margin-top: 3rem;
  border: 0.1rem solid #ececee;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(196, 30, 58, 0.22);
  box-shadow: 0 1.4rem 3.2rem rgba(21, 21, 24, 0.08);
}

.car-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.car-card__img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.car-card:hover .car-card__img {
  transform: scale(1.04);
}

.car-card__year {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 1;
  padding: 0.4rem 0.85rem;
  border-radius: 1rem;
  background: rgba(21, 21, 24, 0.78);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.car-card__sale {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  padding: 0.4rem 0.85rem;
  border-radius: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.car-card-container {
  padding: 1.8rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-card__link {
  color: #151518;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.car-card__link:hover {
  color: var(--color-primary-hover);
}

.car-card__prices {
  margin-top: 0.9rem;
}

.car-card__price-old {
  display: block;
  color: #9a9ba0;
  font-size: 1.35rem;
  font-weight: 500;
  text-decoration: line-through;
  direction: ltr !important;
  margin-bottom: 0.2rem;
}

.car-card__price {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  direction: ltr !important;
}

.car-card__price-note {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.car-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
  margin: 1.4rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 0.1rem solid #f0f0f2;
}

.car-card__spec {
  min-width: 0;
}

.car-card__spec dt {
  color: #9a9ba0;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.car-card__spec dd {
  color: #151518;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-card__options {
  display: none;
}

.btn-car-empty {
  background: #fff;
  color: var(--color-primary);
}

.btn-car-empty:hover {
  color: #fff;
  background: var(--color-primary-hover)!important;
}
/* === About + Reviews redesign === */
.about-us {
  padding: 2rem 0 0;
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(196, 30, 58, 0.06), transparent 55%),
    #f7f7f8;
}

.about-us-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  color: #fff;
  padding: 4.4rem 4rem;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(0, 0, 0, 0.22), transparent 50%),
    linear-gradient(135deg, var(--color-primary-bright) 0%, var(--color-primary) 42%, var(--color-primary-hover) 100%);
  box-shadow:
    0 2.4rem 5rem rgba(196, 30, 58, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.about-us__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.about-us__eyebrow {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.16);
  border: 0.1rem solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-us .title-section {
  color: #fff;
  margin-bottom: 1.2rem;
}

.about-us__lead {
  margin: 0 0 2.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 48rem;
}

.about-us__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.about-us__stat {
  background: rgba(255, 255, 255, 0.12);
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.about-us__stat strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.about-us__stat span {
  display: block;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
}

.about-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-question {
  border-radius: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.96);
  margin-top: 0;
  color: #151518;
  overflow: hidden;
  box-shadow: 0 0.8rem 2rem rgba(21, 21, 24, 0.08);
  transition: box-shadow 0.25s ease;
}

.about-question.is-open,
.about-question:hover {
  box-shadow: 0 1.2rem 2.8rem rgba(21, 21, 24, 0.12);
}

.about-question p {
  font-size: 1.4rem;
}

.about-question-head {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
}

.about-question__num {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-primary-soft), #fff);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 800;
}

.about-question .about-question-head p {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0;
  color: #151518;
}

.about-question-head__title {
  width: auto;
  flex: 1;
}

.about-question-head__arrow {
  position: relative;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--color-primary);
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-question-head__arrow::before,
.about-question-head__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.about-question-head__arrow::before {
  width: 1rem;
  height: 0.2rem;
}

.about-question-head__arrow::after {
  width: 0.2rem;
  height: 1rem;
}

.about-question.is-open .about-question-head__arrow {
  transform: rotate(45deg);
  background: var(--color-primary-hover);
}

.about-question-body {
  display: none;
  padding: 0 1.6rem 1.6rem 6.4rem;
}

.about-question-body p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.about-us__cta {
  margin-top: 2.4rem;
  width: auto;
  min-width: 26rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  box-shadow: 0 1rem 2.4rem rgba(21, 21, 24, 0.18);
}

.about-us__cta:hover {
  background: #fff !important;
  color: var(--color-primary-hover);
}
/* FAQ page accordion fallback */
.faq .about-question,
.faq-page .about-question {
  margin-top: 1rem;
  border: 0.1rem solid #f2f2f2;
}
.about-question-head img {
  width: 2.4rem;
}
.about-question-head p.about-question-head__arrow {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--color-primary);
  text-align: center;
  font-weight: 300;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3rem;
  flex-shrink: 0;
}
.about-question-head p.about-question-head__arrow::before,
.about-question-head p.about-question-head__arrow::after {
  content: none;
}


.about-us__visual {
  position: relative;
  min-height: 44rem;
}

.about-us__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-us__orb--1 {
  width: 22rem;
  height: 22rem;
  top: 8%;
  right: 4%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
  animation: aboutFloat 7s ease-in-out infinite;
}

.about-us__orb--2 {
  width: 14rem;
  height: 14rem;
  bottom: 12%;
  left: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), transparent 70%);
  animation: aboutFloat 9s ease-in-out infinite reverse;
}

.about-us__photo {
  position: absolute;
  object-fit: cover;
  border-radius: 1rem;
  border: 0.3rem solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 1.6rem 3.2rem rgba(21, 21, 24, 0.28);
}

.about-us__photo--main {
  width: 78%;
  height: 32rem;
  top: 2rem;
  right: 0;
  z-index: 2;
}

.about-us__photo--side {
  width: 42%;
  height: 16rem;
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-6deg);
}

.about-us__photo--bottom {
  width: 48%;
  height: 15rem;
  bottom: 2rem;
  left: 8%;
  z-index: 3;
  transform: rotate(4deg);
}

.about-us.is-visible .about-us__photo--main {
  animation: aboutRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-us.is-visible .about-us__photo--side {
  animation: aboutRise 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-us.is-visible .about-us__photo--bottom {
  animation: aboutRise 0.8s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-us__float {
  position: absolute;
  right: 1rem;
  bottom: 5rem;
  z-index: 4;
  background: #fff;
  color: var(--color-text);
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 1.2rem 2.8rem rgba(21, 21, 24, 0.2);
  animation: aboutFloat 5.5s ease-in-out infinite;
}

.about-us__float strong {
  display: block;
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-us__float span {
  font-size: 1.15rem;
  color: var(--color-muted);
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.8rem); }
}

@keyframes aboutRise {
  from {
    opacity: 0;
    transform: translateY(2.4rem) scale(0.96);
  }
  to {
    opacity: 1;
  }
}

.reviews, .reviewsFoto {
  margin-top: 0;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.reviews {
  background:
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(196, 30, 58, 0.06), transparent 55%),
    #f7f7f8;
}

.reviews__eyebrow,
.reviewsFoto__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews__head .title-section,
.reviewsFoto__head .title-section {
  margin-bottom: 1.2rem;
}

.reviews__head .section-lead,
.reviewsFoto__head .section-lead {
  margin-bottom: 3rem;
}

.review-item {
  position: relative;
  isolation: isolate;
  border-radius: 1rem;
  border: 0.1rem solid #ececee;
  background: #fff;
  padding: 2.4rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  height: 100%;
  box-shadow: 0 1rem 2.4rem rgba(21, 21, 24, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.review-item:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(196, 30, 58, 0.22);
  box-shadow: 0 1.6rem 3.2rem rgba(21, 21, 24, 0.1);
}

.review-item__quote {
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(196, 30, 58, 0.1);
  pointer-events: none;
  z-index: -1;
}

.review-item__stars {
  display: flex;
  gap: 0.25rem;
  color: #f5a623;
  margin-bottom: 1.4rem;
}

.review-item__avatar {
  margin-right: 0;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.review-item h5 {
  color: #151518;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}

.review-item__car {
  color: var(--color-muted);
  font-size: 1.2rem;
}

.review-item__desc {
  color: #4a4b50;
  font-size: 1.4rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.review-item__photo {
  display: block;
  position: relative;
  width: 10.4rem;
  height: 7.6rem;
  margin-top: 1.4rem;
  border-radius: 0.9rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f3f5;
  box-shadow: 0 0.4rem 1.2rem rgba(21, 21, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-item__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(21, 21, 24, 0.28));
  pointer-events: none;
}

.review-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.review-item__photo:hover {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.6rem 1.6rem rgba(21, 21, 24, 0.12);
}

.review-item__photo:hover img {
  transform: scale(1.04);
}

.review-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 0.1rem solid #f0f0f2;
}

.review-item__person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-item__data {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.reviews__controls,
.reviewsFoto__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.reviews__nav,
.reviewsFoto__nav {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  border: 0.1rem solid #e6e6e8;
  background: #fff;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.reviews__nav:hover,
.reviewsFoto__nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.reviews__pagination.swiper-pagination,
.reviewsFoto__pagination.swiper-pagination {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.reviews__pagination .swiper-pagination-bullet,
.reviewsFoto__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 !important;
  background: #d0d0d4;
  opacity: 1;
}

.reviews__pagination .swiper-pagination-bullet-active,
.reviewsFoto__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 2rem;
  border-radius: 1rem;
}

.reviewsSwiper {
  overflow: visible;
}

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

.reviewsFoto {
  background: #fff;
}

.reviewsFoto__card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #151518;
  border: 0.1rem solid #ececee;
  box-shadow: 0 1rem 2.4rem rgba(21, 21, 24, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  color: inherit;
}

.reviewsFoto__card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 3.2rem rgba(21, 21, 24, 0.12);
}

.reviewsFoto__card img,
.reviewsFotoSwiper img,
.reviewsFoto__card video,
.reviewsFotoSwiper video {
  width: 100%;
  height: 46rem;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  background: #151518;
  pointer-events: none;
}

.reviewsFoto__card:hover video {
  transform: scale(1.04);
}

.reviewsFoto__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 21, 24, 0.28);
  transition: background 0.3s ease;
  pointer-events: none;
}

.reviewsFoto__play svg {
  width: 5.6rem;
  height: 5.6rem;
  padding: 1.4rem 1.4rem 1.4rem 1.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #151518;
  box-shadow: 0 0.8rem 2rem rgba(21, 21, 24, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.reviewsFoto__card:hover .reviewsFoto__play {
  background: rgba(21, 21, 24, 0.18);
}

.reviewsFoto__card:hover .reviewsFoto__play svg {
  transform: scale(1.06);
  background: #fff;
}

.swiper-button-next:after, .swiper-button-prev:after {
  content: none;
}
.swiper-button-next, .swiper-button-prev {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  border: 0.1rem solid var(--color-primary);
  transition: 0.3s;
}
.swiper-button-next svg, .swiper-button-prev svg {
  width: 0.9rem;
  height: 1.6rem;
  transition: 0.3s;
}
.swiper-button-next svg {
  margin-left: 0.2rem;
}
.swiper-button-prev svg {
  margin-right: 0.2rem;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--color-primary);
}
.swiper-button-next:hover svg path, .swiper-button-prev:hover svg path {
  fill: #fff;
}
.swiper-pagination {
  position: static;
  width: 5rem !important;
  margin: 4rem auto 0;
  border-radius: 1rem;
  background: #e5e5e5;
  height: 0.2rem !important;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 1rem;
  background: var(--color-primary);
}

.reviews-on-sites {
  margin-top: 4rem;
}
.reviews-on-sites_item {
  border-radius: 1rem;
  background: var(--color-primary);
  padding: 2rem 2.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews-on-sites_img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}
.reviews-on-sites_text {
  width: 12rem;
}
.reviews-on-sites_text h6 {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}
.reviews-on-sites_text p {
  margin: 0.9rem 0 0;
  color: var(--color-primary-muted);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
}
.reviews-on-sites_link {
  width: 13rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 150%;
  background: none;
  color: #fff;
  border-color: #fff;
  padding: 0.9rem 1.4rem;
}
.reviews-on-sites_link:hover {
  background: #fff;
  color: var(--color-primary);
}

.what-says-about {
  margin-top: 8rem;
}
.what-says-about__item {
  text-align: center;
}
.what-says-about__item h6 {
  color: #151518;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 1rem 0 0;
}
.whatSaysAboutSwiper__link {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 150%;
  margin-top: 1.4rem;
  display: inline-block;
}
.whatSaysAboutSwiper__img {
  width: 100%;
}
.youtube-section {
  margin-top: 8rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: url("../img/youtube-section-bg.svg") center left no-repeat;
  background-size: 63rem;
}
.youtube-section iframe {
  width: 100%;
  height: 28rem;
  border-radius: 1rem;
}
.youtube-section__link {
  border-radius: 1rem;
  background: #d72626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 150%;
  margin-top: 4rem;
}
.youtube-section__link span {
  margin-left: 0.8rem;
}
.youtube-section__link:hover {
  opacity: 0.8;
}
.youtube-section h5 {
  color: #151518;
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}
.youtube-section p {
  margin: 3rem 0 0;
  color: #797a7d;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 150%;
}

.contact-social-networks {
  padding: 4rem 0 6rem;
  background: radial-gradient(ellipse 50% 50% at 0% 100%, rgba(196, 30, 58, 0.06), transparent 55%), #f7f7f8;
}

.contact-social-networks-bg {
  position: relative;
  overflow: hidden;
  background: url("../img/contact-social-networks-bg.jpg") center top no-repeat;
  background-size: cover;
  padding: 7rem 4.5rem;
  color: #fff;
  border-radius: 2rem;
  min-height: 42rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2rem 4.8rem rgba(21, 21, 24, 0.16);
}

.contact-social-networks__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(21, 21, 24, 0.78) 0%, rgba(21, 21, 24, 0.45) 48%, rgba(196, 30, 58, 0.28) 100%),
    linear-gradient(0deg, rgba(21, 21, 24, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.contact-social-networks__content {
  position: relative;
  z-index: 1;
  max-width: 70rem;
}

.contact-social-networks__eyebrow {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 0.1rem solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-social-networks h4 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 800;
  margin: 0;
  width: auto;
  max-width: 46rem;
  line-height: 1.15;
}

.contact-social-networks__content > p {
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.55;
  margin-top: 1.4rem;
  width: auto;
  max-width: 48rem;
}

.contact-social-networks__btns {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: auto;
  max-width: 70rem;
}

.contact-social-networks__btns .btn-car {
  width: auto;
  min-width: 16rem;
  margin: 0;
  border-radius: 1rem;
  box-shadow: 0 0.8rem 2rem rgba(21, 21, 24, 0.2);
  transition: 0.3s;
}

.contact-social-networks__primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-social-networks__btns .btn-car span {
  margin-left: 0.6rem;
}

.contact-social-networks__btns .btn-car svg + span,
.final-cta__actions .btn-car svg + span {
  margin-left: 0.6rem;
}
.btn-car_telegram {
  background: #1a89d3;
  border-color: #1a89d3;
}
.btn-car_telegram:hover {
  background: #1a89d3;
  border-color: #1a89d3;
  opacity: 0.8;
}
.btn-car_whatsApp {
  background: #28ce53;
  border-color: #28ce53;
}
.btn-car_whatsApp:hover {
  background: #28ce53;
  border-color: #28ce53;
  opacity: 0.8;
}

.footer {
  padding: 3rem 0 2rem;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 55% at 0% 100%, rgba(0, 0, 0, 0.22), transparent 50%),
    linear-gradient(135deg, var(--color-primary-bright) 0%, var(--color-primary) 45%, var(--color-primary-hover) 100%);
}

.footer__panel {
  position: relative;
  overflow: visible;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.7fr;
  gap: 2.4rem;
  align-items: center;
}

.footer__tagline {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.35rem;
  line-height: 1.45;
  max-width: 28rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  justify-content: space-between;
}

.footer-menu li {
  margin-right: 0;
}

.footer-menu li a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-menu li a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.15rem);
}

.footer__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.social-list li {
  margin-left: 0;
}

.social-list li:first-child {
  margin-left: 0;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social img {
  width: 1.6rem;
  height: 1.6rem;
  filter: brightness(0) invert(1);
}

.footer-social:hover {
  opacity: 1;
  transform: translateY(-0.15rem);
  background: rgba(255, 255, 255, 0.22);
}

.footer-social--whatsapp:hover {
  background: rgba(40, 206, 83, 0.35);
}

.footer-social--telegram:hover {
  background: rgba(26, 137, 211, 0.4);
}

.footer-social--max:hover {
  background: rgba(107, 92, 255, 0.4);
}

.footer-social--youtube:hover {
  background: rgba(215, 38, 38, 0.4);
}

.footer-phone {
  margin-left: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  text-align: right;
  direction: ltr !important;
  letter-spacing: -0.02em;
}

.footer-phone:hover {
  opacity: 0.9;
}

.footer__cta {
  width: auto;
  min-width: 20rem;
  margin: 0;
  border-radius: 1rem;
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  box-shadow: 0 0.8rem 2rem rgba(21, 21, 24, 0.18);
}

.footer__cta:hover {
  background: #fff !important;
  color: var(--color-primary-hover);
}

.footer__bottom {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 1.2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer__bottom a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.footer__bottom a:hover {
  opacity: 0.85;
}

.footer hr,
.footer-down {
  display: none;
}
.change-lang-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.change-lang-label p {
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0.6rem 0 0;
  text-transform: uppercase;
}
.change-lang__list {
  background: #fff;
  border-radius: 1rem;
  position: absolute;
  width: 4rem;
  padding: 1rem 1rem 0.5rem;
  box-shadow: 0 2rem 5rem 0 rgba(0, 0, 0, 0.10);
  margin-top: 0.5rem;
  display: none;
}
.open .change-lang__list {
  display: block;
}
.change-lang__list li {
  border-bottom: 0.1rem solid #f2f2f2;
}
.change-lang__list li:last-child {
  border-bottom: 0;
}
.change-lang__list a {
  color: #000;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 400;
  padding: 0.8rem 0;
  display: block;
}
.change-lang__list a:hover {
  color: var(--color-primary);
}
.burger-menu {
  display: none;
}

.burger-menu.is-open {
  display: block;
}

body.burger-open {
  overflow: hidden;
}
.modal-header {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem;
}
.modal-header h3 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: normal;
}
.modal-content {
  border-radius: 1rem;
  overflow: hidden;
  border: 0;
  background: #fff;
}
.modal-dialog {
  max-width: 55rem;
}
.modal-header .btn-close {
  --bs-btn-close-bg: none;
  position: absolute;
  right: 1rem;
  top: 1rem;
  opacity: 1;
  padding: 0;
  transition: 0.3s;
}
.modal-header .btn-close img {
  width: 1.4rem;
}
.modal-header .btn-close:hover {
  opacity: 0.8;
}
.modal-body {
  padding: 2rem 3rem;
}
.modal p {
  color: #151518;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 150%;
}
.modal textarea {
  margin-top: 1rem;
  height: 18rem;
}
.modal button[type='submit'] {
  margin-top: 2rem;
}
.custom-checkbox {
  margin: 0;
}
.custom-checkbox label {
  color: #797a7d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
  padding-left: 3rem;
  position: relative;
}
.custom-checkbox label:before {
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: 0.1rem solid var(--color-primary);
  display: block;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.custom-checkbox input[type="checkbox"]:checked + label:before {
  background: url("../img/carbon_checkmark-filled.svg") center center no-repeat;
  background-size: cover;
}
.custom-checkbox input[type="checkbox"] {
  display: none;
}
.modal .custom-checkbox {
  margin-top: 3rem;
}

/* Lead modal redesign */
.lead-modal .modal-dialog {
  max-width: 52rem;
}

.lead-modal .modal-content {
  position: relative;
  border-radius: 1.6rem;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(196, 30, 58, 0.08), transparent 55%),
    #fff;
  box-shadow:
    0 2.4rem 6rem rgba(21, 21, 24, 0.18),
    0 0.4rem 1.2rem rgba(21, 21, 24, 0.06);
}

.lead-modal .modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--color-primary-bright), var(--color-primary), var(--color-primary-hover));
}

.lead-modal__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border: 0.1rem solid #ececef;
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  transition: 0.2s ease;
}

.lead-modal__close:hover {
  background: #f7f7f8;
  border-color: #dddde1;
  color: var(--color-primary);
}

.lead-modal__head {
  padding: 3.2rem 3.2rem 0;
}

.lead-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lead-modal__head h3 {
  margin: 0 0 0.8rem;
  padding-right: 4rem;
  color: var(--color-text);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.lead-modal__head p {
  margin: 0;
  max-width: 42rem;
  color: var(--color-muted);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.lead-modal .modal-body {
  padding: 2rem 3.2rem 3rem;
}

.lead-modal .lead-timer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.1rem 1.4rem;
  border: 0.1rem solid rgba(196, 30, 58, 0.12);
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #fff5f7 0%, #fce8ec 100%);
  color: var(--color-text);
}

.lead-modal .lead-timer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 0.4rem 1rem rgba(196, 30, 58, 0.12);
}

.lead-modal .lead-timer__label {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.lead-modal .lead-timer__value {
  min-width: 6.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--color-primary);
  font-size: 1.7rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: center;
  box-shadow: 0 0.3rem 0.8rem rgba(196, 30, 58, 0.1);
}

.lead-modal__form fieldset {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.lead-modal__form fieldset label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
}

.lead-modal__form input[type="text"],
.lead-modal__form input[type="tel"],
.lead-modal__form textarea {
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.3rem;
  border: 0.1rem solid #e8e8ea;
  border-radius: 1rem;
  background: #fafafa;
  color: var(--color-text);
  font-size: 1.45rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-modal__form input:focus,
.lead-modal__form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
}

.lead-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.send-form input.is-invalid,
.send-form textarea.is-invalid {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
}

.send-form .field-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.lead-inline__row .field-error {
  grid-column: 1 / -1;
  margin-top: -0.4rem;
}

.lead-modal__form textarea {
  height: 9rem;
  min-height: 9rem;
  resize: vertical;
}

.lead-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 0.4rem;
}

.lead-modal__policy {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--color-muted);
  cursor: pointer;
}

.lead-modal__policy input {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
  accent-color: var(--color-primary);
}

.lead-modal__policy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.lead-modal__footer .btn-car {
  width: 100%;
  margin: 0;
  min-height: 5rem;
  font-weight: 700;
  box-shadow: 0 0.8rem 2rem rgba(196, 30, 58, 0.22);
}

.lead-modal__footer .btn-car span {
  margin-left: 0;
}

.lead-modal--thanks .modal-dialog {
  max-width: 44rem;
}

.lead-modal__thanks {
  padding: 4rem 3.2rem 3.2rem !important;
  text-align: center;
}

.lead-modal__thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.lead-modal__thanks h3 {
  margin: 0 0 1rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-text);
}

.lead-modal__thanks p {
  margin: 0 auto 2rem;
  max-width: 34rem;
  color: var(--color-muted);
}

.lead-modal__thanks .btn-car {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.lead-modal__thanks .btn-car span {
  margin-left: 0;
}

.modal-backdrop.show {
  opacity: 0.45;
}

.welcome-modal .modal-dialog {
  max-width: 48rem;
}

.welcome-modal__body {
  padding: 3.2rem 3.2rem 2.8rem;
}

.welcome-modal__body .lead-modal__eyebrow {
  margin-bottom: 1rem;
}

.welcome-modal__body h3 {
  margin: 0 0 1rem;
  padding-right: 3.2rem;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.welcome-modal__text {
  margin: 0 0 1.6rem;
  color: var(--color-muted);
  font-size: 1.45rem;
  line-height: 1.5;
}

.welcome-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.welcome-modal__chips li {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.welcome-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.welcome-modal__form fieldset {
  margin: 0;
}

.welcome-modal__form fieldset label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
}

.welcome-modal__form input[type="text"],
.welcome-modal__form input[type="tel"] {
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.3rem;
  border: 0.1rem solid #e8e8ea;
  border-radius: 1rem;
  background: #fafafa;
  color: var(--color-text);
  font-size: 1.45rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.welcome-modal__form input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
}

.welcome-modal__policy {
  margin-bottom: 1.4rem;
}

.welcome-modal__form .btn-car {
  width: 100%;
  margin: 0;
  min-height: 5rem;
  font-weight: 700;
  box-shadow: 0 0.8rem 2rem rgba(196, 30, 58, 0.22);
}

.welcome-modal__form .btn-car span {
  margin-left: 0;
}

.filter-lead-modal .modal-dialog {
  max-width: 50rem;
}

.filter-lead-modal__body {
  padding: 3.2rem 3.2rem 2.4rem;
}

.filter-lead-modal__body .lead-modal__eyebrow {
  margin-bottom: 1rem;
}

.filter-lead-modal__body h3 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.filter-lead-modal__text {
  margin: 0 0 1.6rem;
  color: var(--color-muted);
  font-size: 1.4rem;
  line-height: 1.5;
}

.filter-lead-modal__filters {
  margin-bottom: 2rem;
  padding: 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff5f7 0%, #fce8ec 100%);
  border: 0.1rem solid rgba(196, 30, 58, 0.12);
}

.filter-lead-modal__filters-label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 700;
}

.filter-lead-modal__filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-lead-modal__filters li {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 0.2rem 0.6rem rgba(196, 30, 58, 0.08);
}

.filter-lead-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.filter-lead-modal__form fieldset {
  margin: 0;
}

.filter-lead-modal__form fieldset label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
}

.filter-lead-modal__form input[type="text"],
.filter-lead-modal__form input[type="tel"] {
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.3rem;
  border: 0.1rem solid #e8e8ea;
  border-radius: 1rem;
  background: #fafafa;
  color: var(--color-text);
  font-size: 1.45rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filter-lead-modal__form input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
}

.filter-lead-modal__policy {
  margin-bottom: 1.4rem;
}

.filter-lead-modal__form .btn-car {
  width: 100%;
  margin: 0;
  min-height: 5rem;
  font-weight: 700;
  box-shadow: 0 0.8rem 2rem rgba(196, 30, 58, 0.22);
}

.filter-lead-modal__form .btn-car span {
  margin-left: 0;
}

.filter-lead-modal__back {
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  padding: 0;
  border: 0;
  background: none;
  color: #b0b1b4;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.filter-lead-modal__back:hover {
  color: var(--color-muted);
}
.form-loading-img {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
}
.btn-car.loading,
.btn-car:disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.85;
}
.btn-car.loading .form-loading-img {
  display: block;
}
.btn-car.loading > span {
  display: none;
}
.breadcrumb {
  margin-top: 2rem;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  color: #797a7d;
  font-size: 1rem;
  font-weight: 400;
}
.breadcrumb-list a {
  color: #797a7d;
  font-size: 1rem;
  font-weight: 400;
}
.breadcrumb-list a:hover {
  color: var(--color-primary);
}
.breadcrumb-list p {
  color: #797a7d;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.breadcrumb-list li {
  margin-right: 0.4rem;
}
.contacts {
  margin-top: 4rem;
}
.contacts p {
  color: #797a7d;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 170%;
}
.contacts-item {
  margin-top: 4rem;
}
.contacts-item label {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 150%;
  display: block;
}
.contacts-item a, .contacts-item p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  margin-top: 0.8rem;
  margin-bottom: 0;
  display: inline-block;
}
.contacts-item a:hover {
  opacity: 0.8;
}
.contacts iframe {
  width: 100%;
  height: 42rem;
  margin-top: 4rem;
}

.faq-page,
.contacts-page {
  padding: 0 0 4rem;
}

.faq-page__hero,
.contacts-page__hero {
  max-width: 72rem;
  margin-bottom: 3.2rem;
}

.faq-page__eyebrow,
.contacts-page__eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-page__hero h1,
.contacts-page__hero h1 {
  margin: 0 0 1.2rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.faq-page__lead,
.contacts-page__lead {
  margin: 0;
  max-width: 64rem;
  color: var(--color-muted);
  font-size: 1.7rem;
  line-height: 1.55;
}

.faq-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(28rem, 0.75fr);
  gap: 2.4rem;
  align-items: start;
}

.faq-page__accordion .about-question {
  border: 0.1rem solid #f0f0f1;
  background: #fff;
}

.faq-page__aside {
  position: sticky;
  top: 9rem;
}

.faq-page__card {
  padding: 2.4rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(ellipse 60% 70% at 0% 0%, rgba(255, 255, 255, 0.16), transparent 55%),
    linear-gradient(145deg, var(--color-primary-bright) 0%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  color: #fff;
  box-shadow: 0 1.4rem 3.2rem rgba(196, 30, 58, 0.24);
}

.faq-page__card h3 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  font-weight: 800;
}

.faq-page__card p {
  margin: 0 0 1.4rem;
  font-size: 1.35rem;
  line-height: 1.5;
  opacity: 0.92;
}

.faq-page__card ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.faq-page__card li {
  margin-bottom: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-page__card .btn-car {
  width: 100%;
  margin: 0 0 0.8rem;
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
  font-weight: 700;
}

.faq-page__card .btn-car:hover {
  background: #fff !important;
  color: var(--color-primary-hover);
}

.faq-page__card .btn-car span {
  margin-left: 0;
}

.faq-page__card .btn-car_whatsApp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.faq-page__card .btn-car_whatsApp:hover {
  background: #1ebe57 !important;
  color: #fff;
}

.contacts-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.4rem;
  align-items: start;
  margin-bottom: 2.4rem;
}

.contacts-page__form-card {
  padding: 2.8rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  box-shadow: 0 1rem 2.8rem rgba(21, 21, 24, 0.06);
}

.contacts-page__form-card h2 {
  margin: 0 0 0.6rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-text);
}

.contacts-page__form-card > p {
  margin: 0 0 2rem;
  color: var(--color-muted);
  font-size: 1.4rem;
  line-height: 1.5;
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contacts-page__form fieldset {
  margin: 0 0 1.2rem;
}

.contacts-page__form fieldset label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
}

.contacts-page__form input[type="text"],
.contacts-page__form input[type="tel"],
.contacts-page__form textarea {
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.3rem;
  border: 0.1rem solid #e8e8ea;
  border-radius: 1rem;
  background: #fafafa;
  color: var(--color-text);
  font-size: 1.45rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contacts-page__form input:focus,
.contacts-page__form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
}

.contacts-page__form textarea {
  min-height: 11rem;
  resize: vertical;
}

.contacts-page__policy {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--color-muted);
  cursor: pointer;
}

.contacts-page__policy input {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
  accent-color: var(--color-primary);
}

.contacts-page__policy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contacts-page__form .btn-car {
  width: 100%;
  margin: 0;
  min-height: 5rem;
}

.contacts-page__form .btn-car span {
  margin-left: 0;
}

.contacts-page__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contacts-page__card {
  display: block;
  padding: 1.6rem;
  border-radius: 1rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.contacts-page__card:hover {
  border-color: rgba(196, 30, 58, 0.28);
  box-shadow: 0 0.8rem 2rem rgba(196, 30, 58, 0.08);
}

.contacts-page__card span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
  font-size: 1.2rem;
  font-weight: 600;
}

.contacts-page__card strong {
  color: var(--color-text);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
}

.contacts-page__messengers {
  padding: 1.8rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 0.1rem solid #f0f0f1;
}

.contacts-page__messengers > p {
  margin: 0 0 1.2rem;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 700;
}

.contacts-page__messenger-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contacts-page__messenger-btns .btn-car {
  width: 100%;
  margin: 0;
  min-height: 4.6rem;
}

.contacts-page__messenger-btns .btn-car span {
  margin-left: 0;
}

.contacts-page__map {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 0.1rem solid #f0f0f1;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.06);
}

.contacts-page__map iframe {
  display: block;
  width: 100%;
  height: 42rem;
  border: 0;
  margin: 0;
}
.post-page {
  margin-top: 4rem;
}
.post-page__img {
  border-radius: 1rem;
  margin-bottom: 3rem;
  height: 42rem;
  width: 100%;
}
.post-page h3 {
  color: #151518;
  font-size: 2.4rem;
  font-weight: 800;
}
.post-page p {
  color: #797a7d;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 170%;
  margin-top: 3rem;
}
.similar-articles {
  margin-top: 4rem;
}
.similar-articles hr {
  border-color: #d8d8d8;
  margin-top: 0;
  margin-bottom: 4rem;
}
.similar-articles h3 {
  margin-bottom: 0;
}
.post-card {
  display: flex;
  margin-top: 4rem;
}
.post-card__img {
  width: 18rem;
  height: 16rem;
  object-fit: cover;
  margin-right: 3rem;
  border-radius: 1rem;
}
.post-card h4 {
  color: #151518;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
}
.post-card h4 a {
  color: #151518;
}
.post-card h4 a:hover {
  color: var(--color-primary);
}
.post-card__desc {
  margin-top: 2rem;
  color: #797a7d;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
}
.post-card__date {
  color: #797a7d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  margin-top: 2.8rem;
  margin-bottom: 0;
}
.posts {
  margin-top: 4rem;
}
.posts .title-section {
  margin-bottom: 0;
}
.about-us-page {
  background: url("../img/about-us-bg.svg") center top no-repeat;
  background-size: 100vw;
  padding-top: 7rem;
  margin-top: -5rem;
}
.about-us-page h3.title-section {
  margin-bottom: 12rem;
  color: #fff;
}
.about-us__logo {
  width: 28rem;
  margin-bottom: 4rem;
}
.about-us-page p {
  color: #797a7d;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 170%;
}
.about-us-page h5 {
  color: #151518;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 3rem;
}
.about-us-page-row2 {
  margin-top: 8rem;
}
.about-us-page__statistic {
  margin-top: 5rem;
}
.about-us-page__statistic h6 {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 170%;
}
.about-us-page__statistic p {
  color: #151518;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
}

.about-page {
  padding: 0 0 4rem;
}

.about-page__hero {
  max-width: 72rem;
  margin-bottom: 4rem;
}

.about-page__eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.about-page__hero h1 {
  margin: 0 0 1.2rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.about-page__lead {
  margin: 0;
  max-width: 62rem;
  color: var(--color-muted);
  font-size: 1.7rem;
  line-height: 1.55;
}

.about-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-page__visual {
  min-height: 44rem;
}

.about-page__visual.is-visible .about-us__photo--main {
  animation: aboutRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-page__visual.is-visible .about-us__photo--side {
  animation: aboutRise 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-page__visual.is-visible .about-us__photo--bottom {
  animation: aboutRise 0.8s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-page__visual .about-us__float {
  background: #fff;
  color: var(--color-text);
  border: 0.1rem solid #f0f0f1;
  box-shadow: 0 0.8rem 2rem rgba(21, 21, 24, 0.1);
}

.about-page__visual .about-us__float strong {
  color: var(--color-primary);
}

.about-page__story h2 {
  margin: 0 0 1.4rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-page__story p {
  margin: 0 0 1.4rem;
  color: var(--color-muted);
  font-size: 1.5rem;
  line-height: 1.6;
}

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

.about-page__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.about-page__stats article {
  padding: 2rem 1.6rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  box-shadow: 0 0.6rem 1.8rem rgba(21, 21, 24, 0.04);
}

.about-page__stats strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--color-primary);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-page__stats span {
  color: var(--color-muted);
  font-size: 1.3rem;
  line-height: 1.4;
}

.about-page__values {
  margin-bottom: 4rem;
  padding: 3rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.05);
}

.about-page__values-head {
  max-width: 56rem;
  margin-bottom: 2.4rem;
}

.about-page__values-head h2 {
  margin: 0 0 0.8rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-page__values-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.45rem;
  line-height: 1.5;
}

.about-page__values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.about-page__values-grid article {
  padding: 1.8rem 1.6rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 0.1rem solid #f0f0f1;
}

.about-page__value-num {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.about-page__values-grid h3 {
  margin: 0 0 0.7rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-page__values-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.3rem;
  line-height: 1.45;
}

.about-page__team {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
  margin-bottom: 3.2rem;
}

.about-page__team-copy h2 {
  margin: 0 0 1.2rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-page__team-copy p {
  margin: 0 0 1.2rem;
  color: var(--color-muted);
  font-size: 1.45rem;
  line-height: 1.55;
}

.about-page__team-copy ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.about-page__team-copy li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2.2rem;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 0.1rem solid #f2f2f2;
}

.about-page__team-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.about-page__team-copy .btn-car {
  width: auto;
  min-width: 24rem;
  margin: 0;
}

.about-page__team-copy .btn-car span {
  margin-left: 0;
}

.about-page__team-media {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 1.2rem 3.2rem rgba(21, 21, 24, 0.1);
}

.about-page__team-media img {
  width: 100%;
  height: 42rem;
  object-fit: cover;
  display: block;
}

.about-page__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 2.8rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, var(--color-primary-bright) 0%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  color: #fff;
  box-shadow: 0 1.4rem 3.2rem rgba(196, 30, 58, 0.24);
}

.about-page__banner h3 {
  margin: 0 0 0.6rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.about-page__banner p {
  margin: 0;
  max-width: 52rem;
  font-size: 1.4rem;
  line-height: 1.5;
  opacity: 0.92;
}

.about-page__banner .btn-car {
  width: auto;
  min-width: 22rem;
  margin: 0;
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.about-page__banner .btn-car:hover {
  background: #fff !important;
  color: var(--color-primary-hover);
}

.about-page__banner .btn-car span {
  margin-left: 0;
}

.breadcrumb-list__white {
  color: #fff;
}
.breadcrumb-list__white a {
  color: #fff;
}
.breadcrumb-list__white a:hover {
  color: #fff;
}
.breadcrumb-list__white p {
  color: #fff;
}
.latest-car {
  margin-top: 6rem;
}
.latest-car hr {
  border-color: #d8d8d8;
}

.car-product {
  padding: 0 0 4rem;
}

.car-product__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(32rem, 0.9fr);
  gap: 2.4rem;
  align-items: start;
}

.car-product__gallery {
  min-width: 0;
}

.car-product__sidebar {
  position: sticky;
  top: 9rem;
}

.carProductSwiper {
  border-radius: 1.2rem;
  overflow: hidden;
  background: #f4f4f5;
  box-shadow: 0 1.2rem 3.2rem rgba(21, 21, 24, 0.08);
}

.carProductSwiper img {
  width: 100%;
  height: 46rem;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.car-product__nav {
  top: 50% !important;
  width: 4.4rem !important;
  height: 4.4rem !important;
  margin-top: 0 !important;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--color-primary);
  box-shadow: 0 0.6rem 1.6rem rgba(21, 21, 24, 0.14);
  z-index: 2;
}
.car-product__nav svg{
  width: auto;
  height: auto;
}

.car-product__nav:hover {
  background: #fff !important;
  color: var(--color-primary-hover);
}

.car-product__nav::after {
  display: none;
}

.car-product__nav.swiper-button-prev {
  left: 1.4rem;
}

.car-product__nav.swiper-button-next {
  right: 1.4rem;
}

.car-product__nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.carProductSwiperThumbs {
  margin-top: 1.2rem;
  padding: 0.2rem;
}

.carProductSwiperThumbs .swiper-slide {
  width: auto;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.carProductSwiperThumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.carProductSwiperThumbs img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  border-radius: 1rem;
  border: 0.2rem solid transparent;
  transition: border-color 0.2s ease;
}

.carProductSwiperThumbs .swiper-slide-thumb-active img {
  border-color: var(--color-primary);
}

.car-product-option {
  border-radius: 1.2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  padding: 2.4rem;
  box-shadow: 0 1rem 2.8rem rgba(21, 21, 24, 0.06);
}

.car-product-option__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.car-product-option__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.car-product-option__badge--soft {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.car-product-option h1 {
  margin: 0 0 1.6rem;
  color: var(--color-text);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.car-product-option__price {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff5f7 0%, #fce8ec 100%);
  border: 0.1rem solid rgba(196, 30, 58, 0.12);
}

.car-product-option__price span {
  color: var(--color-muted);
  font-size: 1.2rem;
  font-weight: 600;
}

.car-product-option__price strong {
  color: var(--color-primary);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  direction: ltr !important;
}

.car-product-option__price small {
  color: var(--color-muted);
  font-size: 1.2rem;
  line-height: 1.4;
}

.car-product-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}

.car-product-highlights li {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 0.1rem solid #f0f0f1;
}

.car-product-highlights span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-muted);
  font-size: 1.15rem;
  font-weight: 500;
}

.car-product-highlights strong {
  color: var(--color-text);
  font-size: 1.35rem;
  font-weight: 700;
}

.car-product-specs {
  display: grid;
  gap: 0.2rem;
  margin: 0 0 2rem;
}

.car-product-specs__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 0.1rem solid #f2f2f2;
}

.car-product-specs__item:last-child {
  border-bottom: 0;
}

.car-product-specs__item dt {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.25rem;
  font-weight: 500;
}

.car-product-specs__item dd {
  margin: 0;
  color: var(--color-text);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: right;
}

.car-product-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.car-product-cta .btn-car {
  width: 100%;
  margin: 0;
  min-height: 4.8rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.3rem;
}

.car-product-cta .btn-car span {
  margin-left: 0;
}

.car-product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.car-product-trust li {
  padding: 0.45rem 0.9rem;
  border-radius: 1rem;
  background: #f7f7f8;
  color: var(--color-muted);
  font-size: 1.15rem;
  font-weight: 600;
}

.car-product-flow {
  margin-top: 4rem;
  padding: 2.8rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.05);
}

.car-product-flow__head {
  max-width: 56rem;
  margin-bottom: 2.4rem;
}

.car-product-flow__head h2 {
  margin: 0 0 0.6rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-text);
}

.car-product-flow__head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.4rem;
  line-height: 1.5;
}

.car-product-flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.car-product-flow__list li {
  padding: 1.6rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 0.1rem solid #f0f0f1;
}

.car-product-flow__num {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.car-product-flow__list strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
}

.car-product-flow__list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.3rem;
  line-height: 1.45;
}

.car-product-desc {
  margin-top: 3.2rem;
  padding: 2.4rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
}

.car-product-desc h2,
.car-product-options h2 {
  margin: 0 0 1.4rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text);
}

.car-product-desc__body {
  color: var(--color-muted);
  font-size: 1.45rem;
  line-height: 1.6;
}

.car-product-options {
  margin-top: 3.2rem;
}

.car-product-options__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.car-product-advantage {
  margin: 0;
  padding: 2rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
}

.car-product-advantage h3 {
  margin: 0 0 1.2rem;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-text);
}

.car-product-advantage-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.car-product-advantage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin: 0;
}

.car-product-advantage-list li img {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
}

.car-product-advantage-list li p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

.car-product-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.2rem;
  padding: 2.4rem 2.8rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, var(--color-primary-bright) 0%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  color: #fff;
  box-shadow: 0 1.4rem 3.2rem rgba(196, 30, 58, 0.24);
}

.car-product-banner__copy h3 {
  margin: 0 0 0.6rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.car-product-banner__copy p {
  margin: 0;
  max-width: 52rem;
  font-size: 1.4rem;
  line-height: 1.5;
  opacity: 0.92;
}

.car-product-banner .btn-car {
  width: auto;
  min-width: 22rem;
  margin: 0;
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.car-product-banner .btn-car:hover {
  background: #fff !important;
  color: var(--color-primary-hover);
}

.car-product-banner .btn-car span {
  margin-left: 0;
}

.latest-car {
  padding: 2rem 0 5rem;
  background: #f7f7f8;
}

.latest-car__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

.latest-car__head h2 {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-text);
}

.latest-car__link {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.latest-car__link:hover {
  color: var(--color-primary-hover);
}

.latest-car hr {
  display: none;
}

.cars-header-choose-filter {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cars-header-choose-filter li {
  border-radius: 1rem;
  background: var(--color-primary-soft);
  border: 0.1rem solid rgba(196, 30, 58, 0.12);
  padding: 0.55rem 1rem;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.cars-header-choose-filter p {
  margin: 0;
}
.cars-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.cars-header-find {
  color: var(--color-muted);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0.4rem 0 0;
  width: auto;
  max-width: 30%;
  text-align: right;
  flex-shrink: 0;
}
.cars-header-choose-filter__close {
  background: none;
  border: 0;
  padding: 0;
  transition: 0.3s;
}
.cars-header-choose-filter__close:hover {
  opacity: 0.8;
}

.filter-cars {
  position: sticky;
  top: 9rem;
  padding: 2rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.06);
}

.filter-cars__head {
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 0.1rem solid #f2f2f2;
}

.filter-cars__head h4 {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.filter-cars__head p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.filter-cars__field {
  margin: 0 0 1.4rem;
}

.filter-cars__field label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
}

.filter-cars__field input,
.filter-cars__field select {
  width: 100%;
  height: 4.6rem;
  margin: 0;
  padding: 0 1.3rem;
  border: 0.1rem solid #e8e8ea;
  border-radius: 1rem;
  background: #fafafa;
  color: var(--color-text);
  font-size: 1.35rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.filter-cars__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23797A7D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.3rem center;
  padding-right: 3.2rem;
  cursor: pointer;
}

.filter-cars__field input:focus,
.filter-cars__field select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
}

.filter-cars__range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.6rem;
  align-items: center;
}

.filter-cars__range-sep {
  color: var(--color-muted);
  font-size: 1.3rem;
  font-weight: 600;
}

.filter-cars__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.filter-cars__apply,
.filter-cars__clear {
  width: 100%;
  margin: 0;
  min-height: 4.6rem;
}

.filter-cars__apply span {
  margin-left: 0;
}

.filter-cars__clear {
  border-color: #e0e0e3;
  color: var(--color-muted);
  background: #fff;
}

.filter-cars__clear:hover {
  border-color: var(--color-primary-hover);
  color: #fff !important;
  background: var(--color-primary-hover) !important;
}

.cars-pagination {
  margin-top: 4rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid #f2f2f2;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination__item {
  padding: 0;
}

.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1rem;
  border: 0.1rem solid #ebebeb;
  border-radius: 1rem;
  background: #fff;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: 0.2s ease;
}

.pagination__item a.pagination__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.pagination__item.active .pagination__btn {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0.6rem 1.4rem rgba(196, 30, 58, 0.22);
}

.pagination__item.disabled .pagination__btn {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.pagination__item--nav .pagination__btn {
  color: var(--color-primary);
}

.pagination__item--dots .pagination__btn {
  border-color: transparent;
  background: transparent;
  min-width: 2.4rem;
  color: var(--color-muted);
  pointer-events: none;
}

.post-card__right {
  width: 40rem;
}
.btn-car_max {
  background: linear-gradient(90deg, #4185F6 0%, #4930E0 48%, #964BDA 98%);
  border: 0;
  color: #fff;
}
.btn-car_max:hover{
  background: linear-gradient(135deg, #7A6CFF 0%, #5B54F0 100%);
  border-color: transparent;
  color: #fff;
  opacity: 0.92;
}
.btn-car_youtube {
  background: #d72626;
  border-color: #d72626;
}
.btn-car_youtube:hover {
  background: #d72626;
  opacity: 0.8;
}

/* === Sales redesign additions === */

.gap-header {
  gap: 1.2rem;
}

.btn-car-header {
  width: auto;
  min-width: 16rem;
  padding: 0 1.6rem;
  height: 4rem;
  font-size: 1.3rem;
}

.header .btn-car-header {
  margin: 0;
}

.hero-brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  opacity: 0.95;
}

.hero-sell h1 {
  margin-bottom: 1.2rem;
}

.hero-lead {
  color: #fff;
  opacity: 0.9;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}

.hero-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.25);
  border: 0.1rem solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  padding: 0.8rem 1.4rem;
  color: #fff;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
}

.hero-timer strong {
  font-size: 1.8rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-cta .btn-car,
.hero-cta .btn-car-empty {
  width: auto;
  min-width: 18rem;
  flex: 1 1 auto;
}

.hero-cta .btn-car-empty {
  background: rgba(255, 255, 255, 0.95);
}

.section-lead {
  color: var(--color-muted);
  max-width: 64rem;
  margin: -1rem 0 3rem;
  line-height: 1.5;
}

.benefits-sell,
.how-it-works,
.final-cta {
  padding: 6rem 0;
}

.benefits-sell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 0% 20%, rgba(196, 30, 58, 0.1), transparent 60%),
    radial-gradient(ellipse 45% 50% at 100% 80%, rgba(196, 30, 58, 0.07), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
}

.benefits-sell__eyebrow,
.how-it-works__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefits-sell__head .title-section,
.how-it-works__head .title-section {
  margin-bottom: 1.2rem;
}

.benefits-sell__head .section-lead,
.how-it-works__head .section-lead {
  margin-bottom: 3.2rem;
}

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

.benefit-card {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.92);
  border: 0.1rem solid rgba(236, 236, 238, 0.95);
  border-radius: 1rem;
  padding: 2.6rem 2.2rem 2.4rem;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  box-shadow:
    0 1rem 2.8rem rgba(21, 21, 24, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(2.4rem);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  transition-delay: calc(var(--i, 0) * 0.12s);
}

.benefits-sell.is-visible .benefit-card {
  transform: none;
  opacity: 1;
}

.benefits-sell.is-visible .benefit-card:hover {
  transform: translateY(-0.6rem);
  border-color: rgba(196, 30, 58, 0.28);
  box-shadow:
    0 1.8rem 3.6rem rgba(21, 21, 24, 0.1),
    0 0 0 0.1rem rgba(196, 30, 58, 0.08);
}

.benefit-card:hover {
  border-color: rgba(196, 30, 58, 0.28);
}

.benefit-card__glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.16), transparent 70%);
  z-index: -1;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-card__glow {
  transform: scale(1.25);
}

.benefit-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.benefit-card__icon {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: linear-gradient(145deg, #fff 0%, var(--color-primary-soft) 100%);
  border: 0.1rem solid rgba(196, 30, 58, 0.12);
  box-shadow: 0 0.6rem 1.4rem rgba(196, 30, 58, 0.12);
}

.benefit-card__stat {
  text-align: right;
}

.benefit-card__stat strong {
  display: block;
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.benefit-card__stat span {
  display: block;
  margin-top: 0.5rem;
  color: var(--color-muted);
  font-size: 1.15rem;
  line-height: 1.3;
  max-width: 12rem;
  margin-left: auto;
}

.benefit-card h5 {
  color: var(--color-text);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.benefit-card p {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
  font-size: 1.4rem;
}

.benefits-sell__cta {
  margin-top: 3.2rem;
  text-align: center;
}

.benefits-sell__cta .btn-car {
  display: inline-flex;
  width: auto;
  min-width: 28rem;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 1rem 2.4rem rgba(196, 30, 58, 0.28);
}

.how-it-works {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f7f8 0%, #ffffff 45%, #ffffff 100%);
}

.how-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  padding-top: 1.2rem;
}

.how-track__line {
  display: none;
}

@media (min-width: 991px) {
  .how-track__line {
    display: block;
    position: absolute;
    top: 3.6rem;
    left: 11%;
    right: 11%;
    height: 0.3rem;
    border-radius: 1rem;
    background: #e8e8ea;
    z-index: 0;
    overflow: hidden;
  }

  .how-track__progress {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-muted) 100%);
    box-shadow: 0 0 1.2rem rgba(196, 30, 58, 0.45);
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .how-it-works.is-visible .how-track__progress {
    width: 100%;
  }
}

.how-step {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.2s + var(--i, 0) * 0.15s);
}

.how-it-works.is-visible .how-step {
  opacity: 1;
  transform: none;
}

.how-step__node {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  background: #fff;
  border: 0.2rem solid var(--color-primary-soft);
  box-shadow: 0 0.8rem 2rem rgba(196, 30, 58, 0.16);
}

.how-step__num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.how-step__card {
  width: 100%;
  background: #fff;
  border: 0.1rem solid #ececee;
  border-radius: 1rem;
  padding: 2rem 1.6rem 1.8rem;
  box-shadow: 0 1rem 2.4rem rgba(21, 21, 24, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.how-step:hover .how-step__card {
  transform: translateY(-0.4rem);
  border-color: rgba(196, 30, 58, 0.22);
  box-shadow: 0 1.6rem 3.2rem rgba(21, 21, 24, 0.09);
}

.how-step__icon {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 1.2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: linear-gradient(160deg, var(--color-primary-soft), #fff);
}

.how-step h6 {
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--color-text);
  margin-bottom: 0.8rem;
}

.how-step p {
  color: var(--color-muted);
  margin: 0 0 1.2rem;
  line-height: 1.45;
  font-size: 1.3rem;
}

.how-step__time {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
}

@media (max-width: 1199px) and (min-width: 991px) {
  .benefits-sell__grid {
    gap: 1.4rem;
  }

  .benefit-card {
    padding: 2.2rem 1.8rem;
  }

  .benefit-card__stat strong {
    font-size: 2.8rem;
  }
}

@media (max-width: 990px) and (min-width: 640px) {
  .how-track {
    grid-template-columns: 1fr 1fr;
  }

  .how-step {
    flex-direction: column;
    text-align: center;
  }

  .how-step__node {
    margin-bottom: 1.4rem;
    align-self: center;
  }

  .how-step__icon {
    margin: 0 auto 1.2rem;
  }
}

.final-cta {
  padding: 2rem 0 4rem;
}

.final-cta__box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 70% at 100% 100%, rgba(0, 0, 0, 0.22), transparent 50%),
    linear-gradient(135deg, var(--color-primary-bright) 0%, var(--color-primary) 45%, var(--color-primary-hover) 100%);
  border-radius: 1rem;
  padding: 5rem 3.5rem 4.4rem;
  text-align: center;
  color: #fff;
  box-shadow:
    0 2.4rem 5rem rgba(196, 30, 58, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.final-cta__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.final-cta__glow--1 {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  animation: aboutFloat 8s ease-in-out infinite;
}

.final-cta__glow--2 {
  width: 22rem;
  height: 22rem;
  bottom: -12rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.22), transparent 70%);
  animation: aboutFloat 10s ease-in-out infinite reverse;
}

.final-cta__eyebrow {
  display: inline-block;
  margin: 0 0 1.4rem;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.16);
  border: 0.1rem solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final-cta__box h3 {
  font-weight: 800;
  font-size: 3.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.final-cta__text {
  opacity: 0.94;
  max-width: 58rem;
  margin: 0 auto 2rem;
  line-height: 1.55;
  font-size: 1.55rem;
}

.final-cta__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 0 2.8rem;
  padding: 0;
  list-style: none;
}

.final-cta__chips li {
  padding: 0.55rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  font-weight: 600;
}

.lead-inline {
  padding: 2rem 0 2rem;
  background: radial-gradient(ellipse 55% 70% at 100% 0%, rgba(255, 255, 255, 0.14), transparent 55%), radial-gradient(ellipse 45% 55% at 0% 100%, rgba(0, 0, 0, 0.22), transparent 50%), linear-gradient(135deg, var(--color-primary-bright) 0%, var(--color-primary) 45%, var(--color-primary-hover) 100%);
}

.lead-inline__box {
  display: grid;
  grid-template-columns: minmax(22rem, 28rem) 1fr;
  gap: 2.4rem;
  align-items: center;
  padding: 2rem 2.4rem;
  background: #fff;
  border: 0.1rem solid #f0f0f1;
  border-radius: 1rem;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.06);
}

.lead-inline__copy h3 {
  margin: 0 0 0.4rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.lead-inline__copy p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.lead-inline__form {
  min-width: 0;
}

.lead-inline__row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr auto;
  gap: 0.8rem;
  align-items: stretch;
}

.lead-inline__row input {
  width: 100%;
  height: 4.8rem;
  margin: 0;
  padding: 0 1.4rem;
  border: 0.1rem solid #e8e8ea;
  border-radius: 1rem;
  background: #fafafa;
  color: var(--color-text);
  font-size: 1.4rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-inline__row input:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
}

.lead-inline__row .btn-car {
  width: auto;
  min-width: 14rem;
  height: 4.8rem;
  margin: 0;
  padding: 0 1.8rem;
  white-space: nowrap;
}

.lead-inline__row .btn-car span {
  margin-left: 0;
}

.lead-inline__policy {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.9rem;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--color-muted);
  cursor: pointer;
}

.lead-inline__policy input {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
  accent-color: var(--color-primary);
}

.lead-inline__policy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.final-cta__actions .btn-car {
  width: auto;
  min-width: 18rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 2.4rem rgba(21, 21, 24, 0.18);
}

.final-cta__primary,
.final-cta__actions .btn-car:not([class*="btn-car_"]) {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.final-cta__primary:hover,
.final-cta__actions .btn-car:not([class*="btn-car_"]):hover {
  background: #fff !important;
  color: var(--color-primary-hover);
}

.sticky-cta {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: calc(1.2rem + env(safe-area-inset-bottom));
  z-index: 1040;
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.88);
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
  border-radius: 1.6rem;
  box-shadow:
    0 1.2rem 3.2rem rgba(21, 21, 24, 0.14),
    0 0.2rem 0.6rem rgba(21, 21, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(calc(100% + 2.4rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 5.2rem;
  margin: 0;
  padding: 0.8rem 1.1rem 0.8rem 0.9rem;
  border: 0;
  border-radius: 1.2rem;
  color: #fff;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sticky-cta__btn:hover {
  color: #fff;
  transform: translateY(-0.15rem);
}

.sticky-cta__btn:active {
  transform: translateY(0);
}

.sticky-cta__btn--lead {
  background:
    linear-gradient(145deg, var(--color-primary-bright) 0%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  box-shadow: 0 0.8rem 1.8rem rgba(196, 30, 58, 0.32);
}

.sticky-cta__btn--lead:hover {
  filter: brightness(1.05);
  box-shadow: 0 1rem 2.2rem rgba(196, 30, 58, 0.4);
}

.sticky-cta__btn--wa {
  background: linear-gradient(145deg, #34d861 0%, #25d366 45%, #1ebe57 100%);
  box-shadow: 0 0.8rem 1.8rem rgba(37, 211, 102, 0.3);
}

.sticky-cta__btn--wa:hover {
  filter: brightness(1.04);
  box-shadow: 0 1rem 2.2rem rgba(37, 211, 102, 0.4);
}

.sticky-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.sticky-cta__icon--pulse {
  position: relative;
}

.sticky-cta__icon--pulse::before {
  content: '';
  position: absolute;
  inset: -0.25rem;
  border-radius: 50%;
  border: 0.15rem solid rgba(255, 255, 255, 0.55);
  animation: stickyPulse 2s ease-out infinite;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}

.sticky-cta__text strong {
  font-size: 1.4rem;
  font-weight: 700;
}

.sticky-cta__text small {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.85;
}

@keyframes stickyPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.lead-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-primary-soft);
  border-radius: 1rem;
  padding: 1rem 1.4rem;
  margin-bottom: 1.6rem;
  color: var(--color-text);
}

.lead-timer__value {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.reveal-section {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

.cars-lead-banner {
  background: var(--color-primary-soft);
  border: 0.1rem solid var(--color-primary-muted);
  border-radius: 1rem;
  padding: 2rem 2.4rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.cars-lead-banner h4 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.cars-lead-banner p {
  margin: 0;
  color: var(--color-muted);
}

.cars-lead-banner .btn-car {
  width: auto;
  min-width: 20rem;
}

.contacts-lead-form {
  background: #fff;
  border: 0.1rem solid #f2f2f2;
  border-radius: 1rem;
  padding: 2.4rem;
  margin-bottom: 3rem;
}

.contacts-lead-form h4 {
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.faq-cta {
  margin-top: 3rem;
  text-align: center;
}

@media (min-width: 991px) {
  .sticky-cta {
    left: auto;
    right: 2.4rem;
    bottom: 2.4rem;
    width: auto;
    min-width: 34rem;
    max-width: 38rem;
    padding: 0.9rem;
    border-radius: 1.8rem;
  }

  .sticky-cta__btn {
    min-width: 15rem;
    padding: 0.9rem 1.2rem 0.9rem 1rem;
  }
}

/* === Hero v2 + trust + cards === */
.utf-section.hero-sell {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
  background:
    linear-gradient(105deg, rgba(21, 21, 24, 0.88) 0%, rgba(160, 24, 48, 0.78) 48%, rgba(196, 30, 58, 0.55) 100%),
    url('/assets/img/contact-social-networks-bg.jpg') center/cover no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  animation: heroFadeIn 0.7s ease both;
}

.hero-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
  animation: heroFadeIn 0.9s ease 0.1s both;
}

.hero-visual__img {
  width: 100%;
  height: 42rem;
  object-fit: cover;
  display: block;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 1.8rem;
  padding: 0;
}

.hero-chips li {
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
  border: 0.1rem solid rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 1rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-search-section {
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  padding-bottom: 2rem;
}

.hero-search-card {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 2.4rem;
  box-shadow: 0 1.2rem 3.2rem rgba(21, 21, 24, 0.08);
  border: 0.1rem solid rgba(242, 242, 242, 0.95);
}

.hero-search-card__intro {
  flex: 0 0 22rem;
  max-width: 22rem;
}

.hero-search-card__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.hero-search-card__text {
  color: var(--color-muted);
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.45;
}

.hero-search-form {
  flex: 1;
  min-width: 0;
}

.hero-search-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 0.9fr auto;
  gap: 1.2rem;
  align-items: end;
}

.hero-search-field {
  margin: 0;
  min-width: 0;
}

.hero-search-field label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-search-field input,
.hero-search-field select {
  width: 100%;
  height: 4.8rem;
  border: 0.1rem solid #ebebeb;
  border-radius: 1rem;
  background: #fafafa;
  padding: 0 1.4rem;
  font-size: 1.35rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-search-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23797A7D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 3.4rem;
  cursor: pointer;
}

.hero-search-field input:focus,
.hero-search-field select:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(196, 30, 58, 0.12);
  outline: none;
}

.hero-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 4.8rem;
  min-width: 16rem;
  padding: 0 2rem;
  border: 0;
  border-radius: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-search-submit span {
  margin: 0;
  line-height: 1;
}

.hero-search-submit:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.hero-search-submit:active {
  transform: translateY(0.1rem);
}

.hero-search-form .btn-car {
  margin-top: 0;
}

.trust-strip {
  padding: 0 0 5rem;
  background: #f7f7f8;
  margin-top: -0.1rem;
}

.trust-strip__panel {
  background: #fff;
  border: 0.1rem solid #ececee;
  border-radius: 1rem;
  padding: 1.2rem 1.2rem 1.6rem;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 21, 24, 0.04);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-strip__item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 2.4rem 1.6rem;
  margin-bottom: 0;
  text-align: center;
  position: relative;
}

.trust-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 0.1rem;
  height: 60%;
  background: #ececee;
}

.trust-strip__item strong {
  display: block;
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.trust-strip__item span {
  color: var(--color-muted);
  font-size: 1.35rem;
  line-height: 1.35;
  display: block;
  max-width: 16rem;
  margin: 0 auto;
}

.trust-strip__note {
  color: var(--color-muted);
  font-size: 1.2rem;
  margin: 0.4rem 0.8rem 0;
  text-align: center;
  padding-top: 1.2rem;
  border-top: 0.1rem solid #f2f2f2;
}

.car-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1.6rem;
}

.car-card__actions .btn-car {
  padding: 1.05rem 0.6rem;
  font-size: 1.2rem;
  margin: 0;
  border-radius: 1rem;
}

.car-card__actions .btn-car span {
  margin-left: 0;
}
.cars .col-lg-4:nth-child(1) .car-card, .cars .col-lg-4:nth-child(2) .car-card, .cars .col-lg-4:nth-child(3) .car-card {
  margin-top: 0;
}
.privacy-content p,
.privacy-content li {
  color: #797a7d;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.privacy-content ul {
  padding-left: 2rem;
  margin-bottom: 1.6rem;
}

.privacy-content li {
  list-style: disc;
}

.privacy-content a {
  color: var(--color-primary);
}

.privacy-content b {
  color: var(--color-text);
  font-size: 1.6rem;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(1.6rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 1200px) and (min-width: 991px) {
  .header-menu li a {
    padding: 0.7rem 0.7rem;
    font-size: 1.25rem;
  }
  .header-phone__label {
    display: none;
  }
  .header-logo__text small {
    display: none;
  }
  .btn-header-cta {
    padding: 0 1.2rem;
  }
}
.change-lang { position: relative; }

@media (max-width: 1200px) and (min-width: 991px) {
  .hero-search-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
  }

  .hero-search-card__intro {
    flex: none;
    max-width: none;
  }

  .hero-search-fields {
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
  }
}

.hero-case {
  position: relative;
}

.hero-case__badge {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  background: rgba(21, 21, 24, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  color: #fff;
}

.hero-case__label {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.8rem;
  border-radius: 1rem;
  background: rgba(196, 30, 58, 0.95);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-case__title {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-case__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-case__meta li {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.45rem 0.9rem;
}

.hero-case .swiper {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.hero-case__slide {
  position: relative;
}

.hero-case .hero-visual__img {
  width: 100%;
  height: 42rem;
  object-fit: cover;
  display: block;
}

.hero-case__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.hero-case__label {
  margin-bottom: 0;
}

.hero-case__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-case__pagination.swiper-pagination {
  position: absolute !important;
  top: 1.4rem !important;
  bottom: auto !important;
  left: auto !important;
  right: 1.6rem !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  background: rgba(21, 21, 24, 0.55) !important;
  border-radius: 1rem !important;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 3;
}

.hero-case__pagination .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.7rem;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin: 0 !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-case__pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

.hero-case__badge {
  bottom: 1.6rem;
}
.cars{
  padding-bottom: 6rem;
}
