/* Auto-import: главная — палитра ТЗ */
:root {
  --bg-page: #f7f8fa;
  --bg-card: #ffffff;
  --text: #2b2f33;
  --text-muted: #6b7280;
  --accent: #c8a96a;
  --accent-hover: #b8964f;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(43, 47, 51, 0.06);
  --header-h: 72px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-page);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.section {
  padding: clamp(48px, 6vw, 88px) 0;
}

.section--tight-top {
  padding-top: clamp(32px, 4vw, 48px);
}

.section--tight-bottom {
  padding-bottom: clamp(24px, 3vw, 36px);
}

.banner-160-section{
  border-bottom: 1px solid var(--border);
  padding-top: 48px;
  padding-bottom: 48px;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: 1.125rem;
}

.subtitle {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.site-logo span{
  color: var(--accent);
  font-weight: 400;
}

.site-logo img {
  width: 40px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.site-nav a {
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.site-nav a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent);
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.city-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
}

.city-picker > button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.city-picker > button:hover {
  color: var(--accent-hover);
}

.city-picker__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 130;
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(43, 47, 51, 0.16);
  color: var(--text);
}

.city-picker__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 34px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}

.city-picker__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.city-picker__input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
}

.city-picker__input:focus {
  outline: 2px solid rgba(200, 169, 106, 0.35);
  border-color: var(--accent);
}

.city-picker__status {
  margin: 10px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.city-picker__results {
  display: grid;
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
}

.city-picker__result,
.city-picker__geo {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.city-picker__result:hover,
.city-picker__geo:hover {
  background: rgba(200, 169, 106, 0.08);
  border-color: var(--accent);
  color: var(--accent-hover);
}

.city-picker__geo {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}

.phone-link {
  font-weight: 600;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--accent-hover);
}

.messengers {
  display: flex;
  gap: 8px;
}

.messengers a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.messengers a svg {
  width: 20px;
  height: 20px;
}

.messengers a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 169, 106, 0.08);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 1024px) {
  .site-nav-wrap {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav-wrap.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .site-nav a {
    width: 100%;
    padding: 8px 0;
  }

  .site-header__right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  .city-picker__dropdown {
    left: 0;
    right: auto;
  }

  .city-picker__dropdown::before {
    left: 34px;
    right: auto;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .site-nav-wrap {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 24px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font: inherit;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + clamp(32px, 5vw, 56px));
  padding-bottom: clamp(48px, 6vw, 72px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__bullets {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero__bullets {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .hero__bullets {
    grid-template-columns: 1fr;
  }
}

.hero-bullet {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(43, 47, 51, 0.05);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hero-bullet:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 169, 106, 0.45);
  box-shadow: 0 16px 38px rgba(43, 47, 51, 0.08);
}

.hero-bullet__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.16), rgba(200, 169, 106, 0.07));
  color: var(--accent-hover);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.hero-bullet__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-bullet p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text);
}

.hero__media {
  align-self: start;
  margin-top: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(43, 47, 51, 0.1);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: #dde1e6;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card h3 {
  margin-bottom: 8px;
}

.fit-grid {
  align-items: stretch;
}

.fit-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: 0 14px 42px rgba(43, 47, 51, 0.07);
}

.fit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
}

.fit-card--yes::before {
  background: #16a34a;
}

.fit-card--no::before {
  background: var(--accent);
}

.fit-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fit-card__head h3 {
  margin: 0;
}

.fit-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.fit-card--yes .fit-card__icon {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.fit-card--no .fit-card__icon {
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
}

.fit-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
}

.fit-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.fit-card li:last-child {
  margin-bottom: 0;
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.fit-card--yes li::before {
  content: "✓";
  color: #16a34a;
}

.fit-card--no li::before {
  content: "−";
  color: var(--accent-hover);
}

.conclusion-box {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.12), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.conclusion-box p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--text);
}

