:root {
  --ink: #111111;
  --muted: #696f78;
  --line: #e4e6ea;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --red: #d71920;
  --red-dark: #a50f15;
  --dark: #17191d;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
article,
div,
p,
h1,
h2,
h3,
span,
small,
li,
dd {
  overflow-wrap: anywhere;
}

.page-shell {
  min-height: 70vh;
}

.hero-official,
.product-hero {
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: min(720px, 76vh);
  padding: 96px 7vw;
}

.hero-official > div,
.product-hero > div {
  max-width: 760px;
}

.hero-official p,
.product-hero p,
.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-official h1,
.product-hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: .98;
  margin: 14px 0 18px;
}

.hero-official span,
.product-hero span {
  display: block;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45;
  max-width: 680px;
}

.primary-button,
.secondary-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
}

.primary-button {
  background: var(--red);
  color: #fff;
  margin-top: 24px;
}

.secondary-button {
  background: #111;
  color: #fff;
  margin-top: 24px;
}

.mmv-brand img {
  height: 64px;
  width: auto;
}

.mmv-brand-seal {
  border-left: 1px solid var(--line);
  font-weight: 900;
  padding-left: 18px;
  text-transform: uppercase;
}

.social-icon {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  overflow: hidden;
  width: 48px;
}

.social-icon img {
  height: 25px;
  width: 25px;
}

.social-icon.call {
  background: var(--red);
  color: #fff;
  font-size: 20px;
}

.car-grid,
.used-car-grid,
.variant-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.car-card,
.used-car-card,
.variant-card,
.contact-panel,
.official-form,
.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(17, 19, 23, .08);
  overflow: hidden;
}

.car-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.car-card:hover {
  box-shadow: 0 24px 60px rgba(17, 19, 23, .16);
  transform: translateY(-6px);
}

.car-card img,
.used-car-card img,
.variant-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.car-card div,
.used-car-card div,
.variant-card div {
  padding: 20px;
}

.car-card span,
.used-car-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.car-card h3,
.used-car-card h3,
.variant-card h2 {
  font-size: 24px;
  margin: 8px 0;
}

.used-price,
.variant-card strong {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.used-car-card dl,
.rolling-cost-result dl,
.contact-panel dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0;
}

.used-car-card dt,
.rolling-cost-result dt,
.contact-panel dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.used-car-card dd,
.rolling-cost-result dd,
.contact-panel dd {
  font-weight: 800;
  margin: 0;
}

.lead-band {
  background: var(--soft);
}

.official-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.official-form label {
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.official-form input,
.official-form select,
.official-form textarea,
.admin-form-grid input,
.admin-form-grid select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.rolling-cost-layout,
.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
}

.rolling-cost-result,
.contact-panel {
  padding: 28px;
}

.rolling-cost-total {
  background: #111;
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: 8px;
  padding: 22px;
}

.rolling-cost-total strong {
  color: #fff;
  font-size: clamp(30px, 5vw, 48px);
}

.price-table-wrap,
.admin-table-wrap {
  overflow-x: auto;
}

.price-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
}

.price-table th {
  background: var(--soft);
  font-weight: 900;
}

.mmv-footer {
  align-items: center;
  background: #111;
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 32px 7vw;
}

.footer-socials,
.floating-contact {
  display: flex;
  gap: 10px;
}

.floating-contact {
  bottom: 18px;
  position: fixed;
  right: 18px;
  z-index: 80;
}

.success-note,
.danger-note {
  border-radius: 14px;
  display: block;
  margin: 0 0 18px;
  padding: 14px 16px;
}

.success-note {
  background: #eaf8ef;
  color: #157347;
}

.danger-note {
  background: #fff2f2;
  color: #b00020;
}

.admin-body {
  background: #f3f5f8;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  max-width: 460px;
  width: 100%;
}

.admin-sidebar {
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100vh;
  left: 0;
  padding: 24px;
  position: fixed;
  top: 0;
  width: 250px;
}

.admin-sidebar strong {
  font-size: 22px;
  margin-bottom: 20px;
}

.admin-sidebar a {
  border-radius: 12px;
  padding: 13px 14px;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  background: var(--red);
}

.admin-main {
  margin-left: 250px;
  padding: 30px;
}

.admin-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-card {
  margin-bottom: 22px;
  padding: 22px;
}

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

.admin-form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-select-line {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 18px;
  padding: 16px;
}

.admin-select-line label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.admin-select-line select {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 12px;
}

