:root {
  color-scheme: dark;
  --bg: #0b0d0d;
  --bg-soft: #151716;
  --surface: #171918;
  --surface-2: #20231f;
  --paper: #f2efe8;
  --ink: #171817;
  --text: #f3f0e9;
  --muted: #c6c0b7;
  --line: rgba(243, 240, 233, 0.14);
  --gold: #a98c5a;
  --gold-soft: #d2c2a2;
  --sage: #9aa58f;
  --sage-dark: #65725f;
  --teal: #87b7aa;
  --danger: #d08f67;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1160px;
  --display: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --serif: "Iowan Old Style", Baskerville, "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(154, 165, 143, 0.18), transparent 32rem),
    linear-gradient(180deg, #050505 0%, var(--bg) 52%, #0e0d0b 100%);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes revealLift {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(34px) scale(0.97);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes sweepAcross {
  from {
    transform: translateX(-140%) skewX(-18deg);
  }

  to {
    transform: translateX(140%) skewX(-18deg);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.38);
  }

  50% {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotateX(1.2deg);
  }
}

@keyframes imageBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 42px 42px, -42px 24px;
  }
}

@keyframes cardFilterIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes panelSoftFocus {
  from {
    filter: saturate(0.92);
    transform: translateY(10px);
  }

  to {
    filter: saturate(1);
    transform: translateY(0);
  }
}

.motion-reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(34px) scale(0.97);
  will-change: opacity, transform, filter;
}