/* Brands */
.brands-section {
  background: var(--bg-card);
  border-block: 1px solid var(--border);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f3f4f6;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
  min-height: 104px;
}

.brand-tile:hover {
  background: #fff;
  color: var(--accent-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.brand-tile span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}

.brand-tile:hover span {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-tile .brand-logo {
  position: relative;
  width: 78px;
  height: 34px;
  filter: none;
  opacity: 1;
}

.brand-logo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.brand-logo__img--gold {
  opacity: 0;
}

.brand-tile:hover .brand-logo__img--gold {
  opacity: 1;
}

/* Segment cards 3.4 */
.segment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.segment-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(43, 47, 51, 0.1);
}

.segment-card__img {
  height: 230px;
  background: #e8eaed;
  overflow: hidden;
}

.segment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .segment-card__img {
    height: 210px;
  }
}

.segment-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.segment-card__offer {
  font-weight: 600;
  color: var(--accent-hover);
  font-size: 0.95rem;
}

.segment-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.ui-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.16), rgba(200, 169, 106, 0.07));
  color: var(--accent-hover);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.ui-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.step-card__icon {
  margin-bottom: 12px;
}

.step-card__num {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step-card__label {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card__term {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--accent-hover);
  font-weight: 600;
}

.cost-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.cost-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cost-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent), rgba(200, 169, 106, 0));
  opacity: 0.7;
}

.cost-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 700;
}

.cost-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.cost-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.cost-summary {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.12), rgba(255, 255, 255, 0.7));
  color: var(--text);
  font-weight: 600;
  text-align: center;
}

/* Two columns fears */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .split-2 {
    grid-template-columns: 1fr;
  }
}

.fears-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.fear-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 48px minmax(0, 1.25fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(43, 47, 51, 0.04);
}

.fear-row::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--accent);
}

.fear-row::after {
  content: "→";
  grid-column: 2;
  grid-row: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.12);
  color: var(--accent-hover);
  display: grid;
  place-items: center;
  font-weight: 700;
  justify-self: center;
}

.fear-row__fear {
  position: relative;
  grid-column: 1;
  font-weight: 600;
  color: var(--text);
}

.fear-row__fear::before,
.fear-row__sol::before {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fear-row__fear::before {
  content: "Страх";
  color: #b45309;
}

.fear-row__sol {
  grid-column: 3;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.fear-row__sol::before {
  content: "Как решаем";
  color: var(--accent-hover);
}

@media (max-width: 1024px) {
  .fear-row {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: flex-start;
  }

  .fear-row__fear {
    grid-column: 1;
    grid-row: 1;
  }

  .fear-row::after {
    content: "↓";
    grid-column: 1;
    grid-row: 2;
    justify-self: flex-start;
  }

  .fear-row__sol {
    grid-column: 1;
    grid-row: 3;
  }
}

/* Savings cards */
.savings-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.savings-card__img {
  height: 190px;
  margin: -24px -24px 20px;
  background: #e8eaed;
  overflow: hidden;
}

.savings-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.savings-card__prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  font-size: 0.95rem;
}

.savings-card__save {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-hover);
}

.why-list {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.why-list li {
  margin-bottom: 8px;
}

/* Popular cars */
.popular-section .cards-grid {
  margin-top: 24px;
}

/* Car cards catalog style */
.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-card__img {
  position: relative;
  height: 250px;
  background: #e8eaed;
  overflow: hidden;
}

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: rgba(30, 35, 45, 0.82);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.car-badge--korea {
  background: rgba(0, 71, 171, 0.9);
}

.car-badge--china {
  background: rgba(196, 30, 58, 0.9);
}

.car-badge--europe {
  background: rgba(45, 55, 72, 0.92);
}

.car-badge--usa {
  background: rgba(30, 58, 138, 0.92);
}

.car-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .car-card__img {
    height: 220px;
  }
}

.car-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.car-card__body h3 {
  margin-bottom: 4px;
}

.car-card__body p {
  margin: 0;
}

