/* ==========================================================================
   CMG Central Motors Group — verstka
   Palette "Вариант 1. Технологичный премиум":
     --dark-blue      #132A7A  основной темно-синий
     --deep-blue      #0B1E5B  глубокий синий
     --electric-blue  #2EA7FF  электрический голубой (accent)
     --white          #F8FAFC  белый
     --graphite       #1E293B  графит
   Theme: светлый контент, тёмные акцентные блоки (hero, page-banner, CTA, footer)
   Fonts:
     Logo    — Exo 2 (Bold) / Rajdhani (SemiBold)
     Premium — Montserrat (Bold, headings) / Manrope (Regular, body) / Plus Jakarta Sans (Bold, numbers & buttons)
   ========================================================================== */

:root {
  --dark-blue: #132A7A;
  --deep-blue: #0B1E5B;
  --electric-blue: #2EA7FF;
  --electric-blue-text: #147ac2;   /* darkened accent for readable text/links on light bg */
  --white: #F8FAFC;
  --graphite: #1E293B;

  /* light theme (page content) */
  --bg-base: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #EEF2FA;
  --text-heading: var(--deep-blue);
  --text-body: rgba(11, 30, 91, 0.68);
  --text-muted: rgba(30, 41, 59, 0.55);
  --border-soft: rgba(11, 30, 91, 0.12);

  /* dark theme (hero / page-banner / CTA / footer accent blocks) */
  --dark-text: var(--white);
  --dark-text-body: rgba(248, 250, 252, 0.72);
  --dark-text-muted: rgba(248, 250, 252, 0.5);
  --dark-border-soft: rgba(248, 250, 252, 0.1);
  --dark-bg-deep: #060B1E;

  --font-logo-title: 'Exo 2', sans-serif;
  --font-logo-sub: 'Rajdhani', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-accent: 'Plus Jakarta Sans', sans-serif;

  --container-w: 1240px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent-text { color: var(--electric-blue); }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--accent {
  background: var(--electric-blue);
  color: var(--deep-blue);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 167, 255, 0.35);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-heading);
}
.btn--outline:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue-text);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  color: var(--electric-blue-text);
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 12px; }
.link-arrow--sm { font-size: 13px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark {
  display: flex;
  color: var(--electric-blue);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__title {
  font-family: var(--font-logo-title);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--white);
}
.site-header .logo__title { color: var(--text-heading); }
.logo__sub {
  font-family: var(--font-logo-sub);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.site-footer .logo__sub { color: var(--dark-text-muted); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__list a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-body);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav__list a:hover { color: var(--electric-blue-text); }

.header__cta { flex-shrink: 0; }
.header__cta-mobile { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  flex-shrink: 0;
}
.lang-switch__btn {
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: background .2s ease, color .2s ease;
}
.lang-switch__btn:hover { color: var(--text-heading); }
.lang-switch__btn.is-active {
  background: var(--electric-blue);
  color: var(--deep-blue);
}
.lang-switch--mobile { display: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--dark-bg-deep) 0%, rgba(11,30,91,0.82) 32%, rgba(11,30,91,0.45) 55%, rgba(11,30,91,0.25) 100%),
    radial-gradient(ellipse at 75% 20%, rgba(46, 167, 255, 0.2), transparent 55%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
}
.hero__illus { display: none; }
.hero__inner {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  max-width: 720px;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark-text-body);
  max-width: 460px;
  margin: 0 0 28px;
}
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(11, 30, 91, 0.25);
}
.hero__controls {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--dark-border-soft);
  color: var(--white);
  transition: background .2s ease, border-color .2s ease;
}
.hero__arrow:hover { background: rgba(248,250,252,0.08); border-color: var(--electric-blue); }
.hero__counter {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--dark-text-muted);
}