.motion-reveal.is-visible {
  animation: revealLift 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--motion-delay, 0ms);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(260px, 420px) minmax(44px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 16px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(7, 7, 7, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050505;
  padding: 5px;
}

.brand span {
  max-width: 12rem;
}

.site-search {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
  max-width: 420px;
  min-width: 210px;
  font-family: var(--sans);
}

.site-search input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(243, 240, 233, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 10px 48px 10px 14px;
  outline: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-search input::placeholder {
  color: rgba(198, 192, 183, 0.78);
}

.site-search input:focus {
  border-color: rgba(154, 165, 143, 0.78);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(154, 165, 143, 0.16);
}

.site-search button {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(243, 240, 233, 0.12);
  border-radius: 8px;
  background: rgba(154, 165, 143, 0.18);
  color: #edf2e8;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-search button:hover,
.site-search button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(154, 165, 143, 0.5);
  background: rgba(154, 165, 143, 0.28);
}

.site-search svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.search-overlay[hidden] {
  display: none;
}

.search-overlay {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: max(76px, 11vh) 16px 16px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.search-overlay.is-open {
  opacity: 1;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.search-overlay__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 14px;
  border: 1px solid rgba(154, 165, 143, 0.42);
  border-radius: 8px;
  background: rgba(13, 15, 14, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  transform: translateY(-12px);
  transition: transform 180ms ease;
}

.search-overlay__title {
  margin: 0 48px 12px 0;
  color: rgba(237, 242, 232, 0.78);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0);
}

.search-overlay__form {
  position: relative;
}

.search-overlay__form input {
  width: 100%;
  height: 46px;
  padding: 10px 48px 10px 14px;
  border: 1px solid rgba(243, 240, 233, 0.18);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
}

.search-overlay__form input:focus {
  border-color: rgba(154, 165, 143, 0.78);
  box-shadow: 0 0 0 3px rgba(154, 165, 143, 0.14);
}

.search-overlay__submit,
.search-overlay__close {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(243, 240, 233, 0.14);
  border-radius: 8px;
  background: rgba(154, 165, 143, 0.18);
  color: #edf2e8;
  cursor: pointer;
}

.search-overlay__submit {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
}

.search-overlay__submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.search-overlay__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

.search-overlay__close span {
  position: absolute;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.search-overlay__close span:first-child {
  transform: rotate(45deg);
}

.search-overlay__close span:last-child {
  transform: rotate(-45deg);
}

.search-overlay-open {
  overflow: hidden;
}

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

.language-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 106px;
  height: 44px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.language-toggle__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(237, 242, 232, 0.74);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(154, 165, 143, 0.2);
}

.language-toggle__icon::before,
.language-toggle__icon::after {
  position: absolute;
  content: "";
  inset: 4px;
  border: 1px solid rgba(237, 242, 232, 0.52);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.language-toggle__icon::after {
  inset: 8px 2px;
  border: 0;
  border-top: 1px solid rgba(237, 242, 232, 0.52);
  border-radius: 0;
}

.language-toggle [data-language-option] {
  display: inline-grid;
  min-width: 24px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: rgba(198, 192, 183, 0.7);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.language-toggle__divider {
  width: 1px;
  height: 14px;
  background: rgba(243, 240, 233, 0.18);
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(210, 194, 162, 0.54);
  background:
    linear-gradient(135deg, rgba(210, 194, 162, 0.16), rgba(154, 165, 143, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.language-toggle[data-current-language="fr"] [data-language-option="fr"],
.language-toggle[data-current-language="en"] [data-language-option="en"] {
  background: #edf2e8;
  color: #10120f;
  box-shadow: 0 8px 22px rgba(237, 242, 232, 0.14);
  transform: translateY(-0.5px);
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: max(22px, calc((100vw - var(--max)) / 2));
  display: none;
  width: min(280px, calc(100vw - 44px));
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.96);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-family: var(--sans);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  border-radius: 8px;
  padding: 12px;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.site-nav .nav-link--active {
  background: rgba(154, 165, 143, 0.18);
  color: #edf2e8;
}

.site-nav__language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 5px;
  padding: 12px 10px 3px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav__language div {
  display: flex;
  gap: 5px;
}

.site-nav__language button {
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav__language button:hover,
.site-nav__language button:focus-visible {
  border-color: rgba(154, 165, 143, 0.56);
  color: var(--text);
}

.site-nav__language button.is-active {
  border-color: #edf2e8;
  background: #edf2e8;
  color: #10120f;
}

.nav-toggle {
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 10px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(154, 165, 143, 0.5);
  background: rgba(154, 165, 143, 0.16);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
  transition: opacity 160ms ease, transform 180ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 78svh;
  padding: 132px max(22px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden;
  background-image: url("assets/car-mercedes-sclass-2026.jpg");
  background-position: center 45%;
  background-size: cover;
  isolation: isolate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.64) 44%, rgba(5, 5, 5, 0.14) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.24) 52%, rgba(5, 5, 5, 0.32));
}

.hero-3d,
.page-hero__3d {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-3d canvas,
.page-hero__3d canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-3d.is-ready canvas,
.page-hero__3d.is-ready canvas {
  opacity: 0.9;
}

.hero-3d {
  mask-image: linear-gradient(90deg, transparent 0%, transparent 24%, #000 45%, #000 100%);
}

.page-hero__3d {
  opacity: 0.82;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 38%, #000 68%, #000 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(630px, 100%);
  padding: 28px 0 0;
}

.eyebrow,
.section__label {
  margin: 0 0 12px;
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: #e5ddd1;
  font-size: 1.17rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.hero__secondary {
  color: #edf2e8;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(237, 242, 232, 0.48);
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.hero__secondary:hover,
.hero__secondary:focus-visible {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.button {
  font-family: var(--sans);
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #c9d0bd, #f2efe8);
  color: #141614;
  box-shadow: 0 18px 40px rgba(154, 165, 143, 0.22);
}

.button--ghost {
  border-color: rgba(242, 239, 232, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(900px, 100%);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.28);
  border-radius: 8px;
  background: rgba(154, 165, 143, 0.18);
  box-shadow: var(--shadow);
}

.hero__stats div {
  min-height: 112px;
  padding: 20px;
  background: rgba(12, 12, 11, 0.82);
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  color: #e6eadf;
  font-size: 1rem;
}

.hero__stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 92px max(22px, calc((100vw - var(--max)) / 2));
}

.section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  font-size: 3rem;
}

.section__heading p,
.intro__copy,
.network__content p,
.request__content p,
.market p {
  color: var(--muted);
}

.intro {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.82), rgba(7, 7, 7, 0));
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 52px;
  align-items: start;
}

.intro__copy p {
  margin: 0;
}

.intro__copy p + p {
  margin-top: 18px;
}

.site-pages {
  background:
    linear-gradient(180deg, rgba(135, 183, 170, 0.08), rgba(154, 165, 143, 0.1)),
    #0b0b0a;
  border-block: 1px solid var(--line);
}

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

.page-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.24);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.page-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 1px;
  background: var(--sage);
}

.page-card span,
.card-link {
  color: #dbe2d3;
  font-weight: 900;
}

.page-card h3 {
  max-width: 15rem;
  margin: 96px 0 10px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.page-card p {
  margin: 0;
  max-width: 19rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  perspective: 1200px;
}

.service-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--surface);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
}

.service-card__media {
  position: relative;
  height: 158px;
  overflow: hidden;
  background: #111312;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.04), rgba(10, 10, 9, 0.54));
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-card__media--symbol {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(115, 198, 182, 0.12), rgba(154, 165, 143, 0.1)),
    #141817;
}

.service-card__media--symbol img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  opacity: 0.92;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px 22px;
}

.service-card--highlight {
  border-color: rgba(115, 198, 182, 0.42);
  background:
    linear-gradient(180deg, rgba(115, 198, 182, 0.12), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.service-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 165, 143, 0.42);
  border-radius: 8px;
  color: #dbe2d3;
  font-weight: 900;
  transition: transform 220ms ease;
}

.service-card h3,
.market h3,
.request-summary h3 {
  margin: 22px 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p,
.timeline span,
.trust-list span {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card--auto-service {
  position: relative;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card:hover {
  border-color: rgba(154, 165, 143, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
  transform: translateY(-5px) rotateX(1.1deg) rotateY(-1.1deg);
}

.service-card:hover .service-card__icon {
  transform: translateZ(20px);
}

.service-card .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.service-grid--home .service-card {
  min-height: 420px;
}

.service-grid--home .service-card__body {
  min-height: 220px;
}

.mini-list,
.check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.mini-list li,
.check-list li {
  position: relative;
  padding-left: 18px;
}

.mini-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.auto-preview {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 0.96fr);
  gap: 44px;
  align-items: center;
}

.auto-preview .visual-panel {
  width: 100%;
  min-height: clamp(430px, 42vw, 575px);
  align-self: center;
}

.auto-preview__content h2,
.auto-preview__content p {
  margin-bottom: 20px;
}

.visual-panel {
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.26);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-panel--car img {
  object-position: left bottom;
}

.visual-panel--car img.image-focus-mercedes {
  object-position: 58% center;
}

.visual-panel--car img.image-focus-sclass,
.service-card__media img.image-focus-sclass {
  object-position: 52% center;
}

.visual-panel--tall img {
  aspect-ratio: 3 / 4;
}

.feature-points,
.operations-grid,
.budget-grid,
.launch-board {
  display: grid;
  gap: 12px;
}

.feature-points {
  margin: 24px 0;
}

.feature-points div,
.operations-grid div,
.budget-grid div,
.launch-board div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.operations-grid div {
  position: relative;
  overflow: hidden;
}

.operations-grid div::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), transparent);
  box-shadow: 0 -10px 28px rgba(210, 194, 162, 0.22);
  opacity: 0;
  transform: translateY(6px) scaleX(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-points div:hover,
.operations-grid div:hover,
.budget-grid div:hover,
.launch-board div:hover,
.trust-list div:hover {
  border-color: rgba(154, 165, 143, 0.5);
  background: rgba(154, 165, 143, 0.06);
  transform: translateY(-3px);
}

.operations-grid div:hover {
  border-color: rgba(210, 194, 162, 0.52);
  background:
    linear-gradient(180deg, rgba(210, 194, 162, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.operations-grid div:hover::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.feature-points strong,
.operations-grid strong,
.budget-grid strong,
.launch-board strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-points span,
.operations-grid span,
.budget-grid span,
.launch-board span {
  color: var(--muted);
}

.operations {
  border-top: 1px solid var(--line);
}

.operations-grid,
.budget-grid,
.launch-board {
  grid-template-columns: repeat(4, 1fr);
}

.process {
  background:
    linear-gradient(180deg, rgba(154, 165, 143, 0.12), rgba(135, 183, 170, 0.08)),
    #0b0b0a;
  border-block: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline li {
  min-height: 210px;
  padding: 22px;
  background: rgba(10, 10, 9, 0.92);
}

.timeline li::before {
  content: counter(list-item, decimal-leading-zero);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: rgba(154, 165, 143, 0.18);
  color: #e7ecdf;
  font-weight: 900;
}

.timeline strong,
.trust-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.25;
}

.network {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.network__visual {
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.24);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.network__visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.network__content h2 {
  margin-bottom: 18px;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.trust-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.market {
  background: var(--paper);
  color: #15120e;
}

.market .section__label {
  color: var(--sage-dark);
}

.market h2 {
  max-width: 760px;
  color: #15120e;
}

.market__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.market__grid div {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(21, 18, 14, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.market p {
  color: #5c5144;
}

.partnership-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(154, 165, 143, 0.13), rgba(135, 183, 170, 0.08)),
    #0b0b0a;
}

.partnership-strip h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.partnership-strip p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 72svh;
  padding: 150px max(22px, calc((100vw - var(--max)) / 2)) 34px;
  overflow: hidden;
  background-image: url("assets/service-logistics.jpg");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.page-hero--auto {
  background-image: url("assets/service-broker-auto-hero.png");
  background-position: center;
  align-items: center;
  min-height: 76svh;
}

.page-hero--auto .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.54) 48%, rgba(5, 5, 5, 0.78)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.12) 50%, rgba(5, 5, 5, 0.74));
}

.page-hero--process {
  background-image: url("assets/service-business.jpg");
  background-position: center bottom;
}

.page-hero--about {
  background-image: url("assets/service-business.jpg");
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.62) 52%, rgba(5, 5, 5, 0.82)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.18) 48%, rgba(5, 5, 5, 0.72));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-bottom: 34px;
}

.page-hero--auto .page-hero__content {
  width: min(640px, 100%);
  padding-bottom: 22px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 4.1rem;
  font-weight: 500;
  line-height: 1;
}

.page-hero--auto h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.35rem);
  font-weight: 500;
  line-height: 0.98;
}

.page-hero p {
  max-width: 710px;
  color: #e5ddd1;
  font-size: 1.12rem;
}

.page-hero--auto .page-hero__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(242, 239, 232, 0.86);
  font-size: 1.06rem;
}

.page-hero--auto .hero__actions {
  margin-top: 26px;
}

.page-hero--auto .button {
  min-height: 46px;
  border-radius: 999px;
  padding-inline: 20px;
}

.page-hero--auto .button--primary {
  background: rgba(242, 239, 232, 0.94);
  box-shadow: 0 18px 54px rgba(242, 239, 232, 0.12);
}

.page-hero--auto .button--ghost {
  border-color: rgba(242, 239, 232, 0.24);
  background: rgba(5, 5, 5, 0.28);
  backdrop-filter: blur(12px);
}

.page-hero__kpis {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(940px, 100%);
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.26);
  border-radius: 8px;
  background: rgba(154, 165, 143, 0.18);
  box-shadow: var(--shadow);
}

