/* ===== PAGE THEME (index) ===== */
body {
  background: var(--color-bg-darker);
  color: var(--color-text-light);
}

img {
  max-width: none;
}

/* ============================================ */
/* ===== INDEX-SPECIFIC HEADER OVERRIDES ===== */
/* ============================================ */
.header__vin-input {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20.55px);
  -webkit-backdrop-filter: blur(20.55px);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 175px 49px 0px rgba(0, 0, 0, 0),
    0px 112px 45px 0px rgba(0, 0, 0, 0.01),
    0px 63px 38px 0px rgba(0, 0, 0, 0.03),
    0px 28px 28px 0px rgba(0, 0, 0, 0.04),
    0px 7px 15px 0px rgba(0, 0, 0, 0.05);
}

.header__vin-input input {
  color: rgba(255, 255, 255, 0.7);
}

.header__vin-input input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================ */
/* ===== SECTION 1: HERO ==================== */
/* ============================================ */
.hero--home {
  background:
    linear-gradient(194.478deg, rgba(0, 0, 0, 0.18) 19.664%, rgba(0, 0, 0, 0.3) 77.338%),
    url('../images/hero-bg.png') no-repeat center / cover;
}

.hero__content {
  width: min(730px, 90%);
  padding: 0 0 clamp(80px, 8.854vw, 170px) clamp(20px, 5%, 80px);
}

.hero__title-wrap {
  border-bottom: 1px solid var(--color-primary);
}

.hero__title {
  font-family: 'Inter', sans-serif;
}

.hero__title--muted {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero__desc {
  line-height: 20.574px;
}

/* Sponsors inside hero */
.hero .sponsors {
  flex-shrink: 0;
  margin-top: 0;
}

/* ============================================ */
/* ===== SECTION 2: SPONSORS ================ */
/* ============================================ */
.sponsors {
  width: 100%;
  height: auto;
  min-height: 105px;
  background: var(--color-bg-input);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px clamp(20px, 5%, 80px);
}

.sponsors__inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.sponsors__logo {
  display: flex;
  align-items: center;
}

.sponsors__logo img {
  height: 51px;
  width: auto;
  object-fit: contain;
}

.sponsors__logo--copart img {
  width: 134px;
}

.sponsors__carfax-svg {
  width: 222px;
  height: 42px;
}

.sponsors__logo--autocheck img {
  width: 132px;
}

.sponsors__logo--copart2 img {
  width: 196px;
}

.sponsors__brand-svg {
  width: 81px;
  height: 51px;
}

/* ============================================ */
/* ===== SECTION 3: HOT OFFERS ============== */
/* ============================================ */
.hot-offers {
  width: 100%;
  background: var(--color-bg-light);
  overflow: hidden;
  margin-top: 3px;
  padding: clamp(40px, 4.01vw, 77px) 0 clamp(40px, 4.167vw, 80px);
}

.hot-offers__title {
  width: min(519px, 80%);
  margin-left: clamp(20px, 19.792vw, 380px);
  color: var(--color-text-dark);
}

.hot-offers__carousel {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.771vw, 34px);
  width: min(1318px, 90%);
  margin: clamp(30px, 2.5vw, 48px) auto 0;
}

.carousel__btn {
  flex-shrink: 0;
  width: 51px;
  height: 51px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity var(--transition-fast);
}

.carousel__btn:hover {
  opacity: 0.8;
}

.carousel__btn svg {
  width: 16px;
  height: 20px;
}

.carousel__btn--prev {
  transform: rotate(-90deg);
}

.carousel__btn--next {
  transform: rotate(90deg);
}

.carousel__track {
  flex: 1;
  min-width: 0;
  position: relative;
}