.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.car-card__price {
  margin: 4px 0 0;
  font-size: 1rem;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.car-specs__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  min-width: 0;
  max-width: 100%;
}

.car-specs__icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--text-muted);
}

.car-specs__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.car-specs__value {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
}

.car-specs__item[hidden] {
  display: none;
}

.car-card__desc {
  min-height: auto;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.15);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 600;
}

.car-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.car-card__actions .btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.9rem;
}

/* CTA section / form */
.cta-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(200, 169, 106, 0.16), transparent 32%),
    linear-gradient(180deg, var(--bg-card) 0%, #f0f1f3 100%);
  border-top: 1px solid var(--border);
}

.cta-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 560px);
  gap: clamp(32px, 6vw, 72px);
}

.cta-section__content p:not(.eyebrow):not(.subtitle) {
  max-width: 580px;
  margin: 0;
  color: var(--text-muted);
}

.form-block {
  max-width: 560px;
  width: 100%;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(43, 47, 51, 0.1);
}

.product-cta {
  text-align: center;
}

.product-cta .subtitle {
  margin-inline: auto;
}

.product-cta .form-block {
  margin: 28px auto 0;
  text-align: left;
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #f9fafb;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.18);
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 16px 0 20px;
}

.form-consent input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.form-main .btn {
  width: 100%;
  min-height: 52px;
}

