:root {
  --ink: #101722;
  --muted: #5d6978;
  --line: #dfe5ec;
  --soft: #f4f7fa;
  --soft-2: #eef3f7;
  --navy: #0b2a4a;
  --navy-2: #123b62;
  --accent: #c8892b;
  --green: #12805c;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 28, 45, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

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

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
}

.brand span {
  display: block;
}

.brand strong {
  display: block;
  color: #0d2238;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-links a {
  border-radius: 6px;
  color: #263241;
  font-size: 14px;
  padding: 10px 11px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--soft);
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-2);
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}

.btn-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(720px, calc(100vh - 92px));
  align-items: center;
  overflow: hidden;
  background: #132131;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 19, 32, 0.9), rgba(8, 19, 32, 0.63) 45%, rgba(8, 19, 32, 0.2));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 108px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions,
.section-actions,
.card-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 15, 25, 0.45);
}

.hero-stat {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  font-size: 24px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 58px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2,
.split-copy h2,
.page-section h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.split-copy p,
.page-section p {
  max-width: 660px;
  color: var(--muted);
  margin: 10px 0 0;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.info-card,
.vehicle-card,
.market-card,
.service-card,
.faq-item,
.testimonial-card,
.detail-panel,
.direct-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card,
.market-card,
.service-card,
.faq-item,
.testimonial-card,
.detail-panel,
.direct-panel,
.form-panel {
  padding: 24px;
}

.info-card h3,
.market-card h3,
.service-card h3,
.faq-item h3,
.detail-panel h3,
.direct-panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.info-card p,
.market-card p,
.service-card p,
.faq-item p,
.testimonial-card p,
.direct-panel p,
.vehicle-card p {
  color: var(--muted);
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list .faq-item {
  padding: 0;
}

.faq-list .faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.faq-list .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-list .faq-item summary h3 {
  margin: 0;
}

.faq-list .faq-item p {
  padding: 0 20px 20px 52px;
}

.faq-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid var(--navy);
  transition: transform 0.18s ease;
}

.faq-list .faq-item[open] .faq-arrow {
  transform: rotate(90deg);
}

.grid .faq-item:not(details) {
  padding: 24px;
  text-align: center;
}

.grid .faq-item:not(details) h3 {
  margin: 0 0 12px;
}

.grid .faq-item:not(details) p {
  padding: 0;
}

.testimonial-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 34px rgba(15, 28, 45, 0.08);
}

.testimonial-card p {
  color: #334154;
  font-size: 17px;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
}

.testimonial-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--soft-2);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.feature-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(18, 128, 92, 0.12);
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.category-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
  align-items: stretch;
}

.category-left,
.category-main,
.category-row {
  display: grid;
  gap: 20px;
}

.category-row {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 28, 45, 0.07);
}

.category-card img,
.vehicle-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-media-card {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  min-height: 260px;
}

.category-media-card img {
  height: 100%;
  aspect-ratio: auto;
}

.category-media-card::after,
.category-small-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 26%, rgba(255, 255, 255, 0.48) 48%, rgba(255, 255, 255, 0) 70%);
  content: "";
  pointer-events: none;
  z-index: 0;
}

.category-small-card::after {
  display: block;
}

.category-media-card .category-body,
.category-small-card .category-body {
  position: relative;
  z-index: 1;
}

.category-spotlight {
  min-height: 390px;
  background: #071526;
  color: var(--white);
}

.category-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  filter: saturate(1.04) contrast(1.04);
}

.category-spotlight::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 38, 0.98) 0%, rgba(7, 21, 38, 0.94) 34%, rgba(7, 21, 38, 0.42) 64%, rgba(7, 21, 38, 0.08) 100%);
  content: "";
}

.category-spotlight .category-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  max-width: 520px;
  padding: 26px;
}

.category-spotlight h3 {
  color: var(--white);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.08;
  margin-top: 16px;
}

.category-spotlight p {
  color: rgba(255, 255, 255, 0.78);
}

.category-spotlight .category-brands {
  color: #f2b76d;
}

.category-small-card {
  display: block;
  min-height: 300px;
  background: var(--white);
}

.category-small-card img {
  position: absolute;
  inset: 0 0 0 28%;
  width: 72%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  background: #f4f7fb;
  padding: 0;
  z-index: 0;
}

.category-small-card .category-body {
  max-width: 62%;
  padding: 24px;
}

.category-small-card h3 {
  margin-top: 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.category-uk-rhd img {
  object-position: center center;
}

.category-jk img {
  object-position: center 58%;
}

.category-ev img {
  object-position: center 58%;
}

.category-icon,
.category-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #e07011;
}