.carousel__slide {
  width: 100%;
  display: flex;
  gap: clamp(15px, 1.771vw, 34px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.carousel__slide--active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

/* ===== CAR CARD ===== */
.car-card {
  flex-shrink: 0;
  width: clamp(260px, 18.75vw, 360px);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.car-card__img {
  position: relative;
  width: 100%;
  height: clamp(180px, 15.625vw, 300px);
  overflow: hidden;
}

.car-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-card__img-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.car-card__touch {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.car-card__touch-label {
  font-family: var(--font-accent);
  font-weight: 350;
  font-size: 10px;
  color: var(--color-text-light);
  width: 79px;
  line-height: normal;
}

.car-card__touch-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.car-card__info {
  padding: clamp(12px, 1.042vw, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 1.563vw, 30px);
}

.car-card__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.car-card__header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: min(236px, 100%);
}

.car-card__name {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: clamp(16px, 1.042vw, 20px);
  color: var(--color-text-dark);
  line-height: normal;
}

.car-card__price {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(16px, 1.042vw, 20px);
  color: var(--color-primary-dark);
  line-height: normal;
}

.car-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.car-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-card__spec-label {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-muted);
  width: 130px;
}

.car-card__spec-value {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-dark);
}

.car-card__btn {
  width: min(310px, 100%);
  border-radius: 40px;
  padding: 13px 15px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 15px;
}

/* ============================================ */
/* ===== SECTION 4: PARTNER ================= */
/* ============================================ */
.partner {
  width: 100%;
  background: var(--color-bg-light);
  padding: clamp(60px, 5.729vw, 110px) 0 clamp(60px, 6.771vw, 130px);
}

.partner__content {
  display: flex;
  flex-direction: column;
}

.partner__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(25px, 2.969vw, 57px);
}

.partner__header .section-title {
  width: min(360px, 50%);
  color: var(--color-text-dark);
}

.partner__header-desc {
  font-weight: 500;
  font-size: 17px;
  width: min(399px, 45%);
  color: var(--color-text-dark);
}

.partner__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.partner__row--top {
  width: min(857px, 100%);
}

.partner__row--bottom {
  width: min(859px, 100%);
  margin-left: clamp(0px, 15.625vw, 300px);
}

/* ===== STAT CARD ===== */
.stat-card {
  flex: 1;
  min-height: clamp(220px, 16.094vw, 309px);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.stat-card--gray {
  background: var(--color-bg-card);
}

.stat-card--image {
  position: relative;
}

.stat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  pointer-events: none;
}

.stat-card__bg-wrap {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}


.stat-card__overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(180.057deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 81.026%);
}

.stat-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(15px, 1.042vw, 20px) clamp(15px, 1.302vw, 25px) clamp(20px, 1.563vw, 30px);
  height: 100%;
  min-height: clamp(220px, 16.094vw, 309px);
}

.stat-card__content--white {
  color: var(--color-text-light);
}

.stat-card__content--white .stat-card__heading,
.stat-card__content--white .stat-card__desc {
  color: var(--color-text-light);
}

.stat-card__number {
  font-weight: 500;
  font-size: clamp(28px, 3.125vw, 60px);
  text-align: right;
  width: 100%;
}

.stat-card__number--blue {
  color: var(--color-primary);
}

.stat-card__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card__heading {
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-dark);
}

.stat-card__desc {
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: normal;
}

.stat-card--2026 {
  width: min(552px, 100%);
  height: clamp(200px, 15.625vw, 300px);
  flex: none;
}

.partner__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
}

.partner__cta {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 2.604vw, 50px);
  align-items: flex-start;
  width: min(399px, 100%);
}

.partner__cta .section-title {
  color: var(--color-text-dark);
}

/* ============================================ */
/* ===== SECTION 5: WORLD MAP =============== */
/* ============================================ */
.world-map {
  width: 100%;
  background: var(--color-bg-light);
  padding: 30px 0 clamp(50px, 5.729vw, 110px);
}

.world-map__title {
  width: min(640px, 80%);
  margin-left: clamp(20px, 19.792vw, 380px);
  color: var(--color-text-dark);
  position: relative;
  z-index: 2;
}

.world-map__container {
  position: relative;
  width: min(1482px, 90%);
  height: auto;
  aspect-ratio: 1482 / 898;
  margin: -30px auto 0;
}