@media (max-width: 900px) {
  .cta-section__grid {
    grid-template-columns: 1fr;
  }

  .form-block {
    max-width: none;
  }
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Ribbon banner 160 hp */
.banner-160 {
  background: linear-gradient(135deg, #2b2f33, #4a5568);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
}

.banner-160 p {
  margin: 8px 0 0;
  max-width: 560px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.banner-160 h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.banner-160 .btn--primary {
  background: var(--accent);
}

.banner-160 .btn--primary:hover {
  background: var(--accent-hover);
}

.banner-160-section .banner-160 {
  box-shadow: 0 12px 40px rgba(43, 47, 51, 0.18);
}

.banner-160__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav__active {
  color: var(--accent);
  font-weight: 600;
}

.collection-160-hero__lead {
  max-width: 720px;
}

.power-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.power-benefits__item {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.power-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--bg-page);
  font-weight: 700;
  color: var(--accent);
}

.collection-160-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.collection-160-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.collection-160-cta .country-cta {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.country-catalog {
  background: var(--bg-card);
  border-block: 1px solid var(--border);
}

.country-catalog__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.country-catalog__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.country-catalog__count {
  margin: 16px 0 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.country-catalog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.country-page-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.country-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.country-page-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.country-page-btn.is-active {
  border-color: var(--accent);
  background: rgba(200, 169, 106, 0.12);
  color: var(--accent-hover);
}

.country-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.country-page-btn--nav {
  min-width: auto;
  padding: 0 16px;
}

.country-catalog__locked select:disabled {
  opacity: 1;
  color: var(--text);
  background: var(--bg-page);
  cursor: default;
}

.country-brand-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.country-brand-chip:hover,
.country-brand-chip.is-active {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: rgba(200, 169, 106, 0.1);
}

.car-card.is-filtered-out,
.car-card.is-page-hidden {
  display: none;
}

.btn--sm {
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 12px 0 20px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-messengers {
  margin-top: 2px;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 47, 51, 0.45);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: var(--radius);
  width: min(560px, 100%);
  margin: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-page);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
}

.modal__close:hover {
  background: var(--border);
}

.modal__body {
  padding: 32px 28px 28px;
  max-height: min(85vh, 720px);
  overflow-y: auto;
}

.modal__body h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  padding-right: 36px;
}

.modal-benefits {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.modal-examples {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
}

.form-success {
  padding: 24px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  color: #065f46;
  text-align: center;
  display: none;
}

.form-success.is-visible {
  display: block;
}

.form-main.is-hidden {
  display: none;
}

.recaptcha-placeholder {
  margin: 12px 0;
  padding: 12px;
  background: var(--bg-page);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

form[data-lead-form]:not(.is-consultation) [data-form-consultation-only] {
  display: none;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Внутренние страницы */
.page-main {
  padding-top: var(--header-h);
}

.page-hero {
  padding: clamp(36px, 5vw, 56px) 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero .subtitle {
  margin-bottom: 0;
}

.page-hero .btn-row {
  margin-top: 24px;
}

.remote-hero {
  text-align: center;
}

.remote-hero .subtitle {
  margin-inline: auto;
}

.page-hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.icon-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-point p,
.icon-point span:last-child {
  margin: 0;
  padding-top: 10px;
  color: var(--text-muted);
  line-height: 1.5;
}

.icon-point .ui-icon {
  margin-top: 2px;
}

.remote-important {
  max-width: 860px;
  margin-inline: auto;
}

/* Related blog block */
.related-blog {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.related-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.related-blog__card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 700;
}

.related-blog__card span {
  margin-top: 16px;
  color: var(--accent-hover);
  font-size: 0.88rem;
}

.related-blog__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Blog article template */
.article-page .page-hero {
  text-align: center;
}

.article-page .page-hero .subtitle {
  margin-inline: auto;
}

.article-shell {
  max-width: 840px;
  margin-inline: auto;
}

.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent-hover);
  font-weight: 700;
}

.article-content {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.article-content h2 {
  margin-top: 34px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.article-content p,
.article-content li {
  color: var(--text-muted);
  line-height: 1.7;
}

.article-content p {
  margin: 0 0 14px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 18px;
  padding-left: 1.25rem;
}

.article-cover,
.article-figure {
  margin: 0 0 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-page);
}

.article-figure {
  margin: 28px 0;
}

.article-cover img,
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-cover figcaption,
.article-figure figcaption {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  border-top: 1px solid var(--border);
}

.article-lead {
  color: var(--text) !important;
  font-size: 1.08rem;
}

.article-callout {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 106, 0.08);
  color: var(--text) !important;
  font-weight: 700;
}

.article-table {
  margin: 18px 0 24px;
}

.article-cta {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 30px);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.16), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(200, 169, 106, 0.28);
  text-align: center;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta p {
  max-width: 620px;
  margin-inline: auto;
}

.article-cta .btn {
  margin-top: 10px;
}

/* Guarantees page */
.guarantees-hero {
  text-align: center;
}

.guarantees-hero .subtitle {
  margin-inline: auto;
}

.guarantees-hero__note {
  max-width: 820px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 106, 0.1);
  color: var(--text);
  font-weight: 700;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guarantee-cards article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.guarantee-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
  font-weight: 700;
}

.guarantee-cards h3 {
  margin-bottom: 10px;
}

.guarantee-cards p,
.guarantee-docs p {
  margin: 0;
  color: var(--text-muted);
}

.guarantee-money-section {
  background: var(--bg-card);
  border-block: 1px solid var(--border);
}

.guarantee-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guarantee-list div {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--text-muted);
}

.guarantee-list div::before {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 18px;
  color: #16a34a;
  font-weight: 700;
}

.guarantee-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 106, 0.08);
  color: var(--text);
  font-weight: 700;
}

.guarantee-docs {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.guarantee-docs .guarantee-note {
  grid-column: 1 / -1;
  margin-top: 0;
}

.guarantee-docs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guarantee-docs li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
  color: var(--text-muted);
}

.guarantee-docs li:last-child {
  margin-bottom: 0;
}

.guarantee-docs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-hover);
  font-weight: 700;
}

.guarantee-table {
  margin-top: 24px;
}

.guarantee-table td:first-child {
  width: 34%;
  color: var(--text);
  font-weight: 700;
}

.guarantee-cta .form-block {
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .guarantee-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .guarantee-list,
  .guarantee-docs {
    grid-template-columns: 1fr;
  }

  .guarantee-table td:first-child {
    width: auto;
  }
}