.variant-edit-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .mmv-header {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 14px 22px;
  }

  .mmv-nav,
  .mmv-actions {
    flex-wrap: wrap;
  }

  .car-grid,
  .used-car-grid,
  .variant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rolling-cost-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-official,
  .product-hero {
    min-height: 620px;
    padding: 82px 22px 48px;
  }

  .mmv-brand {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 64px 1fr;
  }

  .mmv-brand-seal {
    display: none;
  }

  .mmv-dealer {
    display: grid;
  }

  .mmv-hotline {
    width: 100%;
  }

  .mmv-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .car-grid,
  .used-car-grid,
  .variant-grid,
  .used-car-card dl,
  .rolling-cost-result dl,
  .contact-panel dl,
  .admin-form-grid,
  .variant-edit-row {
    grid-template-columns: 1fr;
  }

  .mmv-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-sidebar {
    height: auto;
    position: static;
    width: auto;
  }

  .admin-main {
    margin-left: 0;
    padding: 16px;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.mmv-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 30px rgba(17, 19, 23, 0.05);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(360px, 1.2fr) auto minmax(160px, 0.55fr);
  min-height: 96px;
  padding: 14px 48px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.mmv-header::before {
  background: var(--red);
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.mmv-logo {
  align-items: center;
  display: flex;
  gap: 24px;
  min-width: 0;
}

.mmv-logo img {
  height: 58px;
  object-fit: contain;
  width: 190px;
}

.mmv-logo strong,
.mmv-logo small,
.mmv-logo em {
  display: block;
  line-height: 1.15;
}

.mmv-logo strong {
  color: #111;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.mmv-logo em {
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  margin-top: 5px;
  text-transform: uppercase;
}

.mmv-logo small {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.mmv-dealer-text {
  border-left: 2px solid #9aa0a8;
  display: grid;
  padding-left: 24px;
}

.mmv-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.mmv-nav > a,
.mmv-nav-item > a {
  color: #20242a;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 54px;
  align-items: center;
  text-transform: uppercase;
}

.mmv-nav > a:hover,
.mmv-nav-item > a:hover {
  color: var(--red);
}

.mmv-nav-item {
  position: relative;
}

.mmv-mega,
.mmv-simple-menu {
  background: #fff;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}

.mmv-has-mega:hover .mmv-mega,
.mmv-has-menu:hover .mmv-simple-menu,
.mmv-has-mega:focus-within .mmv-mega,
.mmv-has-menu:focus-within .mmv-simple-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mmv-mega {
  width: min(1080px, calc(100vw - 48px));
}

.mmv-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mmv-mega-card {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  min-height: 210px;
  padding: 22px;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.mmv-mega-card img {
  height: 90px;
  object-fit: contain;
  transition: transform 250ms ease;
  width: 100%;
}

.mmv-mega-card:hover img {
  transform: translateX(8px) scale(1.04);
}

.mmv-mega-card:hover {
  background: #fafafa;
  box-shadow: inset 0 4px 0 var(--red);
  transform: translateY(-2px);
}

.mmv-mega-card strong {
  font-size: 18px;
}

.mmv-mega-card small {
  color: var(--red);
  font-weight: 700;
}

.mmv-simple-menu {
  display: grid;
  min-width: 260px;
}

.mmv-simple-menu a {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px;
}

.mmv-simple-menu a:hover {
  background: var(--soft);
  color: var(--red);
}

.mmv-header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.mmv-header-actions a {
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
}

.mmv-header-actions a:first-child {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.header-social-link {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.header-social-link img {
  height: 22px;
  width: 22px;
}

.mmv-hero {
  background: #000;
  color: #fff;
  height: calc(100vh - 82px);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.mmv-hero-track,
.mmv-hero-slide {
  height: 100%;
  inset: 0;
  position: absolute;
}

.mmv-hero-slide {
  animation: heroFade 24s infinite;
  opacity: 0;
}

.mmv-hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.mmv-hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.mmv-hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.mmv-hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.mmv-hero-slide::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18), transparent);
  content: "";
  inset: 0;
  position: absolute;
}

.mmv-hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  width: 100%;
}

.mmv-hero-caption {
  left: 72px;
  max-width: 560px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.mmv-hero-caption span,
.mmv-section-heading p,
.mmv-inner-hero p,
.product-official-hero p,
.contact-panel p,
.mmv-service-banner p,
.mmv-closing p {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.mmv-hero-caption h1 {
  font-size: 58px;
  line-height: 1;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.mmv-btn,
.official-form button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.mmv-btn:hover,
.official-form button:hover {
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

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

.mmv-btn.white {
  background: #fff;
  color: #111;
}

.mmv-btn.red,
.official-form button {
  background: var(--red);
  color: #fff;
}

.official-form button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.mmv-btn.dark {
  background: #111;
  color: #fff;
}

.social-app-button {
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.12);
  box-shadow: 0 10px 24px rgba(17, 19, 23, 0.08);
  color: #111;
  gap: 10px;
}

.social-app-button img {
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.mmv-hero-dots {
  bottom: 34px;
  display: flex;
  gap: 10px;
  left: 72px;
  position: absolute;
  z-index: 3;
}

.mmv-hero-dots span {
  background: rgba(255, 255, 255, 0.42);
  height: 3px;
  width: 56px;
}

.model-strip {
  background: #fff;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 30px 48px;
}

.model-strip a {
  border: 1px solid transparent;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px 14px;
  text-align: center;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.model-strip a:last-child {
  border-right: 1px solid transparent;
}

.model-strip img {
  height: 86px;
  object-fit: contain;
  transition: transform 220ms ease;
  width: 100%;
}

.model-strip a:hover img {
  transform: translateY(-10px) scale(1.04);
}

.model-strip a:hover {
  background: #fff;
  border-color: rgba(215, 25, 32, 0.2);
  box-shadow: 0 18px 36px rgba(17, 19, 23, 0.1);
  transform: translateY(-4px);
}

.model-strip strong {
  font-size: 18px;
}

.model-strip span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.mmv-section {
  padding: 76px 64px;
}

.mmv-section-heading {
  margin: 0 auto 36px;
  max-width: 840px;
  text-align: center;
}

.mmv-section-heading h2,
.mmv-inner-hero h1,
.product-official-hero h1,
.contact-panel h2,
.mmv-service-banner h2,
.mmv-closing h2 {
  font-size: 52px;
  line-height: 1.08;
  margin: 0;
}

.mmv-section-heading p,
.mmv-inner-hero p {
  font-size: 18px;
}

.mmv-section-heading h2 {
  font-weight: 800;
}

.car-select {
  background: var(--soft);
}

.car-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.car-tabs a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 16px;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.car-tabs a:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.car-showcase,
.official-product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.car-showcase article,
.official-product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 360px;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.car-showcase article:hover,
.official-product-card:hover {
  border-color: rgba(215, 25, 32, 0.24);
  box-shadow: 0 20px 44px rgba(17, 19, 23, 0.12);
  transform: translateY(-5px);
}

.car-showcase img,
.official-product-image img {
  height: 210px;
  object-fit: contain;
  padding: 24px;
  transition: transform 260ms ease;
  width: 100%;
}

.car-showcase article:hover img,
.official-product-card:hover img {
  transform: translateX(12px) scale(1.03);
}

.car-showcase article > div,
.official-product-card > div {
  border-top: 1px solid var(--line);
  padding: 24px;
}

.car-showcase span,
.official-product-card span,
.official-price-table small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.car-showcase h3,
.official-product-card h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 8px 0;
}

.car-showcase p,
.official-product-card p {
  color: var(--red);
  font-weight: 900;
  margin: 0 0 18px;
}

.car-showcase a,
.official-card-actions a,
.mmv-news-grid a {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.mmv-service-banner {
  align-items: center;
  background: #15171b;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 300px;
  padding: 64px;
}

.mmv-service-banner span,
.mmv-closing span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 16px;
}

.price-overview {
  background: #fff;
}

.price-overview-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-overview-grid a,
.official-price-table > a,
.official-price-table > div,
.official-price-table > article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.price-overview-grid a:hover,
.official-price-table > a:hover,
.official-price-table > article:hover {
  background: #fff;
  border-color: rgba(215, 25, 32, 0.28);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.price-overview-grid img,
.official-price-table img {
  background:
    linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
  height: 170px;
  object-fit: contain;
  padding: 22px;
  transition: transform 260ms ease;
  width: 100%;
}

.price-overview-grid a:hover img,
.official-price-table a:hover img {
  transform: translateY(-8px) scale(1.04);
}

.price-overview-grid a > div,
.official-price-table a > div,
.official-price-table > div > div {
  display: grid;
  gap: 8px;
  padding: 20px 22px 22px;
}

.price-overview-grid span,
.official-price-table span {
  font-weight: 900;
}

.price-overview-grid strong,
.official-price-table strong {
  color: var(--red);
  font-size: 20px;
}

.price-product-card img {
  height: 220px;
}

.mmv-news-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 64px 76px;
}

.mmv-news-grid article {
  background: var(--soft);
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 320px;
}

.mmv-news-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mmv-news-grid div {
  padding: 34px;
}

.mmv-news-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mmv-news-grid h2 {
  font-size: 28px;
  line-height: 1.12;
}

.closing-cta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mmv-closing {
  background: var(--dark);
  color: #fff;
  padding: 64px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mmv-inner-hero {
  background: #111;
  color: #fff;
  min-height: 360px;
  padding: 110px 64px 72px;
}

.mmv-inner-hero span {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-size: 18px;
  margin-top: 18px;
  max-width: 760px;
}

.official-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.official-card-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.product-official-hero {
  align-items: center;
  background: linear-gradient(90deg, #111 0%, #111 42%, #f4f4f4 42%);
  color: #fff;
  display: grid;
  gap: 36px;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 580px;
  overflow: hidden;
  padding: 80px 64px;
}

.product-official-hero img {
  justify-self: center;
  max-height: 360px;
  object-fit: contain;
  width: 100%;
}

.product-official-hero span {
  color: #fff;
  display: block;
  font-size: 24px;
  font-weight: 900;
  margin-top: 16px;
}

.spec-card-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spec-card-grid div {
  background: var(--soft);
  padding: 28px;
}

.spec-card-grid span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.spec-card-grid strong {
  font-size: 24px;
}

.official-price-table {
  display: grid;
  gap: 18px;
}

.official-price-table.large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.used-cars-social {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: space-between;
}

.used-cars-social h2 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0;
}

.social-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.center-actions {
  justify-content: center;
  margin-top: 28px;
}

.used-cars-grid,
.used-home-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.used-car-card,
.used-mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 19, 23, 0.08);
  overflow: hidden;
}

.used-car-media {
  background: linear-gradient(180deg, #f8f9fb, #eef1f5);
  display: block;
  position: relative;
}

.used-car-media img,
.used-mini-card img {
  height: 220px;
  object-fit: contain;
  padding: 24px;
  width: 100%;
}

.used-car-media span {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  left: 16px;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
}

.used-car-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.used-car-body p,
.used-mini-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.used-car-body h2 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}

.used-car-body strong,
.used-mini-card small {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.used-car-body dl {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.used-car-body dl div {
  background: var(--soft);
  padding: 12px;
}

.used-car-body dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.used-car-body dd {
  font-weight: 900;
  margin: 4px 0 0;
}

.used-car-body > span {
  color: #3b4048;
  line-height: 1.55;
}

.used-car-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.used-mini-card {
  display: grid;
}

.used-mini-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.used-mini-card strong {
  font-size: 22px;
}

.variant-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.variant-card {
  position: relative;
}

.variant-card::before {
  background: var(--red);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.variant-card-media {
  background: linear-gradient(180deg, #f7f8fa 0%, #edf0f4 100%);
  min-height: 230px;
  overflow: hidden;
}

.variant-card-media img {
  height: 230px;
  object-fit: contain;
  padding: 26px;
  transition: transform 260ms ease;
  width: 100%;
}

.variant-card:hover .variant-card-media img {
  transform: translateY(-8px) scale(1.04);
}

.variant-card-body {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.variant-card-body p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.variant-card-body ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.variant-card-body li {
  border-top: 1px solid var(--line);
  color: #2f343b;
  font-size: 14px;
  font-weight: 700;
  padding-top: 10px;
}

.variant-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.mmv-feature-band {
  background: var(--red);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mmv-feature-band div {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 18px;
  font-weight: 900;
  min-height: 120px;
  padding: 34px;
}

.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.polished-contact {
  align-items: start;
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
}

.contact-info-stack {
  display: grid;
  gap: 18px;
}

.contact-panel,
.official-form {
  background: var(--soft);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 19, 23, 0.08);
  padding: 34px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel.dark {
  background: #111;
  color: #fff;
}

.contact-panel.highlight {
  background: #111;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.contact-panel.highlight::after {
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.9), rgba(215, 25, 32, 0));
  content: "";
  height: 130px;
  position: absolute;
  right: -50px;
  top: -62px;
  transform: rotate(14deg);
  width: 220px;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-panel.highlight span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-mini-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-mini-grid article {
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(17, 19, 23, 0.06);
  display: grid;
  gap: 8px;
  padding: 20px;
}

.contact-mini-grid strong {
  color: #111;
  font-size: 18px;
}

.contact-mini-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.official-form {
  display: grid;
  gap: 16px;
}

.polished-contact .official-form {
  background: #fff;
  grid-column: auto;
}

.official-form h2 {
  font-size: 34px;
  margin: 0 0 8px;
}

.official-form label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.official-form input,
.official-form select,
.official-form textarea,
.admin-login-card input,
.admin-grid input,
.admin-grid select,
.admin-grid textarea,
.admin-picker select,
.admin-variant-row input,
.admin-variant-row textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.official-form input:focus,
.official-form select:focus,
.official-form textarea:focus,
.admin-login-card input:focus,
.admin-grid select:focus,
.admin-picker select:focus {
  border-color: rgba(215, 25, 32, 0.55);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
  outline: 0;
}

.official-form textarea {
  min-height: 110px;
}

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

.form-status {
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  color: #222;
  font-weight: 800;
  margin: 0;
  padding: 14px 16px;
}

.rolling-cost-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
}

.rolling-cost-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.rolling-cost-form {
  background: #fff;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rolling-cost-form h2,
.rolling-cost-form label:first-of-type {
  grid-column: 1 / -1;
}

.rolling-cost-result {
  background: #111;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(17, 19, 23, 0.16);
  color: #fff;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.rolling-cost-total {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
}

.rolling-cost-result p,
.rolling-cost-total span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.rolling-cost-result strong {
  font-size: 38px;
  line-height: 1.04;
}

.rolling-cost-result dl {
  display: grid;
  gap: 1px;
  margin: 0;
}

.rolling-cost-result dl div {
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 11px 12px;
}

.rolling-cost-result dt,
.rolling-cost-result dd {
  margin: 0;
}

.rolling-cost-result dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rolling-cost-result dd {
  font-weight: 900;
  text-align: right;
}

.rolling-cost-result span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.loan-flow {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loan-flow article {
  background: var(--soft);
  padding: 34px;
}

.loan-flow article > span {
  color: var(--red);
  font-size: 40px;
  font-weight: 900;
}

.loan-flow h2 {
  font-size: 28px;
}

.mmv-footer {
  background: #f4f4f4;
}

.mmv-footer-cta {
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.mmv-footer-cta a {
  border-right: 1px solid var(--line);
  font-weight: 900;
  min-width: 220px;
  padding: 22px;
  text-align: center;
  text-transform: uppercase;
}

.mmv-footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 48px 64px;
}

.mmv-footer-grid h2 {
  font-size: 17px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.mmv-footer-grid a,
.mmv-footer-grid p {
  color: #555d68;
  display: block;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.visit-counter {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  margin-top: 8px;
  padding: 9px 12px;
}

.visit-counter strong {
  color: var(--red);
}

.floating-actions {
  bottom: 22px;
  display: grid;
  gap: 10px;
  position: fixed;
  right: 22px;
  z-index: 80;
}

.floating-actions a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.16);
  color: #111;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: box-shadow 220ms ease, transform 220ms ease;
  width: 58px;
}

.floating-actions a:hover {
  box-shadow: 0 20px 42px rgba(17, 19, 23, 0.2);
  transform: translateY(-3px);
}

.floating-actions a:first-child {
  background: var(--red);
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.32);
  color: #fff;
}

.floating-actions a:first-child:hover {
  box-shadow: 0 20px 42px rgba(215, 25, 32, 0.38);
}

.floating-actions a img {
  height: 32px;
  width: 32px;
}

.admin-shell {
  background: #f5f6f8;
  padding: 64px;
}

.admin-login-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 70vh;
}

.admin-login-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(17, 19, 23, 0.12);
  display: grid;
  gap: 16px;
  max-width: 460px;
  padding: 34px;
  width: 100%;
}

.admin-login-card h1 {
  font-size: 36px;
  margin: 0;
}

.admin-login-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.admin-login-card label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.admin-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-header h1 {
  font-size: 42px;
  margin: 0 0 10px;
}

.admin-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-section-switcher {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-section-switcher button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(17, 19, 23, 0.05);
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 16px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.admin-section-switcher button.active,
.admin-section-switcher button:hover {
  border-color: rgba(215, 25, 32, 0.42);
  box-shadow: 0 18px 36px rgba(215, 25, 32, 0.12);
  transform: translateY(-1px);
}

.admin-section-switcher strong {
  color: #111;
  font-size: 15px;
}

.admin-section-switcher span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.primary-btn,
.secondary-btn {
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.primary-btn {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.secondary-btn {
  background: #fff;
}

.danger-btn {
  color: var(--red);
  margin-top: 16px;
}

.admin-status {
  background: #fff;
  border-left: 4px solid var(--red);
  padding: 14px 18px;
}

.admin-products {
  display: grid;
  gap: 24px;
}

.admin-settings-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr 0.75fr;
  margin-bottom: 28px;
}

.admin-settings-grid.single {
  grid-template-columns: 1fr;
}

.admin-settings-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.admin-used-cars {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 28px;
  padding: 24px;
}

.admin-actions.compact {
  margin: 0;
}

.admin-used-list {
  display: grid;
  gap: 18px;
}

.admin-used-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.admin-user-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-user-list div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.admin-user-list span {
  color: var(--muted);
  font-size: 13px;
}

.admin-leads {
  background: #fff;
  border: 1px solid var(--line);
  margin: 0 0 28px;
  padding: 24px;
}

.admin-section-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-section-title h2 {
  font-size: 28px;
  margin: 0;
}

.admin-picker {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  text-transform: uppercase;
}

.lead-table {
  display: grid;
  gap: 10px;
}

.lead-table article {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 130px 170px 1.4fr 150px 72px;
  padding: 14px;
}

.lead-table a {
  color: var(--red);
  font-weight: 900;
}

.lead-table span,
.lead-table small,
.lead-table time {
  color: var(--muted);
  font-size: 13px;
}

.lead-table button {
  border: 1px solid var(--line);
  color: var(--red);
  cursor: pointer;
  font-weight: 900;
  min-height: 38px;
}

.admin-empty {
  color: var(--muted);
  margin: 0;
}

.admin-product-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.admin-product-heading {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 180px 1fr;
  margin-bottom: 22px;
}

.admin-product-heading img {
  height: 100px;
  object-fit: contain;
  width: 100%;
}

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

.admin-grid label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.admin-grid .wide {
  grid-column: span 2;
}

.admin-grid textarea {
  min-height: 96px;
}

.admin-variants {
  margin-top: 22px;
}

.admin-variant-head,
.admin-variant-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 0.8fr 0.75fr 1.1fr 1.1fr 80px;
  margin-bottom: 10px;
}

.admin-variant-row textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-variant-row button {
  border: 1px solid var(--line);
  color: var(--red);
  font-weight: 900;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5%,
  23% {
    opacity: 1;
  }
  30%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@media (max-width: 1180px) {
  .mmv-header {
    padding-left: 28px;
    padding-right: 28px;
    grid-template-columns: 1fr;
  }

  .mmv-nav,
  .mmv-header-actions {
    justify-content: flex-start;
  }

  .mmv-nav {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .mmv-mega {
    left: 0;
    transform: translate(0, 12px);
    width: min(900px, calc(100vw - 56px));
  }

  .mmv-has-mega:hover .mmv-mega,
  .mmv-has-mega:focus-within .mmv-mega {
    transform: translate(0, 0);
  }

  .model-strip,
  .price-overview-grid,
  .official-product-grid,
  .used-cars-grid,
  .used-home-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .official-price-table.large,
  .variant-showcase,
  .contact-layout,
  .rolling-cost-layout,
  .admin-section-switcher,
  .admin-settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .mmv-mega,
  .mmv-simple-menu {
    display: none;
  }

  .product-official-hero {
    background: #111;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 36px;
  }

  .product-official-hero img {
    max-height: 320px;
  }

  .car-showcase,
  .official-product-grid,
  .price-overview-grid,
  .used-cars-grid,
  .used-home-grid,
  .rolling-cost-layout,
  .official-price-table.large,
  .variant-showcase,
  .contact-layout,
  .loan-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .mmv-section,
  .mmv-service-banner,
  .mmv-closing {
    padding-left: 36px;
    padding-right: 36px;
  }

  .mmv-inner-hero {
    padding-left: 36px;
    padding-right: 36px;
  }

  .model-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 28px;
    padding-right: 28px;
  }

  .mmv-service-banner,
  .closing-cta,
  .used-cars-social {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .mmv-header {
    padding: 14px 18px;
  }

  .mmv-logo {
    flex-wrap: wrap;
  }

  .mmv-nav {
    gap: 16px;
    overflow-x: auto;
  }

  .mmv-mega {
    display: none;
  }

  .mmv-header-actions {
    display: none;
  }

  .mmv-hero {
    height: 560px;
    min-height: 560px;
  }

  .mmv-hero-caption {
    left: 22px;
    right: 22px;
  }

  .mmv-hero-caption h1 {
    font-size: 38px;
  }

  .mmv-hero-dots {
    left: 22px;
  }

  .model-strip,
  .car-showcase,
  .price-overview-grid,
  .used-cars-grid,
  .used-home-grid,
  .mmv-news-grid,
  .official-product-grid,
  .product-official-hero,
  .spec-card-grid,
  .official-price-table.large,
  .variant-showcase,
  .mmv-feature-band,
  .contact-layout,
  .loan-flow,
  .mmv-footer-grid,
  .admin-grid,
  .admin-settings-grid,
  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .model-strip {
    gap: 12px;
  }

  .model-strip,
  .mmv-section,
  .mmv-service-banner,
  .mmv-closing,
  .mmv-news-grid,
  .mmv-footer-grid,
  .admin-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mmv-section-heading h2,
  .mmv-inner-hero h1,
  .product-official-hero h1,
  .contact-panel h2,
  .mmv-service-banner h2,
  .mmv-closing h2 {
    font-size: 36px;
  }

  .mmv-section-heading p,
  .mmv-inner-hero p {
    font-size: 16px;
  }

  .rolling-cost-form,
  .rolling-cost-layout {
    grid-template-columns: 1fr;
  }

  .rolling-cost-result strong {
    font-size: 30px;
  }

  .rolling-cost-result {
    gap: 10px;
    padding: 20px;
  }

  .rolling-cost-result dl div {
    align-items: flex-start;
    border-radius: 6px;
    padding: 10px 11px;
  }

  .rolling-cost-result dt {
    font-size: 11px;
  }

  .rolling-cost-result dd {
    font-size: 14px;
  }

  .product-official-hero {
    background: #111;
    padding: 54px 20px;
  }

  .product-official-hero img {
    max-height: 260px;
  }

  .mmv-service-banner,
  .closing-cta,
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .admin-section-switcher {
    grid-template-columns: 1fr;
  }

  .official-form,
  .admin-grid .wide {
    grid-column: auto;
  }

  .admin-product-heading,
  .admin-variant-head,
  .admin-variant-row,
  .lead-table article {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-buttons,
  .contact-actions,
  .social-actions,
  .used-car-actions,
  .form-actions,
  .official-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mmv-btn,
  .official-form button,
  .form-actions a,
  .hero-actions a,
  .cta-buttons a,
  .contact-actions a,
  .social-actions a,
  .used-car-actions a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mmv-logo {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mmv-logo img {
    height: 44px;
    width: 150px;
  }

  .mmv-dealer-text {
    border-left: 0;
    border-top: 1px solid #c6c9cf;
    padding-left: 0;
    padding-top: 10px;
  }

  .mmv-logo strong {
    font-size: 20px;
  }

  .mmv-logo small {
    font-size: 12px;
  }

  .mmv-nav > a,
  .mmv-nav-item > a {
    font-size: 12px;
    min-height: 42px;
    white-space: nowrap;
  }

  .mmv-hero-caption h1 {
    font-size: 32px;
  }

  .mmv-hero-caption span,
  .mmv-inner-hero span {
    font-size: 15px;
  }

  .model-strip img,
  .price-overview-grid img,
  .official-price-table img {
    height: 150px;
  }

  .car-showcase img,
  .official-product-image img,
  .variant-card-media img {
    height: 180px;
    padding: 18px;
  }

  .contact-panel,
  .official-form,
  .admin-product-card,
  .admin-leads {
    padding: 22px;
  }

  .floating-actions {
    bottom: 14px;
    gap: 8px;
    right: 14px;
  }

  .floating-actions a {
    font-size: 12px;
    height: 54px;
    width: 54px;
  }
}

/* Mobile/tablet image fit overrides for the PHP hosting build. */
@media (max-width: 1180px) {
  .mmv-hero {
    height: auto;
    min-height: 0;
  }

  .mmv-hero-track,
  .mmv-hero-slide {
    height: clamp(520px, 72vw, 700px);
    position: relative;
  }

  .mmv-hero-track {
    display: block;
    overflow: hidden;
  }

  .mmv-hero-slide {
    inset: auto;
    position: absolute;
  }

  .mmv-hero-slide img {
    object-position: center bottom;
    transform: none;
  }

  .model-strip img,
  .car-showcase img,
  .official-product-image img,
  .price-overview-grid img,
  .official-price-table img,
  .used-car-media img,
  .used-mini-card img,
  .variant-card-media img,
  .product-official-hero img {
    object-fit: contain;
    object-position: center center;
  }

  .variant-card > img {
    display: none;
  }

  .model-strip a,
  .official-product-card,
  .used-mini-card,
  .used-car-card {
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .mmv-header {
    min-height: 0;
  }

  .mmv-hero-track,
  .mmv-hero-slide {
    height: 620px;
  }

  .mmv-hero-slide::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
  }

  .mmv-hero-caption {
    bottom: 62px;
    left: 36px;
    max-width: min(620px, calc(100vw - 72px));
    right: 36px;
    top: auto;
    transform: none;
  }

  .mmv-hero-caption h1 {
    font-size: clamp(36px, 8vw, 56px);
    max-width: 640px;
  }

  .hero-actions {
    max-width: 520px;
  }

  .product-official-hero {
    gap: 24px;
  }

  .product-official-hero img {
    max-height: 360px;
    width: min(100%, 720px);
  }
}

@media (max-width: 760px) {
  .mmv-logo img {
    height: auto;
    max-height: 58px;
    width: min(190px, 52vw);
  }

  .mmv-dealer-text {
    max-width: 100%;
  }

  .mmv-logo small {
    overflow-wrap: anywhere;
  }

  .mmv-hero-track,
  .mmv-hero-slide {
    height: 560px;
  }

  .mmv-hero-slide img {
    object-fit: cover;
    object-position: 58% bottom;
  }

  .model-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-strip img {
    height: 132px;
    padding: 6px;
  }

  .car-showcase img,
  .official-product-image img,
  .price-overview-grid img,
  .official-price-table img,
  .used-car-media img,
  .used-mini-card img {
    height: 210px;
    padding: 18px;
  }

  .car-showcase article,
  .official-product-card {
    min-height: 0;
  }

  .used-car-media img,
  .used-mini-card img {
    background: linear-gradient(180deg, #f8f9fb, #eef1f5);
  }

  .variant-card-media {
    min-height: 0;
  }

  .variant-card-media img {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .mmv-hero-track,
  .mmv-hero-slide {
    height: 520px;
  }

  .mmv-hero-caption {
    bottom: 46px;
    left: 20px;
    right: 20px;
  }

  .mmv-hero-caption h1 {
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .mmv-btn {
    min-height: 44px;
    padding: 12px 16px;
  }

  .model-strip {
    padding-top: 18px;
  }

  .model-strip img {
    height: 112px;
  }

  .car-showcase img,
  .official-product-image img,
  .price-overview-grid img,
  .official-price-table img,
  .used-car-media img,
  .used-mini-card img,
  .variant-card-media img {
    height: 190px;
    padding: 14px;
  }

  .product-official-hero img {
    max-height: 260px;
  }
}

@media (max-width: 390px) {
  .mmv-hero-track,
  .mmv-hero-slide {
    height: 500px;
  }

  .mmv-hero-caption h1 {
    font-size: 29px;
  }

  .model-strip img {
    height: 98px;
  }

  .car-showcase img,
  .official-product-image img,
  .price-overview-grid img,
  .official-price-table img,
  .used-car-media img,
  .used-mini-card img,
  .variant-card-media img {
    height: 172px;
  }
}

/* Contact page polish: compact layout and clear floating buttons. */
.contact-page-layout {
  align-items: stretch;
  gap: 28px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  padding: 28px 48px 96px;
}

.contact-page-layout .contact-panel,
.contact-page-layout .official-form {
  border-radius: 10px;
  min-height: 0;
}

.contact-page-layout .contact-panel {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.96)),
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.12), transparent 32%);
  gap: 22px;
  padding: 40px;
}

.contact-page-layout .contact-panel h1 {
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 1.05;
  margin: 0;
}

.contact-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.contact-page-layout .contact-panel dl {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 8px 0 0;
}

.contact-page-layout .contact-panel dl div {
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 10px;
  padding: 16px;
}

.contact-page-layout .contact-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-page-layout .contact-panel dd {
  color: #111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  margin-top: 6px;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.contact-action-row .mmv-btn {
  min-width: 150px;
}

.contact-page-layout .official-form {
  align-content: start;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 19, 23, 0.09);
  gap: 14px;
  padding: 40px;
}

.contact-page-layout .official-form h2 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.contact-page-layout .official-form textarea {
  min-height: 122px;
}

.contact-page-layout .official-form button {
  margin-top: 8px;
  min-height: 56px;
}

@media (min-width: 761px) {
  body:has(.contact-page-layout) .floating-actions {
    bottom: 28px;
    right: 28px;
  }
}

@media (max-width: 980px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
    padding: 24px 24px 104px;
  }
}

@media (max-width: 640px) {
  .contact-page-layout {
    padding: 18px 14px 110px;
  }

  .contact-page-layout .contact-panel,
  .contact-page-layout .official-form {
    border-radius: 8px;
    padding: 24px 20px;
  }

  .contact-page-layout .contact-panel dl {
    grid-template-columns: 1fr;
  }

  .contact-action-row {
    flex-direction: column;
  }

  .contact-action-row .mmv-btn {
    width: 100%;
  }

  .contact-page-layout .official-form h2 {
    font-size: 30px;
  }
}