.world-map__mask {
  width: 100%;
  height: 100%;
  background: #d8dde3;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: 0 0;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
}

.world-map__marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.world-map__marker::before {
  content: '';
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-text-light);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1),
    0px 8px 8px rgba(0, 0, 0, 0.09),
    0px 18px 11px rgba(0, 0, 0, 0.05),
    0px 32px 13px rgba(0, 0, 0, 0.01);
  flex-shrink: 0;
}

.world-map__marker-label {
  font-weight: 500;
  font-size: clamp(11px, 0.885vw, 17px);
  color: var(--color-text-dark);
  white-space: nowrap;
  text-align: center;
  margin-top: 8px;
}

.world-map__marker--1 {
  left: 57.96%;
  top: 49.89%;
}

.world-map__marker--2 {
  left: 59.99%;
  top: 34.19%;
}

.world-map__marker--3 {
  left: 19.30%;
  top: 43.43%;
}

.world-map__marker--4 {
  left: 53.64%;
  top: 38.75%;
}

.world-map__marker--5 {
  left: 67.07%;
  top: 48.66%;
}

.world-map__marker--6 {
  left: 64.04%;
  top: 44.77%;
}

.world-map__cards {
  display: flex;
  justify-content: space-between;
  width: min(var(--width-container), 90%);
  margin: clamp(20px, 2.083vw, 40px) auto 0;
  gap: 20px;
  flex-wrap: wrap;
}

.info-block {
  width: clamp(200px, 13.542vw, 260px);
  color: var(--color-text-dark);
}

/* ============================================ */
/* ===== SECTION 6: VIN CHECK =============== */
/* ============================================ */
.vin-check {
  width: 100%;
  background: var(--color-bg-light);
  padding: clamp(40px, 4.167vw, 80px) 0 clamp(35px, 3.646vw, 70px);
}

.vin-check__inner {
  width: min(var(--width-container), 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.vin-check__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vin-check__icons-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.vin-check__icons {
  display: flex;
  gap: 15px;
}

.vin-check__icon {
  width: 25px;
  height: 25px;
  display: block;
}

.vin-check .section-title {
  color: var(--color-text-dark);
  width: min(460px, 100%);
}

.vin-check__desc {
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-dark);
  width: min(460px, 100%);
  line-height: normal;
}

.vin-check__right {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.vin-check__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vin-check__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input--dark {
  width: 100%;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-input);
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--color-text-light);
}

.input--dark::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input--light {
  width: 100%;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-text-light);
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--color-bg-input);
}

.vin-check__result {
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-dark);
}

/* ============================================ */
/* ===== SECTION 7: SERVICES ================ */
/* ============================================ */
.services {
  width: 100%;
  background: var(--color-bg-light);
}

.services__inner {
  width: min(var(--width-container), 90%);
  margin: 0 auto;
  padding: clamp(25px, 2.604vw, 50px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3.125vw, 60px);
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  width: 100%;
}

.feature--reverse {
  align-items: flex-start;
}

.feature__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.feature__header--right {
  justify-content: flex-end;
}

.feature__title {
  font-weight: 500;
  font-size: clamp(22px, calc(18.4px + 1.125vw), 40px);
  text-transform: uppercase;
  width: min(680px, 100%);
  line-height: normal;
  color: var(--color-text-dark);
}

.feature__title--accent {
  color: var(--color-primary);
}

.feature__title--normal {
  color: var(--color-text-dark);
}

.feature__header--right .feature__title {
  text-align: right;
}

.feature__subtitle {
  font-weight: 500;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.5);
  width: min(362px, 100%);
}

.feature__content {
  display: flex;
  gap: 20px;
  width: 100%;
}