/* ---------- page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  color: var(--white);
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(46, 167, 255, 0.2), transparent 55%),
    linear-gradient(160deg, var(--dark-blue) 0%, var(--deep-blue) 55%, var(--dark-bg-deep) 100%);
}
.page-banner--photo .page-banner__bg {
  background:
    linear-gradient(100deg, var(--dark-bg-deep) 0%, rgba(11,30,91,0.85) 30%, rgba(11,30,91,0.5) 55%, rgba(11,30,91,0.28) 100%),
    radial-gradient(ellipse at 75% 20%, rgba(46, 167, 255, 0.2), transparent 55%),
    url('../images/model-vxr.jpg');
  background-size: cover;
  background-position: center 30%;
}
.page-banner__inner { position: relative; }
.breadcrumb {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--dark-text-muted);
  margin: 0 0 18px;
}
.breadcrumb a { color: var(--dark-text-body); }
.breadcrumb a:hover { color: var(--electric-blue); }
.page-banner__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 16px;
}
.page-banner__subtitle {
  font-size: 15px;
  color: var(--dark-text-body);
  max-width: 560px;
  margin: 0;
}
@media (max-width: 860px) {
  .page-banner { padding: 44px 0 40px; }
}

/* ---------- sections (generic) ---------- */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-surface-alt); }

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.5px;
  margin: 0;
}
.section--alt .section__title { margin-bottom: 40px; }

/* ---------- tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-body);
  transition: all .2s ease;
}
.tab:hover { border-color: var(--electric-blue); color: var(--text-heading); }
.tab.is-active {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--deep-blue);
}

/* ---------- model cards ---------- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.model-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px;
  padding-top: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 30, 91, 0.06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.model-card:hover { transform: translateY(-4px); border-color: var(--electric-blue); box-shadow: 0 16px 32px rgba(11, 30, 91, 0.1); }
.model-card__img {
  height: 150px;
  margin: 0 -18px 18px;
  background: var(--bg-surface-alt);
  position: relative;
  overflow: hidden;
}
.model-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.model-card__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--electric-blue-text);
  margin-bottom: 8px;
}
.model-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}
.model-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.model-card__btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(46, 167, 255, 0.12);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.model-card__btn:hover { background: var(--electric-blue); color: var(--deep-blue); }

/* catalog page variant */
.model-card--catalog { padding-bottom: 22px; }
.model-card--catalog .model-card__img { height: 170px; }
.model-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.model-card__specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}
.model-card__specs span { color: var(--text-muted); }
.model-card__specs strong {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--text-heading);
}
.model-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 14px;
}
.model-card__price span {
  font-size: 12px;
  color: var(--text-muted);
}
.model-card__price strong {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-heading);
}
.model-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.btn-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12.5px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-sm--accent { background: var(--electric-blue); color: var(--deep-blue); }
.btn-sm--accent:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(46, 167, 255, 0.3); }
.btn-sm--outline { border: 1px solid var(--border-soft); color: var(--text-heading); }
.btn-sm--outline:hover { border-color: var(--electric-blue); color: var(--electric-blue-text); }

.model-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

/* ---------- featured model (models.html spotlight) ---------- */
.featured-model {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.featured-model__media {
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 48px rgba(11, 30, 91, 0.12);
}
.featured-model__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.featured-model__eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--electric-blue-text);
  margin-bottom: 12px;
}
.featured-model__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
}
.featured-model__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 32px;
}
.featured-model__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}
.featured-model__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}
.featured-model__price span { font-size: 14px; color: var(--text-muted); }
.featured-model__price strong {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 26px;
  color: var(--text-heading);
}
.featured-model__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 960px) {
  .featured-model { grid-template-columns: 1fr; gap: 32px; }
  .featured-model__media { height: 320px; }
}
@media (max-width: 480px) {
  .featured-model__stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .featured-model__actions { flex-direction: column; }
  .featured-model__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__media {
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 20px 48px rgba(11, 30, 91, 0.1);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}
.about__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0 0 32px;
}
.about__facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__media { height: 300px; order: -1; }
}
@media (max-width: 480px) {
  .about__facts { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ---------- production ---------- */
.production__banner {
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
  margin-bottom: 48px;
  box-shadow: 0 20px 48px rgba(11, 30, 91, 0.1);
}
.production__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 30, 91, 0.05);
}
.process-item__num {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 13px;
  color: var(--electric-blue-text);
}
.process-item__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}
.process-item__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .production__banner { height: 240px; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.why-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 30, 91, 0.05);
}
.why-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(46, 167, 255, 0.12);
  color: var(--electric-blue);
  margin-bottom: 6px;
}
.why-item__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}
.why-item__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.why-item__arrow { display: none; }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--electric-blue);
}
.stat__label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- CTA ---------- */
.cta {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-bg-deep));
  border: 1px solid var(--dark-border-soft);
  border-radius: 24px;
  padding: 56px;
  color: var(--white);
}
.cta__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
}
.cta__desc {
  color: var(--dark-text-body);
  font-size: 15px;
  max-width: 360px;
  margin: 0;
}
.cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cta-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--white);
  color: var(--deep-blue);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cta-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24); }