.category-icon svg,
.category-cta-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-icon-dark {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(8, 18, 30, 0.42);
}

.category-body,
.vehicle-body {
  padding: 18px;
}

.category-body h3,
.vehicle-body h3 {
  margin: 0 0 6px;
}

.category-card .category-body {
  align-content: center;
  display: grid;
}

.category-brands {
  color: #df6f0f;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 8px;
}

.category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.category-badges span {
  border: 1px solid rgba(12, 47, 84, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 9px;
}

.category-card p {
  color: #4f5c6d;
}

.category-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto 0;
  color: #263244;
}

.category-cta p {
  margin: 0;
}

.category-cta a {
  color: #e07011;
  font-weight: 900;
  margin-left: 56px;
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 44px;
}

.media-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.media-stack img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-stack img:first-child {
  grid-row: span 2;
}

.inspection-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.process-step {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.process-step p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 19, 30, 0.92), rgba(10, 19, 30, 0.72), rgba(10, 19, 30, 0.5));
  z-index: 1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 82px 0;
}

.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.filter-help {
  grid-column: 1 / -1;
  margin: 0;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  color: var(--muted);
  padding: 12px 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #2b3543;
  font-size: 13px;
  font-weight: 800;
}

.field label span {
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.filter-actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.vehicle-card {
  overflow: hidden;
}

.vehicle-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.vehicle-meta span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 6px;
  background: var(--soft);
  color: #334154;
  font-size: 13px;
  padding: 6px 8px;
}

.price {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.quote-summary {
  margin: 16px 0;
}

.quote-summary .price {
  margin: 0 0 4px;
}

.quote-summary p:last-child {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.inventory-status {
  color: var(--muted);
  margin: 0;
}

.inventory-note {
  max-width: 820px;
  color: #40506a;
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.inventory-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.inventory-sort {
  min-width: 240px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eef2f6;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 160ms ease, transform 180ms ease;
  will-change: opacity, transform;
}

.gallery-main.is-changing {
  opacity: 0.35;
  transform: scale(0.996);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(9, 31, 56, 0.18);
  transform: translateY(-50%);
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scroll-snap-type: x proximity;
}

.gallery-thumb {
  flex: 0 0 104px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--navy);
}

.gallery-thumb:hover {
  box-shadow: 0 8px 18px rgba(9, 31, 56, 0.16);
  transform: translateY(-1px);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.spec {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.spec strong {
  display: block;
  margin-top: 4px;
}

.notice {
  margin-top: 14px;
  border-left: 3px solid var(--accent);
  background: #fff8ed;
  color: #5f4216;
  padding: 12px 14px;
}

.form-panel {
  box-shadow: var(--shadow);
}

.market-card strong {
  color: var(--navy);
}

.site-footer {
  background: #0a1018;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.open .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-header.open .nav-actions {
    position: absolute;
    left: 26px;
    right: 26px;
    top: 430px;
    display: flex;
    background: var(--white);
    padding-bottom: 12px;
  }

  .grid-4,
  .process-line,
  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-showcase {
    grid-template-columns: 1fr;
  }

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

  .category-media-card {
    min-height: 240px;
  }

  .category-spotlight {
    min-height: 360px;
  }

  .grid-3,
  .split,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .section-head,
  .cta-band .container,
  .inventory-toolbar,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-inner {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 84px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .filters,
  .process-line,
  .spec-grid,
  .vehicle-meta {
    grid-template-columns: 1fr;
  }

  .category-showcase {
    display: flex;
    flex-direction: column;
  }

  .category-left,
  .category-main,
  .category-row {
    display: contents;
  }

  .category-luxury {
    order: 1;
  }

  .category-chinese {
    order: 2;
  }

  .category-european {
    order: 3;
  }

  .category-jk {
    order: 4;
  }

  .category-ev {
    order: 5;
  }

  .category-uk-rhd {
    order: 6;
  }

  .category-spotlight {
    min-height: 440px;
  }

  .category-media-card,
  .category-small-card {
    display: block;
    min-height: 360px;
  }

  .category-media-card img,
  .category-small-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .category-small-card .category-body {
    max-width: none;
  }

  .category-media-card::after,
  .category-small-card::after {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.08) 100%);
  }

  .category-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-cta a {
    margin-left: 0;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack img:first-child {
    grid-row: auto;
  }

  .filter-actions,
  .card-actions,
  .hero-actions,
  .section-actions,
  .form-actions {
    flex-direction: column;
  }

  .inventory-sort {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