.feature__text-card {
  flex: 1;
  min-height: 235px;
  background: var(--color-text-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(15px, 1.042vw, 20px);
}

.feature__image {
  width: clamp(200px, 19.427vw, 373px);
  height: clamp(180px, 12.24vw, 235px);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__text-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.feature__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.feature__text-heading {
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-dark);
}

.feature__text-body {
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: normal;
}

/* .feature__actions {
  align-self: flex-start;
} */

/* ============================================ */
/* ===== SECTION 8: MAIN CONTENT ============ */
/* ============================================ */
.main-content {
  width: 100%;
  margin-top: clamp(60px, 7.813vw, 150px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 10.417vw, 200px);
  align-items: center;
  padding-bottom: clamp(60px, 10.417vw, 200px);
}

/* ===== STEPS ===== */
.steps {
  width: 100%;
  height: clamp(320px, 34.271vw, 658px);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.steps__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4.167vw, 80px);
}

.steps .section-title {
  padding-left: clamp(20px, 19.792vw, 380px);
}

.steps__cards {
  display: flex;
  gap: clamp(20px, 2.083vw, 40px);
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: clamp(20px, 19.792vw, 380px);
  padding-bottom: 20px;
}

.steps__cards::-webkit-scrollbar {
  display: none;
}

.steps__cards--grabbing {
  cursor: grabbing;
  user-select: none;
}

.step-card {
  flex-shrink: 0;
  width: clamp(260px, 29.167vw, 560px);
  height: clamp(280px, 27.604vw, 530px);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.083vw, 40px) clamp(15px, 1.563vw, 30px);
}

.step-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.step-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.step-card__overlay--gradient {
  background: linear-gradient(193.731deg, rgba(0, 0, 0, 0.3) 16.672%, rgba(0, 0, 0, 0) 78.812%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.step-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
}

.step-card__content--top {
  align-self: flex-start;
}

.step-card__content--bottom {
  margin-top: auto;
}

.step-card__body {
  display: contents;
}

.step-card__num {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  font-weight: 500;
  font-size: clamp(24px, 2.083vw, 40px);
  color: var(--color-primary);
  text-transform: uppercase;
}

.step-card__title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-weight: 500;
  font-size: clamp(16px, 1.302vw, 25px);
  color: var(--color-text-light);
}

.step-card__title--constrained {
  width: min(329px, 100%);
}

.step-card__desc {
  grid-column: 1 / -1;
  grid-row: 2;
  font-weight: 300;
  font-size: clamp(14px, 0.938vw, 18px);
  color: var(--color-text-light);
  line-height: normal;
}

/* ===== COUNTRIES ===== */
.countries {
  flex-shrink: 0;
  width: 100%;
}

.countries__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 4.844vw, 93px);
}

.countries__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1161px, 90%);
}

.countries__header .section-title {
  width: min(570px, 55%);
  color: var(--color-text-light);
}

.countries__desc {
  font-weight: 500;
  font-size: 17px;
  width: min(399px, 40%);
  color: var(--color-text-light);
}

.countries__gallery {
  width: min(1178px, 90%);
  height: auto;
  min-height: clamp(140px, 12.76vw, 245px);
  background: var(--color-bg-gallery);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.979vw, 38px);
  padding: clamp(12px, 1.042vw, 20px) clamp(12px, 2.552vw, 49px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.countries__item {
  width: clamp(130px, 9.844vw, 189px);
  height: clamp(110px, 8.385vw, 161px);
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.countries__item:last-child {
  width: clamp(130px, 9.792vw, 188px);
}

.countries__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CALCULATOR ===== */
.calculator {
  flex-shrink: 0;
  height: auto;
  width: min(var(--width-container), 90%);
}

.calculator__info .section-title {
  width: 306px;
}

/* ===== ADVANTAGES ===== */
.advantages {
  flex-shrink: 0;
  width: min(var(--width-container), 90%);
}

.advantages__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(30px, 3.125vw, 60px);
  width: 100%;
}

.advantages .section-title {
  width: 100%;
  text-align: left;
}

.advantages__cards {
  display: flex;
  gap: 20px;
}

.advantage-card {
  width: clamp(240px, 19.271vw, 370px);
  height: clamp(340px, 27.083vw, 520px);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0px 150px 42px 0px rgba(0, 0, 0, 0),
    0px 96px 38px 0px rgba(0, 0, 0, 0.01),
    0px 54px 32px 0px rgba(0, 0, 0, 0.05),
    0px 24px 24px 0px rgba(0, 0, 0, 0.09),
    0px 6px 13px 0px rgba(0, 0, 0, 0.1);
}

.advantage-card__img {
  position: absolute;
  top: 0;
  width: 1196px;
  height: 673px;
  object-fit: cover;
  pointer-events: none;
}

.advantage-card__img--1 {
  width: 100%;
  height: 100%;
}

.advantage-card__img--2 {
  width: 100%;
  height: 100%;
}

.advantage-card__img--3 {
  width: 100%;
  height: 100%;
}

.advantage-card__content {
  position: absolute;
  left: clamp(15px, 1.302vw, 25px);
  top: clamp(25px, 2.448vw, 47px);
  width: calc(100% - clamp(30px, 2.604vw, 50px));
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.302vw, 25px);
  color: var(--color-text-light);
  white-space: nowrap;
}