.page-hero--auto .page-hero__kpis {
  width: min(900px, 100%);
  border-color: rgba(242, 239, 232, 0.18);
  background: rgba(242, 239, 232, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.page-hero__kpis div {
  min-height: 104px;
  padding: 20px;
  background: rgba(12, 12, 11, 0.84);
}

.page-hero--auto .page-hero__kpis div {
  min-height: 92px;
  padding: 18px 20px;
  background: rgba(8, 9, 9, 0.62);
  backdrop-filter: blur(12px);
}

.page-hero__kpis strong,
.page-hero__kpis span {
  display: block;
}

.page-hero__kpis strong {
  color: #e6eadf;
}

.page-hero--auto .page-hero__kpis strong {
  font-family: var(--sans);
  font-size: 0.92rem;
}

.page-hero__kpis span {
  margin-top: 6px;
  color: var(--muted);
}

.auto-subnav {
  position: sticky;
  z-index: 14;
  top: 76px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: rgba(8, 9, 9, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.auto-subnav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(154, 165, 143, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #e6eadf;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 9px 13px;
  transition:
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.auto-subnav a:hover,
.auto-subnav a:focus-visible {
  border-color: rgba(135, 183, 170, 0.62);
  background: rgba(135, 183, 170, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.auto-subnav span {
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.auto-section {
  scroll-margin-top: 130px;
}

.vehicle-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  padding-top: 32px;
}

.vehicle-showcase__card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.28);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.86)),
    url("assets/service-broker-poster.png") center / cover,
    #050505;
  box-shadow: var(--shadow);
}

.vehicle-showcase__card--car {
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.84)),
    url("assets/car-mercedes-sclass-2026.jpg");
  background-position: 54% center;
}

.vehicle-showcase__card--route {
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.84)),
    url("assets/car-rav4.jpg");
  background-position: center;
}

.vehicle-showcase__card--port {
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.84)),
    url("assets/car-lamborghini.jpg");
  background-position: center;
}

.vehicle-showcase__card span {
  color: #dfe7d8;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-showcase__card strong {
  max-width: 18rem;
  margin-top: 8px;
  font-size: 1.38rem;
  line-height: 1.18;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.auto-parts {
  background: var(--paper);
  color: var(--ink);
}

.auto-parts h2,
.auto-parts h3 {
  color: var(--ink);
}

.auto-parts .section__label {
  color: var(--sage-dark);
}

.auto-parts .section__heading p,
.parts-grid p {
  color: #575b54;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.parts-grid article {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(154, 165, 143, 0.08)),
    #fff;
  padding: 20px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.parts-grid article::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--sage), var(--teal), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 220ms ease, transform 220ms ease;
}

.parts-grid article:hover {
  border-color: rgba(101, 114, 95, 0.38);
  box-shadow: 0 24px 60px rgba(23, 24, 23, 0.12);
  transform: translateY(-6px);
}

.parts-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.parts-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101, 114, 95, 0.22);
  border-radius: 999px;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
}

.parts-grid h3 {
  margin: 12px 0 0;
  font-size: 1.22rem;
  line-height: 1.14;
}

.parts-grid p {
  margin: 0;
}

.showroom {
  background:
    radial-gradient(circle at 20% 20%, rgba(154, 165, 143, 0.16), transparent 28rem),
    #0a0a09;
  border-block: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-select-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 420px));
  gap: 16px;
  align-items: end;
  margin: 0 0 24px;
}