@media (max-width: 560px) {
  .guarantee-cards {
    grid-template-columns: 1fr;
  }
}

/* Documents page */
.documents-hero {
  text-align: center;
}

.documents-hero .subtitle {
  margin-inline: auto;
}

.documents-slider,
.team-slider {
  position: relative;
}

.documents-swiper,
.team-swiper {
  overflow: hidden;
  padding-bottom: 4px;
}

.documents-swiper .swiper-slide,
.team-swiper .swiper-slide {
  height: auto;
}

.document-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.document-card__preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f5f6f8;
  cursor: zoom-in;
}

.document-card__preview img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.document-card__preview:hover img {
  transform: scale(1.03);
}

.document-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.document-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
  font-size: 0.82rem;
  font-weight: 700;
}

.document-card h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.document-card p {
  margin: 0;
  color: var(--text-muted);
}

.documents-slider__controls,
.team-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}


.documents-slider__btn,
.team-slider__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.documents-slider__btn:hover:not(:disabled),
.team-slider__btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.documents-slider__btn:disabled,
.documents-slider__btn.swiper-button-disabled,
.team-slider__btn:disabled,
.team-slider__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.documents-slider__pagination,
.team-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 80px;
}

.documents-slider__pagination .swiper-pagination-bullet,
.team-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.35);
  opacity: 1;
  transition: transform 0.2s, background 0.2s;
}

.documents-slider__pagination .swiper-pagination-bullet-active,
.team-slider__pagination .swiper-pagination-bullet-active {
  transform: scale(1.2);
  background: var(--accent);
}

/* About page */
.about-hero {
  text-align: center;
}

.about-hero .subtitle {
  margin-inline: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stats article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.about-stats strong {
  display: block;
  color: var(--accent-hover);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.team-card > div {
  flex: 1;
}

.team-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card > div {
  padding: 20px;
}

.team-card h3 {
  margin-bottom: 6px;
}

.team-card p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Reviews page */
.reviews-hero {
  text-align: center;
}

.reviews-hero .subtitle {
  margin-inline: auto;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.reviews-rating,
.reviews-count {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #fbfbfc);
  box-shadow: var(--shadow);
}

.reviews-rating strong,
.reviews-count strong {
  display: block;
  color: var(--accent-hover);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
}

.reviews-rating span,
.reviews-count span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-weight: 700;
}

.reviews-rating p,
.reviews-count p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.reviews-section {
  margin-top: 48px;
}

.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.reviews-more .btn {
  min-width: min(100%, 280px);
  justify-content: center;
}

.reviews-more[hidden],
.reviews-more [hidden] {
  display: none !important;
}

.review-extra.is-hidden {
  display: none !important;
}

.video-reviews,
.review-platforms,
.message-strip,
.text-reviews {
  display: grid;
  gap: 16px;
}

.video-reviews {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-platforms {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.message-strip,
.text-reviews {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-review,
.review-platform-card,
.text-reviews article,
.message-strip article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.review-platform-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.review-platform-card__shot {
  overflow: hidden;
  background: #f5f6f8;
  border-bottom: 1px solid var(--border);
}

.review-shot,
.message-card__shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.review-shot img,
.message-card__shot img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.review-shot img {
  height: 180px;
}

.message-card__shot img {
  height: 210px;
}

.review-shot:hover img,
.message-card__shot:hover img {
  transform: scale(1.03);
}

.review-platform-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.review-platform-card__body .btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.video-review {
  padding: 14px;
}

.video-review__media {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #111;
}

.video-review__media video,
.video-review__media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.video-review h3,
.video-review p {
  padding-inline: 8px;
}

.video-reviews p,
.review-platforms p,
.text-reviews p,
.message-strip p {
  color: var(--text-muted);
}

.review-platform-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.platform-rating,
.platform-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 0.85rem;
}

.platform-rating {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 30px;
  background: rgba(200, 169, 106, 0.18);
}

.platform-rating::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: var(--rating, 0%);
  border-radius: inherit;
  background: rgba(200, 169, 106, 0.36);
}

.platform-tag {
  align-self: flex-start;
  background: rgba(200, 169, 106, 0.18);
}

.message-strip {
  padding-bottom: 8px;
}

.message-card {
  position: relative;
  background: #f9fafb;
  overflow: hidden;
  padding: 0;
}

.message-strip span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(43, 47, 51, 0.62);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.message-card:hover span,
.message-card:focus-within span {
  opacity: 1;
}

.text-reviews strong {
  display: block;
  margin-top: 16px;
  color: var(--text);
}

/* Client reviews (platforms) */
.client-reviews__title {
  margin: 0 0 24px;
  text-align: center;
}

.client-reviews__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fbfbfc);
  box-shadow: var(--shadow);
}

.client-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.client-reviews__summary strong {
  color: var(--accent-hover);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.client-reviews__summary span {
  color: var(--text-muted);
  font-weight: 600;
}

.client-reviews__summary p {
  width: 100%;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.client-reviews__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.client-reviews__filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.client-reviews__filter span {
  color: var(--accent-hover);
  font-size: 0.8rem;
}

.client-reviews__filter:hover,
.client-reviews__filter.is-active {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: rgba(200, 169, 106, 0.1);
}

.client-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.client-review-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.client-review-card.is-filtered-out,
.client-review-card.is-hidden {
  display: none;
}

.client-review-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.client-review-card__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.16);
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 0.95rem;
}

.client-review-card__meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.95rem;
}

