/* =========================================================
   Base
========================================================= */
:root {
  --color-bg: #121212;
  --color-bg-soft: #1a1a1a;
  --color-bg-card: #1f1f1f;
  --color-bg-card-2: #252525;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.14);

  --color-text: #ffffff;
  --color-text-muted: #c6c6c6;
  --color-text-soft: rgba(255, 255, 255, 0.72);

  --color-accent: #d31e25;
  --color-accent-hover: #e52a31;
  --color-accent-dark: #a8161b;

  --color-brand-dark: #2e2d2c;
  --color-brand-gray: #c6c6c6;
  --color-brand-white: #ffffff;

  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.28);
  --shadow-card-hover: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-accent: 0 14px 34px rgba(211, 30, 37, 0.22);
}

/* шрифты */

/* @font-face {
  font-family: 'Bounded';
  src: url('./fonts/Bounded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bounded';
  src: url('./fonts/Bounded-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
} */

/* разметка */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-width: 320px;
  overflow-x: hidden;
}

.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 1599.98px) {
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (max-width: 1399.98px) {
  .container-fluid {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1199.98px) {
  .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 991.98px) {
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 767.98px) {
  .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  .site-logo img{
    max-height: 40px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  outline: none !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.text-black{
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
}

::selection {
  background: rgba(211, 30, 37, 0.28);
  color: #ffffff;
}

/* =========================================================
   Container tweaks
========================================================= */
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

/* =========================================================
   Global reusable classes
========================================================= */
.site-section {
  position: relative;
  padding: 96px 0;
}

.page-hero__media {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 520px;
}

.page-hero__media::before {
  display: none;
}

.page-hero__media img {
  width: 100%;
  max-height: 460px;

  object-fit: contain;

  /* чтобы выглядело «дороже» */
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}

@media screen and (max-width:982px){
    .page-hero__media{
        display: none;
    }
}

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

.section-title {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.app-grid-gap > [class*="col-"] {
  margin-bottom: 30px;
}

.app-badge {
  display: inline-flex;
  align-items: center;

  font-family: sans-serif;
  font-size: 12px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.18em;

  color: var(--color-text);

  position: relative;
  padding-left: 14px;
}

.app-badge::before {
  content: '';

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow: 0 0 8px rgba(211, 30, 37, 0.6);
}

.app-badge::before {
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(211, 30, 37, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(211, 30, 37, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 30, 37, 0); }
}

.app-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  color: var(--color-text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.app-list li:last-child {
  margin-bottom: 0;
}

.app-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  box-shadow: 0 0 0 4px rgba(211, 30, 37, 0.14);
}

/* =========================================================
   Buttons
========================================================= */
.btn-main,
.btn-outline-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none !important;
  transition: all 0.25s ease;
}

.btn-main {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border: 1px solid rgba(211, 30, 37, 0.9);
}

.btn-main:hover,
.btn-main:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent) !important;
}

.btn-outline-main {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline-main:hover,
.btn-outline-main:focus {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

.btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn-with-arrow:hover .btn-arrow {
  transform: translate(3px, -3px);
}

/* =========================================================
   Global cards
========================================================= */
.app-card {
  position: relative;
  height: 100%;
  padding: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1f1f1f 0%, #181818 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.app-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 30, 37, 0.18) 0%, rgba(211, 30, 37, 0) 72%);
  pointer-events: none;
}

.app-card--mini {
  padding: 22px 20px;
  min-height: 100%;
  border-radius: 6px;
}

.app-card--accent {
  background: linear-gradient(180deg, rgba(211, 30, 37, 0.22) 0%, rgba(46, 45, 44, 0.98) 100%);
  border-color: rgba(211, 30, 37, 0.28);
}

.app-card--dark {
  background: linear-gradient(135deg, #171717 0%, #2e2d2c 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.app-card--dark::after {
  background: radial-gradient(circle, rgba(211, 30, 37, 0.22) 0%, rgba(211, 30, 37, 0) 72%);
}

.app-card__title {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
}

.app-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.app-card--dark .app-card__title,
.app-card--dark .app-card__text,
.app-card--dark .section-title,
.app-card--dark .section-subtitle,
.app-card--dark p,
.app-card--dark li {
  color: #ffffff;
}

/* =========================================================
   Header
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 18px 0;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  min-height: 72px;
}

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

.site-logo img {
  max-height: 56px;
  width: auto;
}

.site-nav__list li {
  margin-right: 30px;
}

.site-nav__list li:last-child {
  margin-right: 0;
}

.site-nav__list a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}

.site-nav__list a:hover {
  color: #ffffff;
}

.site-nav__list a:hover::after {
  width: 100%;
}

.site-phone {
  white-space: nowrap;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.site-phone:hover {
  color: var(--color-brand-white);
}

.site-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: #1f1f1f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.site-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px auto;
  background-color: #ffffff;
  border-radius: 0;
}

.site-burger {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1101;
}

.site-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 3px 0;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1090;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: #121212;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1100;

  display: flex;
  flex-direction: column;
  padding: 24px 20px 28px;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

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

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.mobile-menu__logo img {
  max-height: 48px;
  width: auto;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu__nav {
  flex: 1 1 auto;
}

.mobile-menu__list li + li {
  margin-top: 18px;
}

.mobile-menu__list a {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.mobile-menu__list a:hover {
  color: #d31e25;
}

.mobile-menu__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__phone {
  display: inline-block;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}

/* =========================================================
   Hero
========================================================= */
.page-hero {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(211, 30, 37, 0.2) 0%, rgba(211, 30, 37, 0) 34%),
    linear-gradient(180deg, #141414 0%, #1b1b1b 100%);
  overflow: hidden;
}

.page-hero_img {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(211, 30, 37, 0.2) 0%, rgba(211, 30, 37, 0) 34%),
    linear-gradient(180deg, rgba(20,20,20,0.75) 0%, rgba(27,27,27,0.9) 100%),
    url('../img/vyk1-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 72%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  margin: 22px 0 20px;
  font-size: 50px;
  line-height: 1.04;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.page-hero__text {
  max-width: 640px;
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.page-hero__buttons {
  margin-bottom: 38px;
}

.page-hero__buttons .btn-main,
.page-hero__buttons .btn-outline-main {
  min-width: 220px;
}

.page-hero__features .col-sm-4 {
  margin-bottom: 16px;
}

.page-hero__features .app-card__title {
  margin-bottom: 6px;
  font-size: 28px;
  color: #ffffff;
}

.page-hero__features .app-card__text {
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   Benefits
========================================================= */
.benefits-section {
  z-index: 2;
  background: #151515;
}

.benefit-card {
  height: 100%;
  padding: 30px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1f1f1f 0%, #191919 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(211, 30, 37, 0.22);
}

.benefit-card__title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.benefit-card__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   Catalog
========================================================= */
.catalog-section {
  background: linear-gradient(180deg, #111111 0%, #181818 100%);
}

.catalog-card {
  position: relative;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #1c1c1c 0%, #171717 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(211, 30, 37, 0.24);
}

.catalog-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  background: #252525;
}

.catalog-card__image img {
  width: 100%;
  /*height: 250px;*/
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.catalog-card__body {
  padding: 24px;
}

.catalog-card__title {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
}

.catalog-card__meta {
  margin: 0 0 18px;
  list-style: none;
}

.catalog-card__meta li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.catalog-card__meta li:last-child {
  margin-bottom: 0;
}

.catalog-card__meta li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.catalog-card__price {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: #ffffff;
}

/* =========================================================
   Services
========================================================= */
.services-section {
  background: #151515;
}

.service-card {
  height: 100%;
  padding: 30px;
  border-radius: 6px;
  background: linear-gradient(180deg, #202020 0%, #191919 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(211, 30, 37, 0.22);
}

.service-card__title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: rgba(232, 25, 44, 0.12);
  border-radius: 10px;
  color: #e8192c;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   Credit / info blocks
========================================================= */
.credit-section {
  background:
    radial-gradient(circle at right top, rgba(211, 30, 37, 0.16) 0%, rgba(211, 30, 37, 0) 28%),
    #171717;
}

/* =========================================================
   About
========================================================= */
.about-section {
  background: #141414;
}

.about-section p {
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
}

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

/* =========================================================
   CTA section
========================================================= */
.cta-section {
  padding-top: 10px;
  background: #121212;
}

.cta-section .app-card {
  padding: 56px 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2e2d2c 0%, #d31e25 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.cta-section .section-title {
  margin-bottom: 16px;
}

.cta-section .section-subtitle {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================================
   Contacts
========================================================= */
.contacts-section {
  background: #151515;
}

.contact-card {
  height: 100%;
  padding: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1f1f1f 0%, #191919 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.contact-card__item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card__label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card__value {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

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

.contacts-map {
  position: relative;
  height: 100%;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  /*background: #1c1c1c;*/
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.contacts-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  /*filter: grayscale(1) invert(0.92) contrast(0.9);*/
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  position: relative;
  padding: 76px 0 28px;
  background: linear-gradient(135deg, #111111 0%, #1b1b1b 50%, #2e2d2c 100%);
  color: #ffffff;
  overflow: hidden;
}

.site-footer__bottom {
  text-align: left;
  font-size: 13px;
  color: var(--color-text-muted);
}

.site-footer__bottom a {
  color: var(--color-accent);
  transition: 0.2s;
}

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

.site-footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 30, 37, 0.18) 0%, rgba(211, 30, 37, 0) 70%);
  pointer-events: none;
}

.site-logo--footer img {
  max-height: 60px;
}

.site-footer__text {
  margin: 20px 0 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.site-footer__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.site-footer__nav,
.site-footer__contacts {
  list-style: none;
}

.site-footer__nav li,
.site-footer__contacts li {
  margin-bottom: 14px;
}

.site-footer__nav li:last-child,
.site-footer__contacts li:last-child {
  margin-bottom: 0;
}

.site-footer__nav a,
.site-footer__contacts a,
.site-footer__contacts li {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer__nav a:hover,
.site-footer__contacts a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__bottom a:hover {
  color: #ffffff;
}

/* =========================================================
   Modal
========================================================= */
.modal{
  z-index: 1100;
}
.app-modal {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.app-modal .modal-body {
  position: relative;
  padding: 38px;
  background: linear-gradient(180deg, #1b1b1b 0%, #141414 100%);
}

.app-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #2a2a2a;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  transition: all 0.25s ease;
}

.app-modal__close:hover {
  background: #343434;
}

.app-modal__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.app-modal__text {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/*=========================================================
=========================================================
CAR MODAL КАРУСЕЛЬ
=========================================================
*/

/* Переключение шагов */
.car-modal__step {
  transition: opacity 0.2s ease;
}

/* Кнопка назад */
.car-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  padding: 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #aaaaaa;
  cursor: pointer;
  transition: color 0.2s;
}

.car-modal__back:hover {
  color: #ffffff;
}

.car-modal__back svg {
  width: 16px;
  height: 16px;
}

/* Блок выбранного авто */
.car-modal__selected {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  background: #1a1a1a;
}

.car-modal__selected-img {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.car-modal__selected-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.car-modal__selected-price {
  font-size: 15px;
  color: #e8192c;
  font-weight: 600;
}

/* Car modal carousel */
.car-modal__carousel {
  position: relative;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}

.car-modal__slide-img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Стрелки */
.car-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s;
}

.car-modal__arrow:hover {
  background: #e8192c;
  color: #fff;
}

.car-modal__arrow svg {
  width: 18px;
  height: 18px;
}

.car-modal__arrow--prev { left: 10px; }
.car-modal__arrow--next { right: 10px; }

/* =========================================================
   Car Modal Thumbs - 3 в ряду
========================================================= */
.car-modal__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.car-modal__thumb {
  flex: 0 0 calc(33.333% - 6px);
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

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

.car-modal__thumb.active,
.car-modal__thumb:hover {
  border-color: #e8192c;
}

/* =========================================================
   Forms
========================================================= */
.app-form {
  position: relative;
}

.app-form__group {
  margin-bottom: 16px;
}

.app-form__control {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: #202020;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: none;
  transition: all 0.25s ease;
}

textarea.app-form__control {
  height: auto;
  min-height: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.app-form__control:focus {
  border-color: rgba(211, 30, 37, 0.88);
  box-shadow: 0 0 0 4px rgba(211, 30, 37, 0.14);
}

.app-form__control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.app-form__policy {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.6;
}

.app-form__policy a {
  color: #ffffff;
  font-weight: 600;
}

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

/* =========================================================
   Car modal helpers
========================================================= */
.car-modal__gallery {
  border-radius: 8px;
  overflow: hidden;
  background: #1c1c1c;
}

.car-modal__gallery img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

/* =========================================================
   Utility helpers for sections if needed later
========================================================= */
.bg-white {
  background-color: #ffffff !important;
}

.text-dark-strong {
  color: #ffffff !important;
}

.text-muted-soft {
  color: var(--color-text-muted) !important;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1199.98px) {
  .site-section {
    padding: 82px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .page-hero__title {
    font-size: 52px;
  }

}

@media (max-width: 991.98px) {
  .site-section {
    padding: 74px 0;
  }

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

  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .site-header {
    padding: 14px 0;
  }

  .site-logo img {
    max-height: 50px;
  }

  .page-hero {
    padding: 56px 0 74px;
  }
  .page-hero_img{
    padding: 56px 0 74px;
  }

  .page-hero__title {
    font-size: 44px;
  }

  .page-hero__text {
    font-size: 17px;
  }

  .contact-card,
  .contacts-map {
    min-height: auto;
  }

  .contacts-map {
    min-height: 380px;
  }

  .contacts-map iframe {
    min-height: 380px;
  }

  .cta-section .app-card {
    padding: 46px 28px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .site-section {
    padding: 58px 0;
  }

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

  .section-title {
    font-size: 28px;
    line-height: 1.18;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn-main,
  .btn-outline-main {
    width: 100%;
    min-height: 52px;
    padding: 12px 22px;
    font-size: 14px;
    border-radius: 4px;
  }

  .app-card,
  .benefit-card,
  .service-card,
  .contact-card,
  .catalog-card__body,
  .app-modal .modal-body {
    padding: 24px;
  }

  .page-hero {
    padding: 42px 0 58px;
  }
  .page-hero_img{
    padding: 42px 0 58px;
  }

  .page-hero__title {
    margin-top: 18px;
    font-size: 34px;
    line-height: 1.08;
  }

  .page-hero__text {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.75;
  }

  .page-hero__buttons {
    margin-bottom: 26px;
    gap: 15px;
  }

  .page-hero__buttons .btn-outline-main {
    margin-left: 0 !important;
  }

  .page-hero__features .app-card__title {
    font-size: 24px;
  }

  .catalog-card__image img {
    /*height: 220px;*/
  }

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

  .catalog-card__price {
    font-size: 24px;
  }

  .benefit-card__title,
  .service-card__title,
  .app-card__title {
    font-size: 21px;
  }

  .contact-card__value {
    font-size: 16px;
  }

  .site-footer {
    padding: 58px 0 24px;
  }

  .site-footer__text {
    max-width: 100%;
  }

  .site-footer__bottom {
    margin-top: 28px;
  }

  .app-modal__title {
    font-size: 26px;
  }

  .app-modal__close {
    width: 38px;
    height: 38px;
    font-size: 22px;
    border-radius: 4px;
  }
}

@media (max-width: 575.98px) {
  .site-section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 25px;
  }

  .page-hero__title {
    font-size: 30px;
  }

  .app-badge {
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .app-card,
  .benefit-card,
  .service-card,
  .contact-card,
  .catalog-card__body {
    padding: 20px;
  }

  .catalog-card {
    border-radius: 8px;
  }

  .catalog-card__image img {
    /*height: 205px;*/
  }

  .contacts-map {
    min-height: 320px;
    border-radius: 8px;
  }

  .contacts-map iframe {
    min-height: 320px;
  }

  .cta-section .app-card {
    padding: 38px 20px;
    border-radius: 8px;
  }

  .site-header__actions .btn-main {
    display: none;
  }

  .app-form__control {
    height: 52px;
    border-radius: 4px;
  }

  .app-modal .modal-body {
    padding: 22px;
  }

  .car-modal__gallery {
    border-radius: 8px;
  }

  .car-modal__gallery img {
    min-height: 220px;
  }
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social__item {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 246, 246, 0.888);
  border: 1px solid var(--color-border);

  font-size: 16px;

  transition: all 0.25s ease;
}

/* VK */
.footer-social__item.vk {
  color: #006eff;
}

/* Telegram */
.footer-social__item.tg {
  color: #2AABEE;
}

/* Email */
.footer-social__item.mail {
  color: #EA4335;
}

/* Hover */
.footer-social__item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-border-strong);
}

.app-form__group--checkbox {
  margin-top: 10px;
}

.app-form__checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
    margin-bottom: 18px;
}

.app-form__checkbox input {
  display: none;
}

/* Кастомный чекбокс */
.app-form__checkbox-box {
  width: 18px;
  height: 18px;
  min-width: 18px;

  border-radius: 4px;
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.04);

  position: relative;
  transition: all 0.2s ease;
}

/* Галочка */
.app-form__checkbox-box::after {
  content: '';
  position: absolute;

  top: 50%;
  left: 50%;

  width: 10px;
  height: 6px;

  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: translate(-50%, -60%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Активное состояние */
.app-form__checkbox input:checked + .app-form__checkbox-box {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.app-form__checkbox input:checked + .app-form__checkbox-box::after {
  opacity: 1;
}

/* Текст */
.app-form__checkbox-text {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* Ссылка */
.app-form__checkbox-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.app-form__checkbox-text a:hover {
  color: var(--color-accent-hover);
}

.graciedigital{color:#e52a31;transition: 0.3s;opacity: 0.6;}
.graciedigital:hover{opacity: 1;}

/* КВИЗ - МОДАЛЬНОЕ ОКНО */
/* =========================================================
   Quiz Modal
========================================================= */

.quiz-modal-dialog {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 1.25rem auto;
}

.quiz-modal {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.quiz-modal__body {
  position: relative;
  padding: 36px 40px 32px;
  min-height: 620px;
}

.quiz-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.quiz-box {
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.quiz-box__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-right: 44px;
}

.quiz-box__badge {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
}

.quiz-box__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.quiz-progress {
  margin-bottom: 30px;
}

.quiz-progress__track {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(211, 30, 37, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-progress__bar {
  width: 14.285%;
  height: 100%;
  background: linear-gradient(90deg, #ff4d43 0%, #d31e25 100%);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.quiz-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.quiz-step {
  display: none;
  flex: 1 1 auto;
}

.quiz-step.active {
  display: block;
}

.quiz-step__content {
  min-height: 340px;
}

.quiz-step__title {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  max-width: 760px;
}

.quiz-step__text {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 700px;
}

.quiz-step__note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 14px;
  align-items: start;
  max-width: 920px;
}

.quiz-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.quiz-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-check__box {
  position: relative;
  top: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #b71c1c;
  background: transparent;
  transition: all 0.25s ease;
}

.quiz-check__text {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
}

.quiz-check:hover .quiz-check__box {
  border-color: #ff4d43;
}

.quiz-check:hover .quiz-check__text {
  color: #ffffff;
}

.quiz-check input:checked + .quiz-check__box {
  background: #d31e25;
  border-color: #d31e25;
  box-shadow: 0 0 0 3px rgba(211, 30, 37, 0.18);
}

.quiz-check input:checked + .quiz-check__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.quiz-check input:checked ~ .quiz-check__text {
  color: #ffffff;
}

.quiz-footer {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.quiz-footer__step {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
}

.quiz-footer__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-btn {
  border: none;
  outline: none;
  box-shadow: none;
  transition: all 0.25s ease;
}

.quiz-btn:focus {
  outline: none;
  box-shadow: none;
}

.quiz-btn--back {
  width: 58px;
  height: 58px;
  background: transparent;
  border: 2px solid rgba(211, 30, 37, 0.8);
  color: #d31e25;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quiz-btn--back:hover:not(:disabled) {
  background: rgba(211, 30, 37, 0.08);
  border-color: #ff4d43;
  color: #ff4d43;
}

.quiz-btn--back:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.quiz-btn--next,
.quiz-btn--submit {
  min-width: 190px;
  height: 58px;
  padding: 0 24px;
  background: linear-gradient(135deg, #ff4338 0%, #d31e25 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quiz-btn--next:hover,
.quiz-btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(211, 30, 37, 0.28);
}

.quiz-btn__text {
  font-size: 16px;
  line-height: 1;
}

.quiz-btn__arrow {
  font-size: 20px;
  line-height: 1;
}

.quiz-lead-form {
  max-width: 640px;
}

.quiz-textarea {
  min-height: 100px;
  resize: vertical;
}

.quiz-success {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

.quiz-success__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff4338 0%, #d31e25 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(211, 30, 37, 0.22);
}

.quiz-success__title {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
}

.quiz-success__text {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

.quiz-success__text a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.quiz-success__text a:hover {
  color: #ff5a50;
  border-color: #ff5a50;
}

@media (max-width: 1199.98px) {
  .quiz-modal-dialog {
    max-width: 980px;
  }

  .quiz-modal__body {
    padding: 34px 30px 30px;
    min-height: 580px;
  }

  .quiz-step__title {
    font-size: 26px;
  }

  .quiz-options-grid {
    column-gap: 40px;
  }
}

@media (max-width: 991.98px) {
  .quiz-modal-dialog {
    max-width: calc(100% - 20px);
  }

  .quiz-modal__body {
    padding: 36px 24px 28px;
    min-height: auto;
  }

  .quiz-box {
    min-height: auto;
  }

  .quiz-box__title {
    font-size: 24px;
  }

  .quiz-progress {
    margin-bottom: 30px;
  }

  .quiz-step__content {
    min-height: auto;
  }

  .quiz-step__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .quiz-options-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 16px;
  }

  .quiz-check__text {
    font-size: 17px;
  }

  .quiz-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .quiz-footer__nav {
    justify-content: space-between;
  }

  .quiz-btn--back {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .quiz-btn--next,
  .quiz-btn--submit {
    min-width: 190px;
    height: 64px;
  }

  .quiz-success__title {
    font-size: 34px;
  }
}

@media (max-width: 575.98px) {
  .quiz-modal-dialog {
    width: calc(100% - 12px);
    margin: 0.5rem auto;
  }

  .quiz-modal {
    border-radius: 20px;
  }

  .quiz-modal__body {
    padding: 26px 16px 22px;
  }

  .quiz-modal__close {
    top: 16px;
    right: 16px;
  }

  .quiz-box__head {
    gap: 10px;
    margin-bottom: 22px;
    padding-right: 34px;
  }

  .quiz-box__badge {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .quiz-box__title {
    font-size: 20px;
  }

  .quiz-progress {
    margin-bottom: 22px;
  }

  .quiz-progress__track {
    height: 6px;
  }

  .quiz-step__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .quiz-step__text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .quiz-check {
    gap: 12px;
  }

  .quiz-check__box {
    width: 21px;
    height: 21px;
    min-width: 21px;
  }

  .quiz-check__text {
    font-size: 16px;
  }

  .quiz-step__note,
  .quiz-footer__step {
    font-size: 13px;
  }

  .quiz-footer__nav {
    gap: 10px;
  }

  .quiz-btn--back {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .quiz-btn--next,
  .quiz-btn--submit {
    min-width: 0;
    width: calc(100% - 64px);
    height: 54px;
    padding: 0 18px;
  }

  .quiz-btn__text {
    font-size: 16px;
  }

  .quiz-btn__arrow {
    font-size: 20px;
  }

  .quiz-success {
    min-height: 360px;
  }

  .quiz-success__icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 18px;
  }

  .quiz-success__title {
    font-size: 28px;
  }

  .quiz-success__text {
    font-size: 16px;
  }
}

.trade-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.trade-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trade-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 25%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.trade-card__content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.trade-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #e0322a;
  border: 0.5px solid rgba(224, 50, 42, 0.4);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.trade-card__title {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.trade-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0 0 18px;
}

.trade-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.trade-card__item {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 4px 11px;
}

.trade-card__item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e0322a;
  margin-right: 6px;
  vertical-align: middle;
}

.trade-card__btn {
  border: 1.5px solid #e0322a;
  color: #e0322a;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}

.trade-card__btn:hover {
  background: #e0322a;
  color: #fff;
}

/* reviews */

.reviews {
  padding: 80px 0;
}

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.reviews__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0322a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviews__label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #e0322a;
  border-radius: 50%;
}

.reviews__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.reviews__subtitle {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.reviews__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.reviews__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.reviews__nav-btn:hover {
  border-color: #e0322a;
  background: #e0322a;
}

.reviews__track-wrap {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews__slide {
  flex: 0 0 calc(25% - 12px);
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 0.5px solid #2a2a2a;
}

.reviews__slide-img-wrap {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #222;
}

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

.reviews__slide-footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0322a;
  flex-shrink: 0;
}

.reviews__slide-caption {
  font-size: 12px;
  color: #888;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.reviews__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.reviews__dot--active {
  background: #e0322a;
  width: 24px;
  border-radius: 3px;
}

/* ===== ДОПОЛНЕНИЯ ДЛЯ СВАЙПА / DRAG ===== */

.reviews__track {
  will-change: transform;
}

.reviews__slide {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.reviews__slide:active {
  cursor: grabbing;
}

/* чтобы img не перехватывал события */
.reviews__slide-img {
  pointer-events: none;
}

/* убираем лаги на мобильных */
.reviews__track-wrap {
  touch-action: pan-y;
}

/* плавность при возврате */
.reviews__track.dragging {
  transition: none !important;
}

/* ===== АДАПТАЦИЯ ПОД МОБИЛКУ ===== */

@media (max-width: 991px) {
  .reviews__slide {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .reviews__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .reviews__nav {
    align-self: flex-end;
  }

  .reviews__slide {
    flex: 0 0 100%;
  }

  .reviews__title {
    font-size: 26px;
  }
}

.catalog-col {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .catalog-col {
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .catalog-col {
    margin-bottom: 28px;
  }
}

/* О нас */
.page-hero--about {
  position: relative;
  padding: 120px 0 72px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.page-hero--about .container {
  position: relative;
  z-index: 2;
}

.page-hero--about .section-title {
  max-width: 760px;
  margin-bottom: 20px;
}

.page-hero--about .section-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-hero__actions .btn {
  min-width: 180px;
}



/* карточки поверх картинки */

.page-hero--about .app-card--dark {
  height: 100%;
  padding: 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4); /* полупрозрачный, чтобы фон был виден */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero--about .app-card--dark h3 {
  color: #fff;
}

.page-hero--about .app-card--dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* адаптив */

@media (max-width: 991px) {
  .page-hero--about {
    padding: 90px 0 56px;
  }
}

@media (max-width: 767px) {
  .page-hero--about {
    padding: 72px 0 44px;
  }

  .page-hero__actions {
    flex-direction: column;
  }

  .page-hero__actions .btn {
    width: 100%;
  }
}

/* остальные секции на странице О НАС */

/* ============================================
   ABOUT PAGE — кастомные стили
   ============================================ */

/* Общие элементы */
.about-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8192c;
}

.about-title {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #aaaaaa;
  margin-bottom: 16px;
}

/* ---- О НАС ---- */
.about-story__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-story__img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-story__badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #e8192c;
  border-radius: 50%;
  text-align: center;
}

.about-story__badge-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-story__badge-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 3px;
}

.about-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #cccccc;
}

.about-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(232, 25, 44, 0.2);
  border: 2px solid #e8192c;
}

/* ---- ЦИФРЫ ---- */
.about-numbers {
  padding: 64px 0;
  background: #161616;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

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

.about-numbers__item {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid #2a2a2a;
}

.about-numbers__item:last-child {
  border-right: none;
}

.about-numbers__val {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.about-numbers__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #888888;
}

/* ---- ЦЕННОСТИ ---- */
.about-value-card {
  padding: 28px 24px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #161616;
  height: 100%;
  transition: border-color 0.25s;
}

.about-value-card:hover {
  border-color: #e8192c;
}

.about-value-card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8192c;
  margin-bottom: 14px;
}

.about-value-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-value-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #888888;
  margin: 0;
}

/* ---- ПРЕИМУЩЕСТВА ---- */
.about-benefit {
  padding: 28px 24px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #161616;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s;
}

.about-benefit:hover {
  border-color: #e8192c;
  transform: translateY(-3px);
}

.about-benefit__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(232, 25, 44, 0.12);
  color: #e8192c;
  margin-bottom: 18px;
}

.about-benefit__icon svg {
  width: 22px;
  height: 22px;
}

.about-benefit__title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-benefit__text {
  font-size: 14px;
  line-height: 1.7;
  color: #888888;
  margin: 0;
}

/* ---- ПРОЦЕСС ---- */
.about-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.about-process__step {
  flex: 1;
  padding: 32px 28px;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
}

.about-process__connector {
  flex: 0 0 40px;
  height: 2px;
  background: #e8192c;
  align-self: center;
  margin-top: -40px;
  opacity: 0.4;
}

.about-process__step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8192c;
  margin-bottom: 16px;
}

.about-process__step-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-process__step-text {
  font-size: 14px;
  line-height: 1.7;
  color: #888888;
  margin: 0;
}

/* ---- КОМАНДА ---- */
.about-member__photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #1e1e1e;
}

.about-member__photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-member:hover .about-member__photo img {
  transform: scale(1.04);
}

.about-member__name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.about-member__role {
  font-size: 13px;
  color: #888888;
}

/* ---- CTA ---- */
.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 52px 56px;
  overflow: hidden;
  position: relative;
}

.about-cta__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #e8192c;
}

.about-cta__content {
  max-width: 520px;
}

.about-cta__title {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.about-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: #aaaaaa;
  margin-bottom: 28px;
}

.about-cta__media {
  flex: 0 0 auto;
  width: 380px;
}

.about-cta__media img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
  .about-title { font-size: 30px; }
  .about-numbers__val { font-size: 38px; }
  .about-process__steps { flex-wrap: wrap; gap: 16px; }
  .about-process__connector { display: none; }
  .about-process__step { flex: 1 1 calc(50% - 8px); }
}

@media (max-width: 991px) {
  .about-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .about-numbers__item { border-right: none; border-bottom: 1px solid #2a2a2a; }
  .about-numbers__item:nth-child(odd) { border-right: 1px solid #2a2a2a; }
  .about-numbers__item:nth-last-child(-n+2) { border-bottom: none; }
  .about-cta__inner { flex-direction: column; padding: 36px 28px 0; text-align: center; }
  .about-cta__content { max-width: 100%; }
  .about-cta__media { width: 280px; }
  .about-story__img { height: 360px; }
}

@media (max-width: 767px) {
  .about-title { font-size: 26px; }
  .about-numbers__grid { grid-template-columns: 1fr 1fr; }
  .about-numbers__val { font-size: 32px; }
  .about-process__step { flex: 1 1 100%; }
  .about-member__photo img { height: 220px; }
  .about-cta__title { font-size: 24px; }
}

/* Buyout Banner */
.buyout-banner {
  padding: 32px 0 48px;
}

.buyout-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  padding: 40px 48px;
  overflow: hidden;
  position: relative;
}

.buyout-banner__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #e8192c;
}

.buyout-banner__content {
  flex: 1 1 auto;
  max-width: 560px;
}

.buyout-banner__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: #e8192c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.buyout-banner__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.buyout-banner__text {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #aaaaaa;
}

.buyout-banner__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.buyout-banner__phone {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.buyout-banner__phone:hover {
  color: #e8192c;
}

.buyout-banner__media {
  flex: 0 0 auto;
  width: 640px;
}

.buyout-banner__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

/* Tablet */
@media (max-width: 991px) {
  .buyout-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 32px 0;
    gap: 0;
  }

  .buyout-banner__inner::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }

  .buyout-banner__content {
    width: 100%;
    max-width: 100%;
    padding-bottom: 28px;
  }

  .buyout-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .buyout-banner__actions .btn {
    width: 100%;
    text-align: center;
  }

  .buyout-banner__phone {
    text-align: center;
    font-size: 16px;
  }

  .buyout-banner__media {
    width: calc(100% + 32px); /* выезжает вправо за край паддинга */
    margin-left: auto;
    margin-right: -32px;
    align-self: flex-end;
  }

  .buyout-banner__media img {
    display: block;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .buyout-banner__inner {
    padding: 28px 24px 0;
  }

  .buyout-banner__title {
    font-size: 22px;
  }

  .buyout-banner__text {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .buyout-banner__media {
     width: calc(100% + 2px);
     margin-right: -94px;
  }
}

/* КОНТАКТЫ СТРАНИЦА */

/* =========================
   CONTACTS PAGE HERO
   ========================= */
.page-hero--contacts {
  padding: 90px 0 72px;
}

.page-hero--contacts .section-head {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero--contacts .section-title {
  margin-bottom: 18px;
}

.page-hero--contacts .section-subtitle {
  max-width: 760px;
  margin: 0 auto;
}

/* =========================
   CONTACTS SECTION
   ========================= */
.contacts-section {
  padding-top: 20px;
}

.contacts-section .section-head {
  max-width: 880px;
  margin-bottom: 36px;
}

.contact-card {
  height: 100%;
}

.contact-card__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contacts-map {
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.contacts-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

/* =========================
   CONTACTS FORM SECTION
   ========================= */
.contacts-form-section {
  padding-top: 10px;
}

.contacts-form-section__content,
.contacts-form-card {
  height: 100%;
}

.contacts-form-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacts-form-section__title {
  margin-top: 18px;
  margin-bottom: 14px;
}

.contacts-form-section__subtitle {
  margin-bottom: 24px;
}

.contacts-form-section__list {
  display: grid;
  gap: 12px;
}

.contacts-form-section__list .app-list__item {
  position: relative;
  padding-left: 18px;
}

.contacts-form-section__list .app-list__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
}

.contacts-form-card {
  padding: 32px;
}

.contacts-request-form .app-form__group {
  margin-bottom: 18px;
}

.contacts-request-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.contacts-request-form .app-form__control {
  width: 100%;
}

.contacts-request-form select.app-form__control {
  appearance: none;
}

.contacts-request-form textarea.app-form__control {
  min-height: 150px;
  resize: vertical;
}

.contacts-request-form__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 8px;
}

.contacts-request-form__note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  max-width: 420px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 991.98px) {
  .page-hero--contacts {
    padding: 72px 0 56px;
  }

  .contacts-map,
  .contacts-map iframe {
    min-height: 360px;
  }

  .contacts-form-card {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .page-hero--contacts {
    padding: 58px 0 42px;
  }

  .contacts-section .section-head,
  .page-hero--contacts .section-head {
    margin-bottom: 28px;
  }

  .contacts-map,
  .contacts-map iframe {
    min-height: 300px;
  }

  .contacts-form-card {
    padding: 20px;
  }

  .contacts-request-form__actions {
    align-items: stretch;
  }

  .contacts-request-form__actions .btn-main {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* blog */

/* =========================
   BLOG PAGE HERO
   ========================= */
.blog-page-hero {
  padding: 90px 0 56px;
}

.blog-page-hero .section-head {
  max-width: 920px;
  margin: 0 auto;
}

.blog-page-hero .app-badge {
  margin-bottom: 18px;
}

.blog-page-hero .section-title {
  margin-bottom: 18px;
}

.blog-page-hero .section-subtitle {
  max-width: 760px;
  margin: 0 auto;
}

/* =========================
   BLOG PAGE
   ========================= */
.blog-page {
  padding-top: 10px;
}

.blog-page__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.blog-page__top .section-head {
  margin-bottom: 0;
  max-width: 720px;
}

/* =========================
   BLOG TABS
   ========================= */
.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-tabs__item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.25s ease;
  cursor: pointer;
}

.blog-tabs__item:hover {
  border-color: rgba(229, 57, 53, 0.45);
  background: rgba(229, 57, 53, 0.08);
}

.blog-tabs__item.is-active {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.2);
}

/* =========================
   BLOG CARD
   ========================= */
.blog-card {
  height: 100%;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111111;
}

.blog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.blog-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.22);
  color: #ff6b66;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__date {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.blog-card__title {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}

.blog-card__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card__title a:hover {
  color: #ff6b66;
}

.blog-card__text {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  flex: 1 1 auto;
}

.blog-card__link {
  align-self: flex-start;
  text-decoration: none;
}

/* =========================
   EMPTY
   ========================= */
.blog-empty {
  margin-top: 6px;
}

.blog-empty__card {
  padding: 40px 24px;
  text-align: center;
}

.blog-empty__title {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.blog-empty__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   PAGINATION
   ========================= */
.blog-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.blog-pagination__item {
  min-width: 46px;
  height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.blog-pagination__item:hover {
  border-color: rgba(229, 57, 53, 0.45);
  background: rgba(229, 57, 53, 0.08);
}

.blog-pagination__item.is-active {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.2);
}

.blog-pagination__item.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* =========================
   HELPERS
   ========================= */
.blog-item.is-hidden {
  display: none !important;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1199.98px) {
  .blog-card__title {
    font-size: 22px;
  }
}

@media (max-width: 991.98px) {
  .blog-page-hero {
    padding: 72px 0 44px;
  }

  .blog-page__top {
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .blog-card__body {
    padding: 22px;
  }
}

@media (max-width: 767.98px) {
  .blog-page-hero {
    padding: 58px 0 36px;
  }

  .blog-tabs {
    width: 100%;
    gap: 10px;
  }

  .blog-tabs__item {
    padding: 11px 16px;
    font-size: 13px;
  }

  .blog-card__body {
    padding: 20px;
  }

  .blog-card__title {
    font-size: 20px;
  }

  .blog-pagination {
    margin-top: 34px;
  }

  .blog-pagination__item {
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}

/* BLOG SINGLE - СТРАНИЦА СТАТЬИ */

/* =========================
   ARTICLE SINGLE
   ========================= */
.article-single {
  padding: 42px 0 90px;
}

.article-single__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.article-single__breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.article-single__breadcrumbs a:hover {
  color: #ff6b66;
}

.article-single__hero {
  margin-bottom: 36px;
}

.article-single__hero-content {
  max-width: 980px;
  margin-bottom: 28px;
}

.article-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.article-single__category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.24);
  color: #ff6b66;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-single__date,
.article-single__reading-time {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.article-single__title {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
}

.article-single__excerpt {
  max-width: 860px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.article-single__hero-image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.article-single__hero-image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

/* =========================
   ARTICLE TOC
   ========================= */
.article-single__toc {
  margin-bottom: 26px;
  padding: 28px 30px;
}

.article-single__toc-title {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.article-single__toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-single__toc-list li {
  position: relative;
  padding-left: 18px;
}

.article-single__toc-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
}

.article-single__toc-list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.article-single__toc-list a:hover {
  color: #ff6b66;
}

/* =========================
   ARTICLE BODY
   ========================= */
.article-single__body {
  padding: 34px 34px;
}

.article-single__body > *:last-child {
  margin-bottom: 0;
}

.article-single__body p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

.article-single__body h2 {
  margin-top: 34px;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
}

.article-single__body h3 {
  margin-top: 26px;
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.article-single__body ul,
.article-single__body ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.article-single__body ul li,
.article-single__body ol li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.article-single__body blockquote {
  margin: 28px 0;
  padding: 24px 26px;
  border-left: 4px solid #e53935;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.article-single__note {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(229, 57, 53, 0.16);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

/* =========================
   CTA
   ========================= */
.article-single__cta {
  margin-top: 26px;
  padding: 34px;
}

.article-single__cta-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.22);
  color: #ff6b66;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-single__cta-title {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
}

.article-single__cta-text {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.article-single__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   BOTTOM
   ========================= */
.article-single__bottom {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.article-single__share,
.article-single__post-nav {
  padding: 26px 28px;
}

.article-single__share-title {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.article-single__share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-single__share-links a {
  min-width: 52px;
  height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.article-single__share-links a:hover {
  background: rgba(229, 57, 53, 0.1);
  border-color: rgba(229, 57, 53, 0.3);
  color: #ff6b66;
}

.article-single__post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-single__post-nav-item {
  display: block;
  padding: 22px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.article-single__post-nav-item:hover {
  border-color: rgba(229, 57, 53, 0.3);
  background: rgba(229, 57, 53, 0.05);
}

.article-single__post-nav-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.52);
}

.article-single__post-nav-title {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================
   SIDEBAR
   ========================= */
.article-sidebar {
  display: grid;
  gap: 20px;
}

.article-sidebar__widget {
  padding: 28px;
}

.article-sidebar__title {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.article-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-sidebar__list li a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.25s ease;
}

.article-sidebar__list li a:hover {
  background: rgba(229, 57, 53, 0.08);
  color: #ff6b66;
}

.article-sidebar__posts {
  display: grid;
  gap: 14px;
}

.article-sidebar__post {
  display: flex;
  gap: 14px;
  text-decoration: none;
  align-items: flex-start;
}

.article-sidebar__post-image {
  flex: 0 0 88px;
  width: 88px;
  height: 72px;
  overflow: hidden;
  border-radius: 14px;
}

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

.article-sidebar__post-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-sidebar__post-category {
  color: #ff6b66;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-sidebar__post-title {
  color: #ffffff;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.article-sidebar__post:hover .article-sidebar__post-title {
  color: #ff6b66;
}

.article-sidebar__text {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1199.98px) {
  .article-single__title {
    font-size: 44px;
  }

  .article-single__body h2 {
    font-size: 30px;
  }
}

@media (max-width: 991.98px) {
  .article-single {
    padding: 32px 0 72px;
  }

  .article-single__title {
    font-size: 38px;
  }

  .article-single__hero-image img {
    height: 440px;
  }

  .article-sidebar {
    margin-top: 24px;
  }

  .article-single__post-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .article-single {
    padding: 24px 0 58px;
  }

  .article-single__breadcrumbs {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .article-single__title {
    font-size: 30px;
    line-height: 1.18;
  }

  .article-single__excerpt {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-single__hero-image img {
    height: 280px;
  }

  .article-single__toc,
  .article-single__body,
  .article-single__cta,
  .article-sidebar__widget,
  .article-single__share,
  .article-single__post-nav {
    padding: 22px 20px;
  }

  .article-single__body h2 {
    font-size: 26px;
  }

  .article-single__body h3 {
    font-size: 22px;
  }

  .article-single__cta-title {
    font-size: 26px;
  }

  .article-single__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-single__cta-actions .btn-main,
  .article-single__cta-actions .btn-outline-main {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .article-sidebar__post {
    align-items: center;
  }
}

.article-single__share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-single__share-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.article-single__share-link svg {
  display: block;
}

.article-single__share-link:hover {
  transform: translateY(-2px);
}

.article-single__share-link--vk {
  color: #07f;
  background: rgba(0, 119, 255, 0.1);
  border-color: rgba(0, 119, 255, 0.24);
}

.article-single__share-link--vk:hover {
  background: rgba(0, 119, 255, 0.16);
  box-shadow: 0 12px 30px rgba(0, 119, 255, 0.18);
}

.article-single__share-link--tg {
  color: #2aabee;
  background: rgba(42, 171, 238, 0.1);
  border-color: rgba(42, 171, 238, 0.24);
}

.article-single__share-link--tg:hover {
  background: rgba(42, 171, 238, 0.16);
  box-shadow: 0 12px 30px rgba(42, 171, 238, 0.18);
}

.article-single__share-link--wa {
  color: #25d366;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.24);
}

.article-single__share-link--wa:hover {
  background: rgba(37, 211, 102, 0.16);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.18);
}

      /* =============================================
         QUIZ SECTION — встроенный квиз
      ============================================= */
      .buyout-quiz-section {
        padding: 72px 0;
        background: #f7f8fa;
        position: relative;
        overflow: hidden;
      }
      .buyout-quiz-section::before {
        content: '';
        position: absolute;
        top: -80px; right: -80px;
        width: 340px; height: 340px;
        border-radius: 50%;
        background: rgba(211,30,37,.05);
        pointer-events: none;
      }

      .quiz-section__head {
        margin-bottom: 40px;
      }
      .quiz-section__badge {
        display: inline-block;
        background: #d31e25;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 4px;
        margin-bottom: 14px;
      }
      .quiz-section__title {
        font-size: clamp(22px, 4vw, 32px);
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.2;
        margin-bottom: 10px;
      }
      .quiz-section__title span { color: #d31e25; }
      .quiz-section__sub {
        color: #666;
        font-size: 15px;
        max-width: 480px;
      }

      /* Квиз-карточка */
      .vq-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 8px 40px rgba(0,0,0,.10);
        overflow: hidden;
        position: relative;
      }
      .vq-card__body {
        display: flex;
        min-height: 380px;
      }
      .vq-card__sidebar {
        width: 220px;
        flex-shrink: 0;
        background: #1a1a1a;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      .vq-manager {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .vq-manager__avatar {
        width: 48px; height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #d31e25;
        flex-shrink: 0;
        background: #333;
        display: flex; align-items: center; justify-content: center;
        color: #fff; font-size: 18px;
      }
      .vq-manager__name {
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
      }
      .vq-manager__role {
        color: #888;
        font-size: 11px;
      }
      .vq-manager__dot {
        display: inline-block;
        width: 7px; height: 7px;
        border-radius: 50%;
        background: #27c93f;
        margin-right: 4px;
      }
      .vq-hint {
        background: rgba(255,255,255,.07);
        border-radius: 10px;
        padding: 14px 16px;
        color: #ccc;
        font-size: 13px;
        line-height: 1.5;
        border-left: 3px solid #d31e25;
      }
      .vq-progress-steps {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .vq-progress-step {
        display: flex;
        align-items: center;
        gap: 8px;
        opacity: .35;
        transition: opacity .3s;
        font-size: 12px;
        color: #fff;
      }
      .vq-progress-step.active { opacity: 1; }
      .vq-progress-step.done { opacity: .6; }
      .vq-progress-step__dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #555;
        flex-shrink: 0;
        transition: background .3s;
      }
      .vq-progress-step.active .vq-progress-step__dot { background: #d31e25; }
      .vq-progress-step.done .vq-progress-step__dot { background: #27c93f; }

      .vq-card__main {
        flex: 1;
        padding: 36px 40px 28px;
        display: flex;
        flex-direction: column;
      }

      /* Шаги квиза */
      .vq-step { display: none; flex-direction: column; flex: 1; }
      .vq-step.active { display: flex; }

      .vq-step__title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 22px;
        line-height: 1.3;
      }

      /* Текстовый инпут */
      .vq-input {
        border: 2px solid #e8e8e8;
        border-radius: 10px;
        padding: 14px 18px;
        font-size: 16px;
        color: #1a1a1a;
        width: 100%;
        transition: border-color .2s;
        outline: none;
        font-family: inherit;
      }
      .vq-input:focus { border-color: #d31e25; }
      .vq-input::placeholder { color: #bbb; }

      /* Слайдер пробега */
      .vq-mileage-val {
        font-size: 28px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 18px;
      }
      .vq-mileage-val span { color: #d31e25; }
      .vq-slider {
        -webkit-appearance: none;
        width: 100%;
        height: 6px;
        border-radius: 3px;
        background: #e8e8e8;
        outline: none;
        cursor: pointer;
      }
      .vq-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 22px; height: 22px;
        border-radius: 50%;
        background: #d31e25;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(211,30,37,.4);
      }
      .vq-slider::-moz-range-thumb {
        width: 22px; height: 22px;
        border-radius: 50%;
        background: #d31e25;
        cursor: pointer;
        border: none;
      }
      .vq-slider-track {
        position: relative;
        margin-top: 8px;
      }
      .vq-slider-labels {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        color: #aaa;
        margin-top: 6px;
      }

      /* Чекбокс-опции */
      .vq-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .vq-option {
        position: relative;
        cursor: pointer;
      }
      .vq-option input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
      }
      .vq-option__label {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border: 2px solid #e8e8e8;
        border-radius: 10px;
        font-size: 14px;
        color: #333;
        transition: all .2s;
        cursor: pointer;
        line-height: 1.3;
        background: #fafafa;
      }
      .vq-option__check {
        width: 18px; height: 18px;
        border-radius: 4px;
        border: 2px solid #ddd;
        flex-shrink: 0;
        display: flex; align-items: center; justify-content: center;
        transition: all .2s;
        background: #fff;
      }
      .vq-option input:checked ~ .vq-option__label {
        border-color: #d31e25;
        background: #fff5f5;
        color: #1a1a1a;
      }
      .vq-option input:checked ~ .vq-option__label .vq-option__check {
        background: #d31e25;
        border-color: #d31e25;
      }
      .vq-option input:checked ~ .vq-option__label .vq-option__check::after {
        content: '';
        display: block;
        width: 5px; height: 9px;
        border: 2px solid #fff;
        border-top: none;
        border-left: none;
        transform: rotate(45deg) translateY(-1px);
      }

      /* Контакт-форма финального шага */
      .vq-contact-intro {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
        border-radius: 12px;
        padding: 20px 24px;
        margin-bottom: 20px;
        color: #fff;
        font-size: 14px;
        line-height: 1.5;
      }
      .vq-contact-intro strong { color: #ff5a5a; }

      .vq-contact-method {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
      }
      .vq-contact-btn {
        flex: 1;
        padding: 12px;
        border: 2px solid #e8e8e8;
        border-radius: 10px;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #333;
        transition: all .2s;
      }
      .vq-contact-btn:hover { border-color: #d31e25; }
      .vq-contact-btn.active { border-color: #d31e25; background: #fff5f5; color: #d31e25; }
      .vq-contact-btn i { font-size: 16px; }

      /* Футер квиза */
      .vq-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid #f0f0f0;
      }
      .vq-progress-bar-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        margin-right: 24px;
      }
      .vq-progress-bar {
        flex: 1;
        height: 4px;
        background: #e8e8e8;
        border-radius: 2px;
        overflow: hidden;
      }
      .vq-progress-bar__fill {
        height: 100%;
        background: #d31e25;
        border-radius: 2px;
        transition: width .4s ease;
      }
      .vq-progress-label {
        font-size: 12px;
        color: #aaa;
        white-space: nowrap;
      }
      .vq-nav {
        display: flex;
        gap: 10px;
        align-items: center;
      }
      .vq-btn-back {
        width: 40px; height: 40px;
        border-radius: 50%;
        border: 2px solid #e8e8e8;
        background: none;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        color: #aaa;
        transition: all .2s;
      }
      .vq-btn-back:hover:not(:disabled) { border-color: #1a1a1a; color: #1a1a1a; }
      .vq-btn-back:disabled { opacity: .3; cursor: not-allowed; }
      .vq-btn-next {
        padding: 0 28px;
        height: 44px;
        background: #d31e25;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        display: flex; align-items: center; gap: 8px;
        transition: background .2s, transform .15s;
      }
      .vq-btn-next:hover { background: #b51920; transform: translateY(-1px); }

      /* Успех квиза */
      .vq-success {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex: 1;
        padding: 20px;
      }
      .vq-success.active { display: flex; }
      .vq-success__icon {
        width: 70px; height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, #d31e25, #ff5a5a);
        display: flex; align-items: center; justify-content: center;
        font-size: 32px;
        color: #fff;
        margin-bottom: 20px;
        box-shadow: 0 8px 24px rgba(211,30,37,.3);
      }
      .vq-success__title {
        font-size: 22px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 10px;
      }
      .vq-success__text {
        color: #666;
        font-size: 15px;
        max-width: 320px;
        margin: 0 auto;
        line-height: 1.6;
      }

      /* =============================================
         SECTION: ПОЧЕМУ ВЫБИРАЮТ НАС (выкуп)
      ============================================= */
      .vykup-why-section {
        padding: 80px 0;
        background: #fff;
      }
      .vykup-why-section .section-subtitle,
      .vykup-types-section .section-subtitle,
      .vykup-examples-section .section-subtitle,
      .vykup-faq-section .section-subtitle{
        color: #292929;
      }
      .vykup-why__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 48px;
      }
      @media (max-width: 991px) { .vykup-why__grid { grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 575px) { .vykup-why__grid { grid-template-columns: 1fr; } }

      .vykup-why-card {
        border: 1.5px solid #f0f0f0;
        border-radius: 16px;
        padding: 28px 24px;
        position: relative;
        overflow: hidden;
        transition: box-shadow .25s, border-color .25s;
        background: #fff;
      }
      .vykup-why-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,.09);
        border-color: #d31e25;
      }
      .vykup-why-card__num {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .1em;
        color: #d31e25;
        text-transform: uppercase;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .vykup-why-card__num::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #f0f0f0;
      }
      .vykup-why-card__icon {
        width: 48px; height: 48px;
        border-radius: 12px;
        background: #fff5f5;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 16px;
      }
      .vykup-why-card__icon svg { width: 24px; height: 24px; color: #d31e25; stroke: #d31e25; }
      .vykup-why-card__title {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 8px;
      }
      .vykup-why-card__text {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
      }

      /* =============================================
         SECTION: КАКИЕ АВТО МЫ ВЫКУПАЕМ
      ============================================= */
      .vykup-types-section {
        padding: 80px 0;
        background: #f7f8fa;
      }
      .vykup-types__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
      }
      @media (max-width: 767px) { .vykup-types__inner { grid-template-columns: 1fr; } }

      .vykup-types__image {
        position: relative;
      }
      .vykup-types__image img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        display: block;
      }
      .vykup-types__image-badge {
        position: absolute;
        bottom: 20px; left: 20px;
        background: #d31e25;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        padding: 8px 16px;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(211,30,37,.4);
      }

      .vykup-types__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .vykup-type-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 16px;
        background: #fff;
        border-radius: 10px;
        border: 1.5px solid #f0f0f0;
        font-size: 14px;
        font-weight: 500;
        color: #1a1a1a;
        transition: border-color .2s, box-shadow .2s;
      }
      .vykup-type-item:hover {
        border-color: #d31e25;
        box-shadow: 0 2px 12px rgba(211,30,37,.10);
      }
      .vykup-type-item__check {
        width: 20px; height: 20px;
        border-radius: 50%;
        background: #d31e25;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
      }
      .vykup-type-item__check svg {
        width: 11px; height: 11px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      /* =============================================
         SECTION: ПРИМЕРЫ ВЫКУПЛЕННЫХ АВТО
      ============================================= */
      .vykup-examples-section {
        padding: 80px 0;
        background: #fff;
      }
      .vykup-examples__track-wrap {
        overflow: hidden;
        position: relative;
        margin-top: 40px;
      }
      .vykup-examples__track {
        display: flex;
        gap: 20px;
        transition: transform .4s cubic-bezier(.4,0,.2,1);
      }
      .vykup-example-card {
        flex: 0 0 calc(25% - 15px);
        min-width: 0;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        border: 1.5px solid #f0f0f0;
        transition: box-shadow .25s;
      }
      .vykup-example-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); }
      @media (max-width: 991px) { .vykup-example-card { flex: 0 0 calc(50% - 10px); } }
      @media (max-width: 575px) { .vykup-example-card { flex: 0 0 100%; } }

      .vykup-example-card__img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        display: block;
        background: #f0f0f0;
      }
      .vykup-example-card__body {
        padding: 18px;
      }
      .vykup-example-card__name {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 6px;
      }
      .vykup-example-card__desc {
        font-size: 13px;
        color: #888;
        line-height: 1.5;
        margin-bottom: 12px;
      }
      .vykup-example-card__price {
        font-size: 17px;
        font-weight: 800;
        color: #d31e25;
      }
      .vykup-example-card__price-label {
        font-size: 11px;
        color: #aaa;
        font-weight: 400;
        display: block;
        margin-bottom: 2px;
      }

      .vykup-examples__nav {
        display: flex;
        gap: 10px;
        margin-top: 28px;
        justify-content: center;
      }
      .vykup-ex-nav-btn {
        width: 42px; height: 42px;
        border-radius: 50%;
        border: 2px solid #e8e8e8;
        background: #fff;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        transition: all .2s;
        color: #333;
      }
      .vykup-ex-nav-btn:hover { border-color: #d31e25; color: #d31e25; }

      /* =============================================
         SECTION: ЭТАПЫ ВЫКУПА
      ============================================= */
      .vykup-steps-section {
        padding: 80px 0;
        background: #1a1a1a;
        position: relative;
        overflow: hidden;
      }
      .vykup-steps-section::before {
        content: '';
        position: absolute;
        top: -120px; right: -120px;
        width: 400px; height: 400px;
        border-radius: 50%;
        background: rgba(211,30,37,.08);
        pointer-events: none;
      }
      .vykup-steps-section .section-title { color: #fff; }
      .buyout-types .section-subtitle{color: rgba(255,255,255,.55);}

      .vykup-steps__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 56px;
        position: relative;
      }
      .vykup-steps__grid::before {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(12.5% + 20px);
        right: calc(12.5% + 20px);
        height: 2px;
        background: linear-gradient(90deg, #d31e25, rgba(211,30,37,.2));
        z-index: 0;
      }
      @media (max-width: 767px) {
        .vykup-steps__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
        .vykup-steps__grid::before { display: none; }
      }
      @media (max-width: 400px) { .vykup-steps__grid { grid-template-columns: 1fr; } }

      .vykup-step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 16px;
        position: relative;
        z-index: 1;
      }
      .vykup-step-item__num {
        width: 56px; height: 56px;
        border-radius: 50%;
        background: #d31e25;
        display: flex; align-items: center; justify-content: center;
        font-size: 20px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(211,30,37,.5);
        flex-shrink: 0;
      }
      .vykup-step-item__title {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
      }
      .vykup-step-item__text {
        font-size: 13px;
        color: rgba(255,255,255,.5);
        line-height: 1.6;
      }

      /* =============================================
         SECTION: FAQ
      ============================================= */
      .vykup-faq-section {
        padding: 80px 0;
        background: #f7f8fa;
      }
      .vykup-faq__list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
      }
      .vykup-faq-item {
        background: #fff;
        border-radius: 14px;
        border: 1.5px solid #f0f0f0;
        overflow: hidden;
        transition: border-color .2s;
      }
      .vykup-faq-item.open { border-color: #d31e25; }
      .vykup-faq-item__q {
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        user-select: none;
        transition: color .2s;
      }
      .vykup-faq-item.open .vykup-faq-item__q { color: #d31e25; }
      .vykup-faq-item__icon {
        width: 28px; height: 28px;
        border-radius: 50%;
        background: #f5f5f5;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        transition: background .2s, transform .3s;
      }
      .vykup-faq-item.open .vykup-faq-item__icon {
        background: #d31e25;
        transform: rotate(45deg);
      }
      .vykup-faq-item__icon svg {
        width: 14px; height: 14px;
        stroke: #666;
        transition: stroke .2s;
      }
      .vykup-faq-item.open .vykup-faq-item__icon svg { stroke: #fff; }
      .vykup-faq-item__a {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .35s;
        font-size: 14px;
        color: #555;
        line-height: 1.7;
      }
      .vykup-faq-item.open .vykup-faq-item__a {
        max-height: 300px;
        padding-bottom: 20px;
      }

      /* =============================================
         ОБЩИЕ ПЕРЕОПРЕДЕЛЕНИЯ ДЛЯ МОБИЛЬНЫХ
      ============================================= */
      @media (max-width: 767px) {
        .vq-card__body { flex-direction: column; }
        .vq-card__sidebar { width: 100%; padding: 20px; flex-direction: row; flex-wrap: wrap; gap: 12px; }
        .vq-progress-steps { display: none; }
        .vq-card__main { padding: 24px 20px 20px; }
        .vq-options { grid-template-columns: 1fr; }
        .vykup-why__grid { gap: 12px; }
      }

/*
=============================================
SECTION: Какие авто выкупаем #2 вариант
=============================================
*/

.buyout-types {
  padding: 80px 0;
  background: #f7f8fa;
}
 
.buyout-types__subtitle {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 0;
}
 
.buyout-types__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
 
/* ---- Карточки типов ---- */
 
.buyout-types__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
 
.buyout-type-card {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .25s, border-color .25s;
}
 
.buyout-type-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
  border-color: #d31e25;
}
 
.buyout-type-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.buyout-type-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: #d31e25;
}
 
.buyout-type-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
 
.buyout-type-card__text {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}
 
/* ---- Блок оценки стоимости ---- */
 
.buyout-types__valuation {
  position: relative;
}
 
.buyout-valuation {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 20px;
  padding: 28px 24px;
}
 
.buyout-valuation__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}
 
.buyout-valuation__image-wrap {
  width: 100%;
}
 
.buyout-valuation__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
 
/* ---- Адаптив ---- */
 
@media (max-width: 991px) {
  .buyout-types__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
 
@media (max-width: 575px) {
  .buyout-types__cards {
    grid-template-columns: 1fr;
  }
}
 
/* =========================================================
   Quiz Step Error
========================================================= */
.quiz-step-error {
    color: #d31e25;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================================
   CAR DETAIL PAGE — FIXED
========================================================= */
.car-detail {
  padding: 34px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(211, 30, 37, 0.14) 0%, rgba(211, 30, 37, 0) 26%),
    linear-gradient(180deg, #111111 0%, #171717 100%);
}

.car-detail .row {
  align-items: flex-start;
}

.car-detail__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.5;
}

.car-detail__breadcrumbs a {
  color: rgba(255, 255, 255, 0.74);
}

.car-detail__breadcrumbs a:hover {
  color: #ffffff;
}

.car-detail__hero {
  margin-bottom: 28px;
}

.car-detail__gallery {
  padding: 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1f1f1f 0%, #181818 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.car-detail__gallery-main {
  overflow: hidden;
  border-radius: 4px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.car-detail__gallery-main img {
  display: block;
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.car-detail__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.car-detail__thumb {
  display: block;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: all 0.25s ease;
  appearance: none;
}

.car-detail__thumb:hover,
.car-detail__thumb.is-active {
  border-color: rgba(211, 30, 37, 0.8);
  box-shadow: 0 8px 22px rgba(211, 30, 37, 0.16);
}

.car-detail__thumb img {
  display: block;
  width: 100%;
  height: 74px;
  object-fit: cover;
}

.car-detail__summary.app-card,
.car-detail__section.app-card,
.car-detail__sidebar-card.app-card {
  height: auto;
  min-height: 0;
}

.car-detail__summary {
  padding: 26px 24px;
}

.car-detail__title {
  margin: 16px 0 12px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.car-detail__subtitle {
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.car-detail__price {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
}

.car-detail__quick-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 0;
}

.car-detail__quick-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.car-detail__quick-list li strong {
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.car-detail__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.car-detail__actions .btn-main,
.car-detail__actions .btn-outline-main {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  font-size: 13px;
}

.car-detail__note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.65;
}

.car-detail__content {
  margin-bottom: 28px;
}

.car-detail__section {
  margin-bottom: 20px;
  padding: 28px 26px;
}

.car-detail__section:last-child {
  margin-bottom: 0;
}

.car-detail__section .section-head {
  margin-bottom: 22px;
}

.car-detail__section .section-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.car-detail__text p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.85;
}

.car-detail__text p:last-child {
  margin-bottom: 0;
}

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

.car-detail__spec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.car-detail__spec-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.car-detail__spec-value {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.car-detail__feature-card {
  height: 100%;
  min-height: unset;
  padding: 22px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #202020 0%, #181818 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.car-detail__feature-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

.car-detail__feature-text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.car-detail__section--cta {
  overflow: hidden;
}

.car-detail__cta-title {
  margin: 16px 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.car-detail__cta-text {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

.car-detail__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.car-detail__sidebar {
  display: grid;
  gap: 16px;
}

.car-detail__sidebar-card {
  padding: 24px 20px;
}

.car-detail__sidebar-title {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.car-detail__sidebar .app-list li {
  font-size: 14px;
  line-height: 1.65;
}

.car-detail__sidebar .app-form__group {
  margin-bottom: 14px;
}

.car-detail__sidebar .app-form__control {
  height: 48px;
  font-size: 14px;
}

.car-detail__sidebar textarea.app-form__control {
  min-height: 96px;
}

.car-detail__sidebar .btn-main {
  min-height: 48px;
  font-size: 14px;
}

.car-detail__contact-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.car-detail__contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.car-detail__contact-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.car-detail__contact-value {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

a.car-detail__contact-value:hover {
  color: var(--color-accent-hover);
}

.car-detail__bottom {
  padding-top: 6px;
}

.car-detail__bottom .section-head {
  margin-bottom: 30px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199.98px) {
  .car-detail__gallery-main img {
    height: 420px;
  }

  .car-detail__title {
    font-size: 24px;
  }

  .car-detail__price {
    font-size: 22px;
  }

  .car-detail__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .car-detail {
    padding: 28px 0 70px;
  }

  .car-detail__hero {
    margin-bottom: 24px;
  }

  .car-detail__gallery-main img {
    height: 380px;
  }

  .car-detail__content {
    margin-bottom: 24px;
  }

  .car-detail__section,
  .car-detail__sidebar-card {
    padding: 24px 20px;
  }
}

@media (max-width: 767.98px) {
  .car-detail {
    padding: 22px 0 56px;
  }

  .car-detail__breadcrumbs {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .car-detail__gallery {
    padding: 10px;
  }

  .car-detail__gallery-main img {
    height: 270px;
  }

  .car-detail__gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .car-detail__thumb img {
    height: 56px;
  }

  .car-detail__title {
    font-size: 24px;
  }

  .car-detail__price {
    font-size: 26px;
  }

  .car-detail__quick-list li {
    font-size: 13px;
  }

  .car-detail__section .section-title {
    font-size: 22px;
  }

  .car-detail__specs-grid {
    grid-template-columns: 1fr;
  }

  .car-detail__cta-title {
    font-size: 24px;
  }

  .car-detail__cta-actions {
    flex-direction: column;
  }

  .car-detail__cta-actions .btn-main,
  .car-detail__cta-actions .btn-outline-main {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .car-detail__gallery-main img {
    height: 220px;
  }

  .car-detail__title {
    font-size: 22px;
  }

  .car-detail__price {
    font-size: 24px;
  }

  .car-detail__quick-list li {
    flex-direction: row;
    align-items: center;
  }

  .car-detail__quick-list li strong {
    text-align: right;
  }

  .car-detail__section,
  .car-detail__sidebar-card {
    padding: 20px 16px;
  }

  .car-detail__feature-card {
    padding: 18px 16px;
  }

  .car-detail__feature-title {
    font-size: 17px;
  }

  .car-detail__text p,
  .car-detail__feature-text,
  .car-detail__cta-text {
    font-size: 14px;
  }
}
ul.wp-block-list {
    padding: 0px 20px;
}