.advantage-card__desc {
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: normal;
  width: 100%;
}

.advantages__inner>.btn-group {
  align-self: flex-end;
}

/* ===== FAQ (layout only) ===== */
.faq {
  flex-shrink: 0;
  width: min(var(--width-container), 90%);
}

.faq__title {
  width: min(539px, 100%);
}

.faq__contact-desc {
  line-height: normal;
}

/* ===== NEWS ===== */
.news-section {
  flex-shrink: 0;
  width: min(var(--width-container), 90%);
}

.news-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-section__link {
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-text-light);
  padding-bottom: 6px;
}

.news-section__cards {
  display: flex;
  gap: 20px;
  width: 100%;
}

.news-card {
  background: var(--color-bg-input);
  gap: 30px;
  padding-bottom: 30px;
}

.news-card__date {
  color: var(--color-text-light);
}


/* ============================================ */
/* ===== RESPONSIVE — LAYOUT CHANGES ONLY === */
/* ===== Fluid sizing handled by clamp()/min() */
/* ============================================ */

/* --- Tablet landscape: layout shifts --- */
@media (max-width: 1280px) {
  .partner__content {
    width: 90%;
    margin: 0 auto;
  }

  .partner__bottom {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}

/* --- Tablet: stack two-column layouts --- */
@media (max-width: 1024px) {

  /* Sponsors: horizontal scroll */
  .sponsors {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sponsors__inner {
    min-width: 700px;
  }

  /* Hot offers: normalize offset to 5% */
  .hot-offers__title {
    margin-left: 5%;
    width: 90%;
  }

  /* Hot offers: hide buttons, scroll cards */
  .carousel__btn {
    display: none;
  }

  .hot-offers__carousel {
    width: 90%;
  }

  .carousel__track {
    display: flex;
    gap: clamp(15px, 1.771vw, 34px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: static;
  }

  .carousel__slide,
  .carousel__slide--active {
    display: contents;
  }

  .car-card {
    scroll-snap-align: start;
  }

  /* Partner: stack rows */
  .partner__content {
    width: 90%;
  }

  .partner__row {
    flex-direction: column;
    gap: 20px;
  }

  .partner__row--top,
  .partner__row--bottom {
    width: 100%;
    margin-left: 0;
  }

  .partner__header {
    flex-direction: column;
    gap: 15px;
  }

  .partner__header .section-title,
  .partner__header-desc {
    width: 100%;
  }

  /* VIN Check: stack */
  .vin-check__inner {
    flex-direction: column;
    gap: 40px;
  }

  .vin-check__left,
  .vin-check__right {
    width: 100%;
  }

  /* Services features: stack */
  .feature__content {
    flex-direction: column;
  }

  .feature__image {
    width: 100%;
    height: 200px;
  }

  .feature__text-card {
    min-height: auto;
  }

  .feature__header {
    flex-direction: column;
    gap: 15px;
  }

  .feature__header--right {
    justify-content: flex-start;
  }

  .feature__header--right .feature__title {
    text-align: left;
  }

  /* Steps: auto height for wrapping */
  .steps {
    height: auto;
    min-height: 300px;
  }

  /* Steps: normalize offset to 5% */
  .steps .section-title,
  .steps__cards {
    padding-left: 5%;
  }

  /* World map: normalize offset to 5% */
  .world-map__title {
    margin-left: 5%;
  }

  /* Countries gallery: scroll */
  .countries__gallery {
    width: 90%;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }

  .countries__item {
    scroll-snap-align: start;
  }

  /* Advantages: scroll */
  .advantages__cards {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .advantages__cards::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    scroll-snap-align: start;
  }

  /* News: stack */
  .news-section__cards {
    flex-direction: column;
    gap: 20px;
  }

  .news-card {
    height: auto;
    min-height: 250px;
  }
}

/* --- Tablet portrait: further stacking --- */
@media (max-width: 768px) {
  .sponsors__inner {
    min-width: 600px;
  }

  .sponsors__logo img {
    height: clamp(28px, 4.557vw, 35px);
  }

  .sponsors__carfax-svg {
    width: clamp(120px, 20.833vw, 160px);
    height: auto;
  }

  .sponsors__brand-svg {
    width: clamp(50px, 7.813vw, 60px);
    height: auto;
  }

  /* World map cards: stack */
  .world-map__cards {
    flex-direction: column;
  }

  .info-block {
    width: 100%;
  }

  /* Feature text-card: add gap on tablet */
  .feature__text-card {
    gap: 16px;
  }

  /* Feature avatar: smaller on tablet */
  .feature__avatar {
    width: 36px;
    height: 36px;
  }

  .feature__text-header {
    gap: 16px;
  }

  /* Car card button: smaller on tablet */
  .car-card__btn {
    padding: 11px 14px;
    font-size: 14px;
  }

  /* World map: hide labels on small screens to avoid overlap */
  .world-map__marker-label {
    font-size: clamp(9px, 1.302vw, 14px);
  }

  .world-map__marker::before {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  /* Countries header: stack */
  .countries__header {
    flex-direction: column;
    gap: 15px;
  }

  .countries__header .section-title,
  .countries__desc {
    width: 100%;
  }

  /* Partner: single column stat cards */
  .stat-card--2026 {
    width: 100%;
  }
}

/* --- Mobile --- */
@media (max-width: 576px) {
  .sponsors__inner {
    min-width: 500px;
  }

  /* Hero: full width content */
  .hero__content {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  /* Hot offers: centered title */
  .hot-offers__title {
    margin-left: 5%;
    width: 90%;
  }

  .hot-offers__carousel {
    width: 90%;
    padding: 0;
  }

  /* Steps: flush left */
  .steps .section-title,
  .steps__cards {
    padding-left: 5%;
  }

  /* Feature text-card: add gap on mobile */
  .feature__text-card {
    gap: 12px;
  }

  /* Feature avatar: smaller on mobile */
  .feature__avatar {
    width: 32px;
    height: 32px;
  }

  .feature__text-header {
    gap: 12px;
  }

  /* Car card button: smaller on mobile */
  .car-card__btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* World map: flush left title */
  .world-map__title {
    margin-left: 5%;
  }

  /* Map markers: smaller on mobile */
  .world-map__marker-label {
    display: none;
  }

  /* Partner section */
  .partner__content {
    width: 90%;
  }

  /* Countries: smaller items */
  .countries__gallery {
    width: 90%;
    padding: 12px 0;
    gap: 8px;
    border-radius: 10px;
    justify-content: flex-start;
  }

  .countries__item {
    width: 100px;
    height: 80px;
    border-radius: 10px;
  }

  .countries__item:last-child {
    width: 100px;
  }

  /* Advantages: smaller gap */
  .advantages__cards {
    gap: 12px;
  }

  /* News */
  .news-section__inner {
    gap: 25px;
  }
}

/* --- Extra small --- */
@media (max-width: 375px) {
  .car-card {
    width: calc(100vw - 50px);
  }

  .step-card {
    width: 85vw;
  }

  .advantage-card {
    width: 80vw;
  }

  .countries__item {
    width: 110px;
    height: 90px;
  }
}