.filter-select {
  display: grid;
  gap: 8px;
  width: min(100%, 420px);
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-select-row .filter-select {
  width: 100%;
  margin: 0;
}

.filter-select select {
  min-height: 48px;
  border: 1px solid rgba(154, 165, 143, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 10px 14px;
  outline: none;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.filter-select select:focus {
  border-color: rgba(154, 165, 143, 0.74);
  box-shadow: 0 0 0 3px rgba(154, 165, 143, 0.16);
}

.filter-select option {
  background: #111312;
  color: var(--text);
}

.filter-select option:disabled {
  color: rgba(198, 192, 183, 0.34);
}

.filter-chip {
  min-height: 42px;
  border: 1px solid rgba(154, 165, 143, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  padding: 9px 14px;
  font-weight: 900;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, #bfc9b5, #f2efe8);
  color: #141614;
}

.sport-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid rgba(154, 165, 143, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(38, 55, 76, 0.36), rgba(154, 165, 143, 0.12)),
    #111312;
}

.sport-focus span {
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sport-focus h3 {
  max-width: 640px;
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.sport-focus p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

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

.sport-focus__grid div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(154, 165, 143, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.sport-focus__grid strong {
  color: var(--text);
  font-size: 1rem;
}

.sport-focus__grid span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  perspective: 1300px;
}

.car-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.22);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    background 220ms ease;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.car-card:hover,
.car-card:focus-visible {
  border-color: rgba(154, 165, 143, 0.55);
  background: #1d211e;
  transform: translateY(-5px) rotateX(1deg) rotateY(-1deg);
  outline: none;
}

.car-card.is-hidden {
  display: none;
}

.car-card.is-hiding {
  opacity: 0;
  filter: blur(7px);
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
}

.car-card.is-filtered-in {
  animation: cardFilterIn 340ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.tech-card.is-hidden {
  display: none;
}

.car-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.car-card__image--center {
  object-position: center center;
}

.car-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.car-card__body span {
  color: #dfe7d8;
  font-weight: 900;
  text-transform: uppercase;
}

.car-card h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.12;
}

.car-card p {
  margin: 0;
  color: var(--muted);
}

.car-card dl {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.car-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.car-card dt {
  color: #dfe7d8;
  font-weight: 900;
}

.car-card dd {
  margin: 0;
  color: var(--text);
  text-align: right;
}

.car-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.car-card__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(154, 165, 143, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #e7ecdf;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.car-card__links a:hover,
.car-card__links a:focus-visible {
  border-color: rgba(135, 183, 170, 0.72);
  background: rgba(135, 183, 170, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1.15fr);
  gap: 22px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(154, 165, 143, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(154, 165, 143, 0.12), rgba(255, 255, 255, 0.03)),
    #111312;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    filter 260ms ease,
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  perspective: 1300px;
}

.tech-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.22);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  transform-style: preserve-3d;
}

.tech-card:hover,
.tech-card:focus-visible {
  border-color: rgba(154, 165, 143, 0.56);
  background: #1d211e;
  transform: translateY(-5px) rotateX(1deg) rotateY(-1deg);
  outline: none;
}

.tech-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.tech-card div {
  padding: 20px;
}

.tech-card span,
.tech-panel span,
.article-card span,
.article-reader span {
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-card h3,
.article-card h3 {
  margin: 8px 0;
  font-size: 1.34rem;
  line-height: 1.12;
}

.tech-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.tech-panel,
.article-reader {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 1.12fr);
  gap: 22px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(154, 165, 143, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(154, 165, 143, 0.1), rgba(255, 255, 255, 0.03)),
    #111312;
}

.tech-panel h3,
.article-reader h3 {
  margin: 8px 0 10px;
  font-size: 2rem;
  line-height: 1.08;
}

.tech-panel p,
.article-reader p {
  margin: 0;
  color: var(--muted);
}

.tech-panel ul,
.article-reader ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-panel li,
.article-reader li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.filter-chip.is-unavailable,
.filter-chip:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.knowledge-hub {
  background: var(--paper);
  color: var(--ink);
}

.knowledge-hub .section__label {
  color: var(--sage-dark);
}

.knowledge-hub h2,
.knowledge-hub h3 {
  color: var(--ink);
}

.knowledge-hub p {
  color: #5f625d;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(23, 24, 23, 0.1);
}

.text-button {
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: #1b1d1b;
  color: var(--text);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 900;
  padding: 10px 14px;
}

.article-reader {
  background: #fff;
  color: var(--ink);
}

.article-reader p,
.article-reader li {
  color: #50544e;
}

.article-reader li {
  border-color: rgba(23, 24, 23, 0.12);
  background: rgba(154, 165, 143, 0.08);
}

.empty-cars {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid rgba(154, 165, 143, 0.34);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.brand-panel.is-active {
  border-color: rgba(154, 165, 143, 0.58);
}

.brand-panel.is-panel-enter {
  animation: panelSoftFocus 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-panel span {
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-panel h3 {
  margin: 8px 0 10px;
  font-size: 2rem;
  line-height: 1.08;
}

.brand-panel p {
  margin: 0;
  color: var(--muted);
}

.brand-panel__notes {
  display: grid;
  gap: 10px;
}

.brand-panel__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(154, 165, 143, 0.46);
  border-radius: 8px;
  background: rgba(242, 239, 232, 0.92);
  color: #131513;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 10px 14px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.brand-panel__link[hidden] {
  display: none;
}

.brand-panel__link:hover,
.brand-panel__link:focus-visible {
  border-color: rgba(242, 239, 232, 0.85);
  background: #fff;
  outline: none;
  transform: translateY(-1px);
}

.brand-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-panel li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.brand-panel__catalog {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(154, 165, 143, 0.24);
  padding-top: 18px;
}

.brand-panel__catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.brand-panel__catalog-head strong {
  color: var(--text);
  font-size: 1.12rem;
}

.brand-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.brand-catalog-card {
  display: grid;
  gap: 8px;
  min-height: 172px;
  border: 1px solid rgba(154, 165, 143, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(135, 183, 170, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  padding: 16px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.brand-catalog-card:hover {
  border-color: rgba(135, 183, 170, 0.6);
  background:
    linear-gradient(180deg, rgba(135, 183, 170, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.brand-catalog-card h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.16;
}

.brand-catalog-card p {
  margin: 0;
  font-size: 0.95rem;
}

.brand-catalog-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: auto;
  border: 1px solid rgba(242, 239, 232, 0.18);
  border-radius: 8px;
  background: rgba(242, 239, 232, 0.92);
  color: #131513;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 8px 11px;
}

.brand-catalog-card a:hover,
.brand-catalog-card a:focus-visible {
  background: #fff;
  outline: none;
}

.brand-catalog-empty {
  margin: 0;
  border: 1px solid rgba(154, 165, 143, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 18px;
}

.split-feature p {
  color: var(--muted);
}

.order-studio {
  background: var(--paper);
  color: var(--ink);
}

.order-studio .section__label {
  color: var(--sage-dark);
}

.order-studio h2,
.order-studio h3 {
  color: var(--ink);
}

.order-studio p {
  color: #5f625d;
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.875fr);
  gap: 14px;
}

.order-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 60px rgba(23, 24, 23, 0.08);
}

.order-card--large {
  grid-row: span 2;
}

.order-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.order-card--large img {
  height: 420px;
}

.order-card div {
  padding: 22px;
}

.order-card span,
.detail-card--media span {
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-card h3 {
  margin: 8px 0 8px;
  font-size: 1.5rem;
  line-height: 1.12;
}

.case-flow {
  background: var(--paper);
  color: var(--ink);
}

.case-flow .section__label {
  color: var(--sage-dark);
}

.case-flow h2,
.case-flow h3 {
  color: var(--ink);
}

.case-flow p {
  color: #5f625d;
}

.case-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-flow__grid article {
  overflow: hidden;
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-flow__grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(23, 24, 23, 0.12);
}

.case-flow__grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-flow__grid span,
.case-flow__grid h3,
.case-flow__grid p {
  margin-inline: 20px;
}

.case-flow__grid span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-weight: 900;
}

.case-flow__grid h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.16;
}

.case-flow__grid p {
  margin-bottom: 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-grid--two {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.detail-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.detail-card:hover {
  border-color: rgba(154, 165, 143, 0.52);
  background:
    linear-gradient(180deg, rgba(154, 165, 143, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
  transform: translateY(-3px);
}

.car-type-grid .detail-card {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.car-type-grid .detail-card:hover,
.car-type-grid .detail-card:focus-visible {
  border-color: rgba(154, 165, 143, 0.56);
  background: #1d211e;
  transform: translateY(-3px);
  outline: none;
}

.detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.detail-card p {
  color: var(--muted);
}

.detail-card--media {
  padding: 0;
  overflow: hidden;
}

.detail-card--media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.detail-card--media h3,
.detail-card--media p {
  margin-inline: 22px;
}

.detail-card--media h3 {
  margin-top: 20px;
}

.detail-card--media p {
  margin-bottom: 22px;
}

.detail-card--image {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}

.detail-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.garage-lanes {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(154, 165, 143, 0.09)),
    #0b0b0a;
}

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

.lane-card {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 143, 0.26);
  border-radius: 8px;
  padding: 24px;
  background: #050505;
  box-shadow: var(--shadow);
}

.lane-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.9)),
    var(--lane-image) center / cover;
}

.lane-card > * {
  position: relative;
  z-index: 1;
}

.lane-card--daily {
  --lane-image: url("assets/car-nissan-rogue-2027.jpg");
}

.lane-card--luxury {
  --lane-image: url("assets/car-ferrari.jpg");
}

.lane-card span {
  color: #dfe7d8;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lane-card h3 {
  max-width: 22rem;
  margin: 8px 0 10px;
  font-size: 2rem;
  line-height: 1.08;
}

.lane-card p {
  max-width: 34rem;
  color: #e5ddd1;
}

.steps-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-detailed li {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 9, 0.92);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.steps-detailed li:hover {
  border-color: rgba(154, 165, 143, 0.48);
  background: rgba(18, 21, 18, 0.94);
  transform: translateY(-3px);
}

.steps-detailed li::before {
  content: counter(list-item, decimal-leading-zero);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: rgba(154, 165, 143, 0.18);
  color: #e7ecdf;
  font-weight: 900;
}

.steps-detailed strong,
.steps-detailed span {
  display: block;
}

.steps-detailed span {
  margin-top: 8px;
  color: var(--muted);
}

.pricing-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
  background: #f4efe4;
  color: #15120e;
}

.buyer-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: start;
}

.buyer-board__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.buyer-board__grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.buyer-board__grid strong,
.buyer-board__grid span {
  display: block;
}

.buyer-board__grid strong {
  margin-bottom: 6px;
  color: var(--text);
}

.buyer-board__grid span {
  color: var(--muted);
}

.pricing-note h2 {
  color: #15120e;
}

.pricing-note .section__label {
  color: var(--sage-dark);
}

.pricing-note .budget-grid div {
  border-color: rgba(21, 18, 14, 0.12);
  background: rgba(255, 255, 255, 0.54);
}

.pricing-note .budget-grid strong {
  color: #15120e;
}

.pricing-note .budget-grid span {
  color: #5c5144;
}

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

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(154, 165, 143, 0.14), rgba(135, 183, 170, 0.08)),
    #0b0b0a;
}

.mini-cta h2 {
  max-width: 800px;
  font-size: 2.55rem;
}

.request {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1.22fr);
  gap: 42px;
  align-items: start;
}

.request__content {
  position: sticky;
  top: 100px;
}

.request__content h2 {
  margin-bottom: 18px;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(154, 165, 143, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(154, 165, 143, 0.1), rgba(255, 255, 255, 0.03)),
    var(--surface);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #dfe7d8;
  font-weight: 800;
}

.request-contact-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
  padding: 14px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.request-contact-group__title,
.request-form__error {
  grid-column: 1 / -1;
}

.request-contact-group__title {
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.request-form.has-contact-error .request-contact-group {
  border-color: rgba(224, 86, 86, 0.86);
  background: linear-gradient(180deg, rgba(224, 86, 86, 0.14), rgba(224, 86, 86, 0.035));
  box-shadow:
    inset 0 0 0 1px rgba(224, 86, 86, 0.22),
    0 0 0 4px rgba(224, 86, 86, 0.12);
}

.request-form.has-contact-error input[aria-invalid="true"] {
  border-color: rgba(224, 86, 86, 0.95);
  box-shadow: 0 0 0 3px rgba(224, 86, 86, 0.18);
}

.request-form__error {
  margin: 0;
  color: #ffb8b8;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.request-form__wide {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: 8px;
  background: rgba(4, 4, 4, 0.52);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(154, 165, 143, 0.16);
}

.request-summary {
  padding: 18px;
  border: 1px solid rgba(115, 198, 182, 0.34);
  border-radius: 8px;
  background: rgba(115, 198, 182, 0.08);
}

.request-summary h3 {
  margin-top: 0;
}

.request-summary p {
  color: #e5ddd1;
  white-space: pre-line;
}

.request-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.request-summary__actions .button {
  min-width: min(100%, 220px);
}

.request-receipt {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(209, 220, 199, 0.28);
  border-radius: 8px;
  background: rgba(209, 220, 199, 0.1);
  color: #edf2e8;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.55;
}

.services.section,
.auto-preview.section,
.vehicle-showcase.section,
.showroom,
.split-feature,
.order-studio,
.case-flow,
.service-detail-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services.section > *,
.auto-preview.section > *,
.vehicle-showcase.section > *,
.showroom > *,
.split-feature > *,
.order-studio > *,
.case-flow > *,
.service-detail-section > * {
  position: relative;
  z-index: 1;
}

.services.section::before,
.auto-preview.section::before,
.vehicle-showcase.section::before,
.showroom::before,
.split-feature::before,
.order-studio::before,
.case-flow::before,
.service-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(135, 183, 170, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 165, 143, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.26;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  animation: gridDrift 18s linear infinite;
}

.order-studio::before,
.case-flow::before {
  background-image:
    linear-gradient(rgba(23, 24, 23, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 114, 95, 0.08) 1px, transparent 1px);
  opacity: 0.34;
}

.service-card,
.vehicle-showcase__card,
.car-card,
.tech-card,
.order-card,
.article-card,
.detail-card,
.steps-detailed li,
.case-flow__grid article,
.feature-points div,
.sport-focus,
.brand-panel,
.tech-panel,
.article-reader {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 320ms ease,
    filter 320ms ease;
}

.service-card::before,
.vehicle-showcase__card::before,
.car-card::before,
.tech-card::before,
.order-card::before,
.article-card::before,
.detail-card::before,
.steps-detailed li::after,
.case-flow__grid article::before,
.feature-points div::before,
.sport-focus::before,
.brand-panel::before,
.tech-panel::before,
.article-reader::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -32%;
  bottom: -32%;
  left: -48%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(242, 239, 232, 0.22), transparent);
  opacity: 0;
  transform: translateX(-140%) skewX(-18deg);
}

.service-card:hover::before,
.vehicle-showcase__card:hover::before,
.car-card:hover::before,
.car-card:focus-visible::before,
.tech-card:hover::before,
.tech-card:focus-visible::before,
.order-card:hover::before,
.article-card:hover::before,
.detail-card:hover::before,
.steps-detailed li:hover::after,
.case-flow__grid article:hover::before,
.feature-points div:hover::before,
.sport-focus:hover::before,
.brand-panel.is-active::before,
.tech-panel.is-active::before,
.article-reader.is-active::before,
.service-card.motion-reveal.is-visible::before,
.vehicle-showcase__card.motion-reveal.is-visible::before,
.car-card.motion-reveal.is-visible::before,
.tech-card.motion-reveal.is-visible::before {
  opacity: 1;
  animation: sweepAcross 920ms ease both;
}

.service-card:hover,
.vehicle-showcase__card:hover,
.car-card:hover,
.car-card:focus-visible,
.tech-card:hover,
.tech-card:focus-visible,
.order-card:hover,
.article-card:hover,
.detail-card:hover,
.steps-detailed li:hover,
.case-flow__grid article:hover,
.feature-points div:hover,
.sport-focus:hover {
  border-color: rgba(135, 183, 170, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(135, 183, 170, 0.16),
    inset 0 -4px 0 rgba(135, 183, 170, 0.48);
  filter: saturate(1.08);
  transform: translateY(-10px) rotateX(2.6deg) rotateY(-1.8deg) scale(1.01);
}

.order-card:hover,
.article-card:hover,
.case-flow__grid article:hover {
  box-shadow:
    0 28px 70px rgba(23, 24, 23, 0.18),
    inset 0 -4px 0 rgba(101, 114, 95, 0.34);
}

.service-card__media img,
.car-card img,
.tech-card img,
.order-card img,
.case-flow__grid img,
.detail-card--media img,
.visual-panel img {
  transition:
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

.service-card:hover .service-card__media img,
.car-card:hover img,
.car-card:focus-visible img,
.tech-card:hover img,
.tech-card:focus-visible img,
.order-card:hover img,
.case-flow__grid article:hover img,
.detail-card--media:hover img,
.visual-panel:hover img {
  filter: contrast(1.06) saturate(1.14);
  transform: scale(1.08);
}

.service-card__icon,
.steps-detailed li::before {
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-card:hover .service-card__icon,
.steps-detailed li:hover::before {
  border-color: rgba(242, 239, 232, 0.44);
  background: rgba(135, 183, 170, 0.22);
  box-shadow: 0 12px 32px rgba(135, 183, 170, 0.18);
  transform: translateZ(28px) scale(1.08);
}

.feature-points div::after,
.sport-focus::after,
.brand-panel::after,
.tech-panel::after,
.article-reader::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  z-index: 2;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--teal), var(--sage), transparent);
  opacity: 0;
  transform-origin: center;
  transform: scaleX(0.38);
}

.feature-points div:hover::after,
.sport-focus:hover::after,
.brand-panel.is-active::after,
.tech-panel.is-active::after,
.article-reader.is-active::after {
  animation: linePulse 900ms ease both;
}

.auto-preview .visual-panel,
.split-feature .visual-panel {
  transform-style: preserve-3d;
  animation: floatPanel 7s ease-in-out infinite;
}

.auto-preview .visual-panel img,
.split-feature .visual-panel img {
  animation: imageBreath 9s ease-in-out infinite;
}

.split-feature .visual-panel--still,
.split-feature .visual-panel--still img,
.auto-preview .visual-panel--still,
.auto-preview .visual-panel--still img {
  opacity: 1;
  filter: none;
  animation: none;
  transform: none;
  will-change: auto;
}

.split-feature .visual-panel--still.motion-reveal,
.split-feature .visual-panel--still.motion-reveal.is-visible,
.auto-preview .visual-panel--still.motion-reveal,
.auto-preview .visual-panel--still.motion-reveal.is-visible {
  opacity: 1;
  filter: none;
  animation: none;
  transform: none;
  will-change: auto;
}

.split-feature .visual-panel--still img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  background: #050505;
}

.auto-preview .visual-panel--still img {
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 48% center;
  background: #050505;
}

.split-feature .visual-panel--still:hover img,
.auto-preview .visual-panel--still:hover img {
  filter: none;
  transform: none;
}

.vehicle-showcase__card strong,
.service-card__body,
.car-card__body,
.tech-card div,
.order-card div,
.detail-card > *,
.steps-detailed li > *,
.case-flow__grid article > * {
  position: relative;
  z-index: 3;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.site-footer div {
  display: grid;
  gap: 4px;
  margin-right: auto;
}

.site-footer span {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer a {
  color: #dfe7d8;
  font-weight: 800;
}

.no-3d-motion .motion-reveal,
.no-3d-motion .motion-reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
  will-change: auto;
}

.no-3d-motion [data-3d-scene] {
  display: none;
}

.no-3d-motion .case-flow::before,
.no-3d-motion .split-feature::before {
  animation: none;
  opacity: 0;
}

.no-3d-motion .case-flow__grid article::before,
.no-3d-motion .feature-points div::before,
.no-3d-motion .detail-card::before,
.no-3d-motion .steps-detailed li::after {
  display: none;
}

.no-3d-motion .case-flow__grid article,
.no-3d-motion .feature-points div,
.no-3d-motion .detail-card,
.no-3d-motion .steps-detailed li,
.no-3d-motion .split-feature .visual-panel,
.no-3d-motion .split-feature .visual-panel img,
.no-3d-motion .case-flow__grid img {
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

.no-3d-motion .case-flow__grid article:hover,
.no-3d-motion .feature-points div:hover,
.no-3d-motion .detail-card:hover,
.no-3d-motion .steps-detailed li:hover,
.no-3d-motion .split-feature .visual-panel:hover img {
  transform: none !important;
  filter: none !important;
}

.hero h1,
.page-hero h1,
.section h2,
.intro__grid h2,
.network__content h2,
.market h2,
.auto-parts h2,
.order-studio h2,
.case-flow h2,
.pricing-note h2,
.mini-cta h2,
.request__content h2,
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

.hero__lead,
.page-hero p,
.section__heading p,
.intro__copy,
.network__content p,
.request__content p,
.market p,
.car-card p,
.tech-card p,
.order-card p,
.brand-panel p,
.article-card p,
.article-reader p,
.case-flow p,
.steps-detailed p,
.buyer-board p {
  font-family: var(--body);
  font-weight: 400;
}

.brand,
.button,
.site-nav a,
.site-search input,
.eyebrow,
.section__label,
.filter-label,
.filter-chip,
.filter-select,
.auto-subnav a,
.brand-panel__link,
.car-card__links a,
.text-button,
.copy-button {
  font-family: var(--sans);
  font-weight: 700;
}

.hero__stats strong,
.page-hero__kpis strong,
.service-card h3,
.page-card h3,
.vehicle-showcase__card strong,
.feature-points strong,
.operations-grid strong,
.budget-grid strong,
.launch-board strong,
.timeline strong,
.trust-list strong,
.car-card h3,
.car-card dt,
.tech-card h3,
.order-card h3,
.brand-panel__catalog-head strong,
.brand-catalog-card h4,
.steps-detailed strong,
.buyer-board__grid strong {
  font-family: var(--display);
  font-weight: 500;
}

.photo-credits {
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  background: #050505;
  color: #8f8678;
  font-size: 0.78rem;
}

.photo-credits a {
  color: #dfe7d8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .brand span {
    display: none;
  }

  .site-header {
    gap: 12px;
    grid-template-columns: minmax(64px, 1fr) minmax(220px, 380px) minmax(44px, 1fr);
  }

  .site-search {
    width: min(100%, 360px);
    max-width: 360px;
    min-width: 170px;
  }

  .site-nav {
    font-size: 0.94rem;
  }
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .section h2 {
    font-size: 2.45rem;
  }

  .section__heading,
  .intro__grid,
  .network,
  .request,
  .auto-preview,
  .split-feature,
  .partnership-strip,
  .pricing-note {
    grid-template-columns: 1fr;
  }

  .request__content {
    position: static;
  }

  .sport-focus {
    grid-template-columns: 1fr;
  }

.service-grid,
.market__grid,
.page-card-grid,
.detail-grid,
.parts-grid,
.steps-detailed,
.operations-grid,
  .budget-grid,
  .launch-board,
  .vehicle-showcase,
  .car-grid,
  .brand-panel,
  .brand-catalog-grid,
  .tech-grid,
  .tech-panel,
  .article-grid,
  .article-reader,
  .buyer-board,
  .buyer-board__grid,
  .order-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-flow__grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline li {
    min-height: auto;
  }

  .timeline li::before {
    margin-bottom: 18px;
  }

  .page-hero h1 {
    font-size: 3.25rem;
  }

  .auto-subnav {
    top: 72px;
  }

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

@media (max-width: 1180px) {
  .site-search {
    width: min(100%, 420px);
    max-width: 460px;
    min-width: 0;
  }

  .site-nav {
    left: 22px;
    right: 22px;
    width: auto;
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 12px 18px;
  }

  .site-search {
    width: min(100%, 250px);
    max-width: min(52vw, 250px);
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .site-nav {
    left: 18px;
    right: 18px;
  }

  .partnership-strip {
    align-items: flex-start;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle {
    min-width: 98px;
    height: 44px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: min(670px, 78svh);
    padding: 86px 18px 28px;
    background-position: 52% center;
  }

  .page-hero__3d {
    opacity: 0.52;
    mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 88%);
  }

  .hero__content {
    padding: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__lead {
    max-width: 480px;
    font-size: 1rem;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .hero__actions {
    align-items: flex-start;
    gap: 18px;
    margin-top: 24px;
  }

  .hero .button {
    width: auto;
  }

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

  .hero__stats div {
    min-height: 64px;
    padding: 13px 10px;
  }

  .hero__stats span {
    display: none;
  }

  .section {
    padding: 68px 18px;
  }

  .section h2 {
    font-size: 2.15rem;
  }

  .page-hero {
    min-height: auto;
    padding: 104px 18px 20px;
  }

  .page-hero__content {
    padding-bottom: 22px;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

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

  .page-hero__kpis div {
    min-height: 66px;
    padding: 13px 10px;
  }

  .page-hero__kpis span {
    display: none;
  }

.service-grid,
.market__grid,
.request-form,
.page-card-grid,
.detail-grid,
.parts-grid,
.steps-detailed,
  .operations-grid,
  .budget-grid,
  .launch-board,
  .vehicle-showcase,
  .car-grid,
  .brand-panel,
  .brand-catalog-grid,
  .tech-grid,
  .tech-panel,
  .article-grid,
  .article-reader,
  .buyer-board,
  .buyer-board__grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .request-contact-group {
    grid-template-columns: 1fr;
  }

  .case-flow__grid {
    grid-template-columns: 1fr;
  }

  .order-card--large {
    grid-row: auto;
  }

  .order-card img,
  .order-card--large img {
    height: 240px;
  }

  .service-card {
    min-height: auto;
  }

  .page-card {
    min-height: 230px;
  }

  .vehicle-showcase__card {
    min-height: 240px;
  }

  .car-card img {
    height: 230px;
  }

  .filter-select-row {
    grid-template-columns: 1fr;
  }

  .auto-subnav {
    top: 68px;
    padding-inline: 18px;
  }

  .sport-focus {
    padding: 18px;
  }

  .sport-focus__grid {
    grid-template-columns: 1fr;
  }

  .filter-chip {
    flex: 1 1 auto;
  }

  .lane-card {
    min-height: 360px;
  }

  .lane-card h3 {
    font-size: 1.65rem;
  }

  .page-card h3 {
    margin-top: 72px;
  }

  .detail-card,
  .steps-detailed li {
    min-height: auto;
  }

  .steps-detailed li::before {
    margin-bottom: 20px;
  }

  .detail-card--image {
    min-height: 280px;
  }

  .mini-cta h2 {
    font-size: 2rem;
  }

  .site-footer {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 6px;
    padding: 8px 12px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    padding: 4px;
  }

  .site-search {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    margin-right: 42px;
    place-items: center;
    justify-self: end;
  }

  .site-search input {
    display: none;
  }

  .site-search button {
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-search svg {
    width: 16px;
    height: 16px;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 5px;
    justify-self: end;
  }

  .language-toggle {
    min-width: 36px;
    width: 36px;
    height: 36px;
    gap: 0;
    padding: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .language-toggle [data-language-option] {
    display: none;
    min-width: auto;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.64rem;
  }

  .language-toggle[data-current-language="fr"] [data-language-option="fr"],
  .language-toggle[data-current-language="en"] [data-language-option="en"] {
    display: inline-grid;
  }

  .language-toggle__icon,
  .language-toggle__divider {
    display: none;
  }

  .language-toggle[data-current-language="fr"] [data-language-option="fr"],
  .language-toggle[data-current-language="en"] [data-language-option="en"] {
    background: transparent;
    box-shadow: none;
    color: #edf2e8;
    transform: none;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 7px;
  }

  .nav-toggle span:not(.sr-only) {
    height: 1.5px;
    margin: 4px 0;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .services.section {
    padding-block: 54px;
  }

  .service-grid--home {
    gap: 10px;
  }

  .service-grid--home .service-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 126px;
  }

  .service-grid--home .service-card__media {
    height: 100%;
    min-height: 126px;
  }

  .service-grid--home .service-card__body {
    min-height: 0;
    justify-content: center;
    padding: 14px 15px;
  }

  .service-grid--home .service-card__icon,
  .service-grid--home .service-card p {
    display: none;
  }

  .service-grid--home .service-card h3 {
    margin: 0;
    font-size: 1rem;
  }

  .service-grid--home .service-card .card-link {
    margin-top: 10px;
    padding-top: 0;
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

@media (max-width: 460px) {
  .site-header {
    gap: 5px;
    padding: 7px 10px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .site-search {
    width: 34px;
    min-width: 34px;
    max-width: 34px;
    margin-right: 39px;
  }

  .site-search button {
    width: 34px;
    height: 34px;
  }

  .language-toggle {
    min-width: 34px;
    width: 34px;
    height: 34px;
    gap: 0;
    padding: 0;
    border-radius: 7px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .service-grid--home .service-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 112px;
  }

  .service-grid--home .service-card__media {
    min-height: 112px;
  }

  .service-grid--home .service-card__body {
    padding: 12px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .service-card:hover,
  .vehicle-showcase__card:hover,
  .car-card:hover,
  .car-card:focus-visible,
  .tech-card:hover,
  .tech-card:focus-visible,
  .order-card:hover,
  .article-card:hover,
  .detail-card:hover,
  .steps-detailed li:hover,
  .case-flow__grid article:hover,
  .feature-points div:hover,
  .sport-focus:hover,
  .auto-preview .visual-panel,
  .split-feature .visual-panel {
    transform: none;
  }

  .motion-reveal,
  .motion-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Editorial refinement: calmer surfaces, clearer hierarchy and more breathing room. */
.section {
  padding-block: clamp(76px, 7.5vw, 116px);
}

.section__heading {
  gap: clamp(28px, 4vw, 72px);
  margin-bottom: clamp(30px, 3.6vw, 52px);
}

.service-grid,
.page-card-grid,
.detail-grid,
.parts-grid,
.steps-detailed,
.operations-grid,
.budget-grid,
.launch-board,
.vehicle-showcase,
.car-grid,
.tech-grid,
.article-grid,
.market__grid,
.case-flow__grid {
  gap: clamp(16px, 1.7vw, 26px);
}

.services.section::before,
.auto-preview.section::before,
.vehicle-showcase.section::before,
.showroom::before,
.split-feature::before,
.order-studio::before,
.case-flow::before,
.service-detail-section::before {
  opacity: 0.1;
  animation: none;
}

.service-card::before,
.vehicle-showcase__card::before,
.car-card::before,
.tech-card::before,
.order-card::before,
.article-card::before,
.detail-card::before,
.steps-detailed li::after,
.case-flow__grid article::before,
.feature-points div::before,
.sport-focus::before,
.brand-panel::before,
.tech-panel::before,
.article-reader::before {
  display: none;
}

.service-card,
.car-card,
.tech-card,
.order-card,
.article-card,
.detail-card,
.steps-detailed li,
.case-flow__grid article,
.parts-grid article {
  border-color: rgba(154, 165, 143, 0.18);
  border-radius: 6px;
  box-shadow: none;
  transform: none;
}

.service-card:hover,
.vehicle-showcase__card:hover,
.car-card:hover,
.car-card:focus-visible,
.tech-card:hover,
.tech-card:focus-visible,
.order-card:hover,
.article-card:hover,
.detail-card:hover,
.steps-detailed li:hover,
.case-flow__grid article:hover,
.feature-points div:hover,
.sport-focus:hover {
  border-color: rgba(154, 165, 143, 0.42);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  filter: none;
  transform: translateY(-4px);
}

.service-card:hover .service-card__media img,
.car-card:hover img,
.car-card:focus-visible img,
.tech-card:hover img,
.tech-card:focus-visible img,
.order-card:hover img,
.case-flow__grid article:hover img,
.detail-card--media:hover img,
.visual-panel:hover img {
  filter: none;
  transform: scale(1.035);
}

.auto-preview .visual-panel,
.split-feature .visual-panel,
.auto-preview .visual-panel img,
.split-feature .visual-panel img {
  animation: none;
}

.service-card {
  background: rgba(255, 255, 255, 0.028);
}

.service-grid--home .service-card {
  min-height: 390px;
}

.service-card__body {
  padding: 20px;
}

.service-card__icon {
  width: 38px;
  height: 38px;
  border-color: rgba(154, 165, 143, 0.26);
  border-radius: 6px;
}

.auto-preview {
  gap: clamp(38px, 5vw, 76px);
}

.visual-panel {
  border-color: rgba(154, 165, 143, 0.18);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.service-detail-section + .service-detail-section {
  border-top: 1px solid rgba(154, 165, 143, 0.12);
}

.visual-detail-grid {
  gap: clamp(18px, 2vw, 30px);
}

.detail-card {
  background: rgba(255, 255, 255, 0.025);
}

.detail-card--media {
  background: rgba(255, 255, 255, 0.032);
}

.detail-card--media img {
  height: 226px;
}

.feature-points,
.trust-list {
  gap: 0;
  margin-top: 26px;
}

.feature-points div,
.trust-list div {
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(154, 165, 143, 0.2);
  border-radius: 0;
  background: transparent;
}

.feature-points div:last-child,
.trust-list div:last-child {
  border-bottom: 1px solid rgba(154, 165, 143, 0.2);
}

.feature-points div:hover,
.trust-list div:hover {
  padding-inline: 12px;
  border-color: rgba(154, 165, 143, 0.42);
  background: rgba(154, 165, 143, 0.045);
  transform: none;
}

.operations-grid,
.launch-board {
  gap: 0;
  border-block: 1px solid rgba(154, 165, 143, 0.2);
}

.operations-grid div,
.launch-board div {
  min-height: 154px;
  padding: 22px 18px;
  border: 0;
  border-right: 1px solid rgba(154, 165, 143, 0.18);
  border-radius: 0;
  background: transparent;
}

.operations-grid div:last-child,
.launch-board div:last-child {
  border-right: 0;
}

.operations-grid div:hover,
.launch-board div:hover {
  border-color: rgba(154, 165, 143, 0.28);
  background: rgba(154, 165, 143, 0.05);
  transform: none;
}

.operations-grid div::after {
  height: 2px;
}

.market__grid {
  gap: 18px;
}

.market__grid div {
  min-height: 184px;
  padding: 24px;
  border-color: rgba(21, 18, 14, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
}

.timeline {
  gap: 14px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.timeline li {
  min-height: 196px;
  border: 1px solid rgba(154, 165, 143, 0.18);
  border-radius: 6px;
  background: rgba(10, 10, 9, 0.74);
}

.timeline li::before,
.steps-detailed li::before {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  background: rgba(154, 165, 143, 0.14);
}

.order-grid {
  gap: 20px;
}

.order-card {
  border-color: rgba(23, 24, 23, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 32px rgba(23, 24, 23, 0.05);
}

.case-flow__grid {
  gap: 20px;
}

.case-flow__grid article {
  background: rgba(255, 255, 255, 0.54);
}

.steps-detailed li {
  min-height: 202px;
  background: rgba(10, 10, 9, 0.68);
}

.parts-grid {
  gap: 18px;
}

.parts-grid article {
  min-height: 214px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(23, 24, 23, 0.045);
}

.sport-focus {
  gap: 24px;
  margin-bottom: 34px;
  border-color: rgba(154, 165, 143, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.sport-focus__grid {
  gap: 0;
  border-top: 1px solid rgba(154, 165, 143, 0.18);
}

.sport-focus__grid div {
  min-height: 104px;
  padding: 15px 16px;
  border: 0;
  border-right: 1px solid rgba(154, 165, 143, 0.16);
  border-bottom: 1px solid rgba(154, 165, 143, 0.16);
  border-radius: 0;
  background: transparent;
}

.sport-focus__grid div:nth-child(2n) {
  border-right: 0;
}

.car-grid,
.tech-grid {
  gap: clamp(18px, 2vw, 28px);
}

.car-card,
.tech-card {
  background: rgba(255, 255, 255, 0.035);
}

.car-card__body,
.tech-card div {
  padding: 18px;
}

.brand-panel,
.tech-panel,
.article-reader {
  border-color: rgba(154, 165, 143, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 980px) {
  .section {
    padding-block: 78px;
  }

  .operations-grid,
  .launch-board {
    gap: 0;
  }

  .operations-grid div:nth-child(2n),
  .launch-board div:nth-child(2n) {
    border-right: 0;
  }

  .operations-grid div:nth-child(n + 3),
  .launch-board div:nth-child(n + 3) {
    border-top: 1px solid rgba(154, 165, 143, 0.18);
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 62px;
  }

  .section__heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  .service-grid,
  .page-card-grid,
  .detail-grid,
  .parts-grid,
  .steps-detailed,
  .operations-grid,
  .budget-grid,
  .launch-board,
  .vehicle-showcase,
  .car-grid,
  .tech-grid,
  .article-grid,
  .market__grid,
  .case-flow__grid {
    gap: 14px;
  }

  .operations-grid,
  .launch-board {
    border-block: 0;
  }

  .operations-grid div,
  .launch-board div {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-top: 1px solid rgba(154, 165, 143, 0.2);
  }

  .operations-grid div:last-child,
  .launch-board div:last-child {
    border-bottom: 1px solid rgba(154, 165, 143, 0.2);
  }

  .detail-card--media img {
    height: 202px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline li,
  .steps-detailed li {
    min-height: auto;
  }

  .sport-focus {
    margin-bottom: 24px;
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .services.section {
    padding-block: 52px;
  }

  .service-grid--home {
    gap: 12px;
  }

  .service-grid--home .service-card {
    min-height: 108px;
    border-color: rgba(154, 165, 143, 0.15);
    background: rgba(255, 255, 255, 0.022);
  }

  .service-grid--home .service-card__media {
    min-height: 108px;
  }
}

/* Automotive opening: keep the image-led introduction concise. */
.page-hero--auto {
  min-height: clamp(480px, 62svh, 660px);
  padding-top: 126px;
  padding-bottom: 42px;
}

.page-hero--auto .page-hero__content {
  width: min(590px, 100%);
  padding-bottom: 0;
}

.page-hero--auto h1 {
  max-width: 650px;
  font-size: clamp(2.85rem, 5vw, 4.75rem);
}

.page-hero--auto .page-hero__content > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 18px;
}

.page-hero--auto .hero__actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-hero--auto .button {
  width: auto;
  min-height: 42px;
  padding-inline: 18px;
}

@media (max-width: 760px) {
  .page-hero--auto {
    min-height: 500px;
    padding: 108px 18px 34px;
    align-items: end;
  }

  .page-hero--auto h1 {
    max-width: 560px;
    font-size: clamp(2.45rem, 8vw, 3.65rem);
  }

  .page-hero--auto .page-hero__content > p:not(.eyebrow) {
    max-width: 540px;
    margin-top: 14px;
    font-size: 0.96rem;
  }

  .page-hero--auto .button {
    width: auto;
  }
}

@media (max-width: 460px) {
  .page-hero--auto {
    min-height: 470px;
    padding-top: 94px;
    padding-bottom: 26px;
  }

  .page-hero--auto h1 {
    font-size: 2.5rem;
  }

  .page-hero--auto .hero__actions {
    display: grid;
    width: min(100%, 300px);
  }

  .page-hero--auto .button {
    width: 100%;
  }
}