.client-review-card__meta time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.client-review-card__platform {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.client-review-card__platform--yandex {
  background: rgba(255, 59, 48, 0.1);
  color: #c62828;
}

.client-review-card__platform--2gis {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}

.client-review-card__platform--google {
  background: rgba(26, 115, 232, 0.1);
  color: #1565c0;
}

.client-review-card__platform--social {
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
}

.client-review-card__text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .video-reviews,
  .review-platforms,
  .message-strip,
  .text-reviews,
  .client-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-reviews__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .video-reviews,
  .review-platforms,
  .message-strip,
  .text-reviews,
  .client-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* Payment page */
.payment-timeline {
  display: grid;
  gap: 18px;
}

.payment-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.payment-step__icon {
  width: 50px;
  height: 50px;
}

.payment-step__label {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.payment-step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.payment-step h2 {
  margin-bottom: 10px;
}

.payment-step p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.payment-step ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.payment-note {
  padding: 14px 16px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 106, 0.08);
  color: var(--text) !important;
  font-weight: 600;
}

.credit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.credit-example {
  padding: 26px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.14), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow);
}

.credit-example h3 {
  margin-bottom: 18px;
}

.credit-example ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.credit-example li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 169, 106, 0.25);
}

.credit-example li:last-child {
  border-bottom: none;
}

.credit-example span {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .credit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .payment-step {
    grid-template-columns: 1fr;
  }
}

/* Country landing pages */
.country-hero {
  padding: clamp(44px, 6vw, 76px) 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(200, 169, 106, 0.16), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--bg-page) 100%);
  border-bottom: 1px solid var(--border);
}

.country-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.country-hero__content .subtitle {
  margin-bottom: 24px;
}

.country-hero__media {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(43, 47, 51, 0.12);
}

.country-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.country-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.country-stats div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.country-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.country-stats span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.country-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.country-benefits article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.country-benefits .ui-icon {
  margin-bottom: 16px;
}

.country-benefits span:not(.ui-icon) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 700;
}

.country-benefits p,
.section-heading-row p,
.delivery-panel p,
.country-cta p {
  color: var(--text-muted);
}

.country-benefits h3 {
  margin-bottom: 8px;
}

.country-benefits p {
  margin: 0;
}

.country-process {
  background: var(--bg-card);
  border-block: 1px solid var(--border);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading-row p {
  max-width: 520px;
  margin: 0;
}

.delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #fbfbfc);
  box-shadow: var(--shadow);
}