.cta-card--active {
  background: var(--electric-blue);
  color: var(--deep-blue);
}
.cta-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(46, 167, 255, 0.15);
  color: var(--electric-blue);
}
.cta-card--active .cta-card__icon { background: rgba(11, 30, 91, 0.18); color: var(--deep-blue); }
.cta-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}
.cta-card__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(11, 30, 91, 0.65);
}
.cta-card--active .cta-card__desc { color: rgba(11, 30, 91, 0.75); }
.cta-card__arrow {
  margin-top: auto;
  font-family: var(--font-accent);
  font-weight: 700;
}

/* ---------- news ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-card { display: flex; flex-direction: column; gap: 10px; }
.news-card__img {
  height: 140px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--graphite), var(--deep-blue));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
}
.news-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(46,167,255,0.1) 0 2px, transparent 2px 16px);
  pointer-events: none;
}
.news-card__img svg {
  position: relative;
  z-index: 1;
  width: 56%;
  height: auto;
}
.news-card__img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__img--1 { background: linear-gradient(135deg, #17307f, var(--graphite)); }
.news-card__img--2 { background: linear-gradient(135deg, var(--dark-blue), #10193d); }
.news-card__img--3 { background: linear-gradient(135deg, #12235e, var(--graphite)); }
.news-card__img--4 { background: linear-gradient(135deg, #1a2c66, #0d1730); }

.news-card__date {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--electric-blue-text);
}
.news-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--graphite);
  border-top: 1px solid var(--dark-border-soft);
  padding-top: 64px;
  color: var(--white);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer__brand { max-width: 280px; }
.footer__desc {
  font-size: 13.5px;
  color: var(--dark-text-muted);
  margin: 16px 0 20px;
  line-height: 1.6;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--dark-border-soft);
  color: var(--dark-text-body);
  transition: border-color .2s ease, color .2s ease;
}
.footer__social a:hover { border-color: var(--electric-blue); color: var(--electric-blue); }

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li {
  font-size: 13.5px;
  color: var(--dark-text-muted);
}
.footer__col a:hover { color: var(--electric-blue); }
.footer__col--contacts li { line-height: 1.5; }

.footer__bottom { border-top: 1px solid var(--dark-border-soft); padding: 22px 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--dark-text-muted);
}
.footer__bottom-inner a:hover { color: var(--electric-blue); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .header__inner { gap: 14px; }
  .nav__list { gap: 13px; }
  .nav__list a { font-size: 12.5px; }
  .header__cta { padding: 12px 18px; font-size: 13px; }
}

@media (max-width: 860px) {
  .header__cta { display: none; }
  .header__inner > .lang-switch { display: none; }
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--bg-base);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
  }
  .nav__list a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 16px;
  }
  .header__cta-mobile { display: none; }
  .nav.is-open .header__cta-mobile {
    display: inline-flex;
    margin: 8px 24px 0;
    justify-content: center;
  }
  .nav.is-open .lang-switch--mobile {
    display: flex;
    margin: 20px 24px 0;
    align-self: flex-start;
  }

  .cta { grid-template-columns: 1fr; padding: 36px 28px; }
  .cta__cards { grid-template-columns: 1fr; }
  .cta__desc { max-width: none; }

  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-item {
    flex-direction: row;
    align-items: center;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 16px 4px;
    background: transparent;
  }
  .why-item__icon { margin-bottom: 0; width: 36px; height: 36px; flex-shrink: 0; }
  .why-item__label { flex: 1; font-size: 15px; }
  .why-item__desc { display: none; }
  .why-item__arrow {
    display: inline-flex;
    color: var(--electric-blue-text);
    font-family: var(--font-accent);
  }

  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat:last-child { grid-column: 1 / -1; }

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

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .hero { min-height: 560px; }
  .hero__inner { padding-top: 90px; gap: 28px; }

  .model-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  .stats { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