.delivery-panel p {
  margin: 0;
}

.delivery-panel__list {
  display: grid;
  gap: 12px;
}

.delivery-panel__list span {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text);
  font-weight: 600;
}

.delivery-panel__list .ui-icon {
  width: 38px;
  height: 38px;
}

.delivery-panel__list .ui-icon svg {
  width: 18px;
  height: 18px;
}

.delivery-panel__meta div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.delivery-panel__meta .ui-icon {
  width: 40px;
  height: 40px;
  margin-top: 2px;
}

.delivery-panel__meta .ui-icon svg {
  width: 20px;
  height: 20px;
}

.delivery-panel__meta__text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.delivery-panel__meta__text span {
  color: var(--text-muted);
}

.delivery-panel__meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 8px;
}

.delivery-panel__meta > div {
  padding: 18px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: var(--radius);
  background: rgba(200, 169, 106, 0.08);
}

.country-cta {
  margin-top: 32px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.14), rgba(255, 255, 255, 0.86));
  text-align: center;
  box-shadow: var(--shadow);
}

.country-cta.documents-cta,
.country-cta.about-cta {
  margin-top: 28px;
}

.country-cta p {
  max-width: 720px;
  margin: 0 auto 22px;
}

@media (max-width: 900px) {
  .country-hero__grid,
  .delivery-panel {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row p {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .country-stats {
    grid-template-columns: 1fr;
  }

  .delivery-panel__meta {
    grid-template-columns: 1fr;
  }
}

.prose {
  max-width: 720px;
}

.prose > * {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.prose h2,
.prose h3 {
  color: var(--text);
  margin-top: 2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

/* Горизонтальный скролл «популярные марки» */
.brands-scroll-wrap {
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}

.brands-scroll {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.brands-scroll a {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-page);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.brands-scroll a:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: rgba(200, 169, 106, 0.08);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.filters-grid label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.filters-grid select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
}

/* FAQ аккордеон */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.accordion details {
  border-bottom: 1px solid var(--border);
}

.accordion details:last-child {
  border-bottom: none;
}

.accordion summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion .accordion__body {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.accordion .accordion__body p {
  margin: 0 0 10px;
}

.accordion .accordion__body p:last-child {
  margin-bottom: 0;
}

.accordion .accordion__body ul {
  margin: 0 0 10px;
  padding-left: 1.2rem;
}

.accordion .accordion__body a {
  color: var(--accent-hover);
  font-weight: 700;
}

/* Таблицы */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.table-simple {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table-simple th,
.table-simple td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table-simple th {
  background: var(--bg-page);
  font-weight: 600;
  color: var(--text);
}

.table-simple tr:last-child td {
  border-bottom: none;
}

/* Product gallery */
.product-gallery {
  min-width: 0;
}

.product-gallery__main-wrap {
  position: relative;
}

.product-gallery__main-wrap .car-badge {
  z-index: 3;
  pointer-events: none;
}

.product-gallery__main {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px rgba(43, 47, 51, 0.14);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.product-gallery__nav:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: #fff;
}

.product-gallery__nav--prev {
  left: 12px;
}

.product-gallery__nav--next {
  right: 12px;
}

.product-gallery__main img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-gallery-slider {
  position: relative;
  margin-top: 10px;
}

.product-gallery-swiper {
  overflow: hidden;
}

.product-gallery-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.product-gallery-swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 calc(33.333% - 6px);
  scroll-snap-align: start;
}

@media (min-width: 480px) {
  .product-gallery-swiper:not(.swiper-initialized) .swiper-slide {
    flex-basis: calc(25% - 6px);
  }
}

@media (min-width: 640px) {
  .product-gallery-swiper:not(.swiper-initialized) .swiper-slide {
    flex-basis: calc(20% - 7px);
  }
}

.product-gallery-swiper .swiper-slide {
  height: auto;
}

.product-gallery-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.product-gallery-slider__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.product-gallery-slider__btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.product-gallery-slider__btn:disabled,
.product-gallery-slider__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-gallery-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 80px;
}

.product-gallery-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.35);
  opacity: 1;
  transition: transform 0.2s, background 0.2s;
}

.product-gallery-slider__pagination .swiper-pagination-bullet-active {
  transform: scale(1.2);
  background: var(--accent);
}

.product-gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.product-gallery__thumb:hover {
  transform: translateY(-1px);
}

.product-gallery__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(15, 23, 42, 0.88);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 110px);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.gallery-lightbox__btn {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.gallery-lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.gallery-lightbox__close {
  top: 22px;
  right: 22px;
}

.gallery-lightbox__prev {
  left: 22px;
}

.gallery-lightbox__next {
  right: 22px;
}

.gallery-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .product-gallery__nav {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .product-gallery__nav--prev {
    left: 8px;
  }

  .product-gallery__nav--next {
    right: 8px;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox__btn {
    width: 40px;
    height: 40px;
  }
}

.product-summary {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(200, 169, 106, 0.18), transparent 34%),
    var(--bg-card);
  box-shadow: 0 18px 55px rgba(43, 47, 51, 0.08);
}

.product-summary h2 {
  margin-bottom: 20px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-specs div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(247, 248, 250, 0.78);
}

.product-specs span,
.product-price span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-specs strong {
  color: var(--text);
}

.product-price {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.16), rgba(200, 169, 106, 0.06));
  border: 1px solid rgba(200, 169, 106, 0.28);
}

.product-price strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.product-price p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-summary__note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-summary__actions {
  flex-direction: column;
  margin-top: 22px;
}

.product-summary__actions .btn {
  width: 100%;
}

.product-interest {
  padding: clamp(28px, 4vw, 44px) 0;
}

.product-interest h2 {
  margin-bottom: 10px;
}

.product-interest .prose {
  margin-bottom: 0;
}

.inspection-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  box-shadow: var(--shadow);
}

.inspection-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.inspection-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.inspection-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
}

.inspection-item__icon.ui-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.16), rgba(200, 169, 106, 0.07));
  color: var(--accent-hover);
  font-weight: 400;
}

.inspection-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.inspection-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.inspection-item--wide {
  grid-column: 1 / -1;
  border-bottom: none;
}

@media (max-width: 520px) {
  .product-specs {
    grid-template-columns: 1fr;
  }

  .inspection-list {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .inspection-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .inspection-item:last-child {
    border-bottom: none;
  }
}

/* Документы: превью */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.doc-thumb {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-page);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.doc-thumb:hover {
  box-shadow: var(--shadow);
}

.doc-thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.doc-thumb figcaption {
  padding: 10px;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted);
}

/* Карта-заглушка */
.map-placeholder {
  height: 320px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contacts page */
.contacts-hero {
  text-align: center;
}

.contacts-hero .subtitle {
  margin-inline: auto;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.contact-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-hover);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-card a,
.contact-card strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-card__links a {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.95rem;
}

.contact-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contacts-map {
  margin-top: 16px;
}

.contacts-form {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contacts-form .btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .contacts-form {
    position: static;
  }
}

@media (max-width: 640px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

/* Квиз */
.quiz {
  max-width: 520px;
  margin-inline: auto;
}

.quiz__progress {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.quiz__bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.quiz__bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.quiz__step {
  display: none;
}

.quiz__step.is-active {
  display: block;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 14px 18px;
  text-align: left;
  font: inherit;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.quiz-option:hover {
  border-color: var(--accent);
  background: rgba(200, 169, 106, 0.08);
}

.quiz-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.stat-pill {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.stat-pill span {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 6px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
}

.sitemap-list a {
  font-weight: 600;
  color: var(--accent-hover);
}

.sitemap-list a:hover {
  text-decoration: underline;
}

.sitemap-list code {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-page);
  padding: 2px 8px;
  border-radius: 4px;
}
