/* =========================================================
   CHEBUBU AUTO — GLOBAL PLATFORM DESIGN SYSTEM
   Shared by every route.
   ========================================================= */

:root {
  --ink: #111417;
  --ink-soft: #1b2026;
  --ink-raised: #272d35;
  --paper: #f5f6f7;
  --paper-deep: #e5e8eb;
  --white: #ffffff;
  --ivory: #fafafa;
  --bronze: #c5161d;
  --bronze-light: #e3343a;
  --bronze-dark: #8f1117;
  --text: #14181d;
  --muted: #66707b;
  --muted-light: #a7b0ba;
  --line: rgba(20, 24, 29, 0.14);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 26px 70px rgba(17, 20, 23, 0.14);
  --container: 1320px;
  --header-height: 82px;
  --radius: 2px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family:
    "Helvetica Neue", Helvetica, Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--ink);
  background: var(--bronze-light);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--bronze-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--bronze-light);
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading h2,
.oe-copy h2,
.integration-grid h2,
.final-cta h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p,
.split-heading > div:last-child {
  max-width: 450px;
  margin: 0 0 2px auto;
}

.split-heading > div:last-child > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 245px;
  padding: 12px 0;
  border-bottom: 1px solid var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: var(--bronze);
}

.btn-primary:hover {
  background: var(--bronze-light);
}

.btn-secondary {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.btn-secondary:hover {
  color: var(--ink);
  background: var(--bronze);
  border-color: var(--bronze);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(7, 17, 31, 0.45);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--white);
}

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.btn-ghost-light:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--text);
  background: linear-gradient(
    180deg,
    rgba(250, 251, 252, 0.98) 0%,
    rgba(240, 243, 246, 0.96) 100%
  );
  border-bottom: 1px solid rgba(20, 24, 29, 0.12);
  box-shadow:
    inset 0 -2px 0 rgba(197, 22, 29, 0.78),
    0 18px 46px rgba(17, 20, 23, 0.12);
  backdrop-filter: blur(16px);
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 251, 252, 0.97);
  box-shadow:
    inset 0 -2px 0 rgba(197, 22, 29, 0.8),
    0 14px 38px rgba(17, 20, 23, 0.14);
  backdrop-filter: blur(20px);
}

.header-shell {
  display: grid;
  width: min(calc(100% - 56px), 1480px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: max-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 132px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  filter: none;
  transition:
    transform 220ms var(--ease),
    filter 220ms var(--ease);
}

.brand-mark:hover .brand-logo {
  transform: translateY(-1px);
}

.brand-mark-compact .brand-logo {
  width: 186px;
  height: 88px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 27px;
  color: rgba(20, 24, 29, 0.72);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: #d71920;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.header-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(20, 24, 29, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-search > span:first-child {
  font-size: 19px;
  font-weight: 300;
}

.btn-header {
  min-height: 40px;
  padding-inline: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #d71920 0%, #9f1419 100%);
  box-shadow: 0 10px 24px rgba(183, 24, 24, 0.25);
  font-size: 10px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
  background: transparent;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* Home hero */

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 9, 17, 0.98) 0%,
      rgba(3, 9, 17, 0.9) 31%,
      rgba(3, 9, 17, 0.42) 60%,
      rgba(3, 9, 17, 0.3) 100%
    ),
    linear-gradient(0deg, rgba(3, 9, 17, 0.85) 0%, transparent 42%),
    url("/hero.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.015);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-content {
  position: relative;
  display: grid;
  min-height: 725px;
  padding-top: 142px;
  padding-bottom: 130px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
}

.hero-copy {
  max-width: 900px;
}

.hero-copy .eyebrow {
  justify-content: space-between;
  max-width: 690px;
  margin-bottom: 38px;
}

.hero-edition {
  color: rgba(255, 255, 255, 0.42);
}

.hero-copy h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(62px, 7.1vw, 112px);
  font-weight: 520;
  letter-spacing: -0.068em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero-copy h1 > span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.hero-lead {
  max-width: 630px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.hero-side-note {
  display: flex;
  align-self: end;
  max-width: 230px;
  margin-bottom: 88px;
  flex-direction: column;
}

.vertical-rule {
  width: 1px;
  height: 72px;
  margin-bottom: 22px;
  background: var(--bronze);
}

.hero-side-note p,
.hero-side-note strong,
.hero-side-note small {
  margin: 0;
}

.hero-side-note p {
  color: var(--bronze-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-side-note strong {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-side-note small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.hero-search-dock {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  left: max(32px, calc((100vw - var(--container)) / 2));
  display: grid;
  min-height: 130px;
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 212px 1fr;
}

.hero-search-tabs {
  display: flex;
  padding: 16px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: #edeae4;
}

.hero-search-tabs button,
.hero-search-tabs a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.hero-search-tabs .is-active {
  color: var(--white);
  background: var(--ink);
}

.hero-search-form {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(240px, 1fr) minmax(210px, 0.6fr) 200px;
}

.hero-search-form label {
  display: flex;
  min-width: 0;
  padding: 25px 30px 20px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.hero-search-form label > span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.hero-search-form input,
.hero-search-form select {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  color: var(--text);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
}

.hero-search-form input::placeholder {
  color: #9da2a8;
  font-weight: 450;
}

.hero-search-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: var(--ink);
  background: var(--bronze);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 220ms var(--ease);
}

.hero-search-form button:hover {
  background: var(--bronze-light);
}

/* Signal strip */

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
  display: grid;
  min-height: 118px;
  padding: 28px 28px;
  border-left: 1px solid var(--line);
  grid-template-columns: 32px 1fr;
  align-content: center;
}

.signal-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid span {
  color: var(--bronze-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.signal-grid strong {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.signal-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  grid-column: 2;
}

/* Vehicle showcase */

.section-vehicles {
  background: var(--paper);
}

.vehicle-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.vehicle-showcase-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  transition:
    color 300ms var(--ease),
    background 300ms var(--ease),
    transform 300ms var(--ease);
}

.vehicle-showcase-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 19, 0.78) 0%, rgba(5, 11, 19, 0.18) 45%, rgba(5, 11, 19, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 11, 19, 0.65) 0%, rgba(5, 11, 19, 0.08) 64%, rgba(5, 11, 19, 0.38) 100%);
  content: "";
  transition: opacity 300ms var(--ease);
}

.vehicle-showcase-card::after {
  position: absolute;
  z-index: 2;
  inset: auto -55% -45% auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(197, 146, 90, 0.25);
  border-radius: 50%;
  content: "";
  transition: transform 500ms var(--ease);
}

.vehicle-showcase-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.vehicle-showcase-card:hover::before {
  opacity: 0.88;
}

.vehicle-showcase-card:hover::after {
  transform: scale(1.3);
}

.showcase-card-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition:
    filter 300ms var(--ease),
    transform 500ms var(--ease);
}

.vehicle-showcase-card:hover .showcase-card-image {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.08);
}

.showcase-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.vehicle-showcase-card:hover .showcase-card-top,
.vehicle-showcase-card:hover .showcase-card-copy p,
.vehicle-showcase-card:hover .showcase-card-copy div {
  color: var(--muted-light);
}

.showcase-monogram {
  position: absolute;
  z-index: 2;
  top: 58px;
  right: 12px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 230px;
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
  transition:
    color 300ms var(--ease),
    transform 400ms var(--ease);
}

.vehicle-showcase-card:hover .showcase-monogram {
  color: rgba(255, 255, 255, 0.04);
  transform: translateX(-10px);
}

.showcase-card-copy {
  position: relative;
  z-index: 3;
}

.showcase-card-copy p {
  margin: 0 0 5px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-card-copy h3 {
  margin: 0;
  font-size: clamp(27px, 2.25vw, 38px);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1;
}

.showcase-card-copy > div {
  display: flex;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  flex-direction: column;
  gap: 4px;
}

.showcase-arrow {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition:
    color 300ms var(--ease),
    border-color 300ms var(--ease),
    transform 300ms var(--ease);
}

.vehicle-showcase-card:hover .showcase-arrow {
  color: var(--ink);
  border-color: var(--bronze);
  background: var(--bronze);
  transform: rotate(45deg);
}

/* Platform architecture */

.section-platform {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 96px 96px;
}

.section-platform::after {
  position: absolute;
  top: -340px;
  right: -280px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(197, 146, 90, 0.2);
  border-radius: 50%;
  content: "";
}

.platform-heading {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1100px;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 80px;
}

.platform-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.platform-heading h2 {
  font-size: clamp(46px, 5.8vw, 82px);
}

.platform-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.75;
}

.platform-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.platform-card {
  display: flex;
  min-height: 520px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  flex-direction: column;
  background: rgba(7, 17, 31, 0.6);
  transition: background 300ms var(--ease);
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.045);
}

.platform-card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted-light);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-card-meta span:first-child {
  color: var(--bronze-light);
}

.platform-card-graphic {
  position: relative;
  height: 160px;
  margin: 46px 0;
}

.platform-card-graphic::before,
.platform-card-graphic::after,
.platform-card-graphic span {
  position: absolute;
  border: 1px solid rgba(197, 146, 90, 0.38);
  content: "";
}

.platform-card-graphic::before {
  inset: 22px 18% 20px;
  border-radius: 50%;
}

.platform-card-graphic::after {
  top: 50%;
  right: 9%;
  left: 9%;
  height: 1px;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bronze),
    transparent
  );
}

.platform-card-graphic span {
  top: 50%;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 24px rgba(197, 146, 90, 0.8);
  transform: translateY(-50%);
}

.platform-card-graphic span:nth-child(1) {
  left: 12%;
}

.platform-card-graphic span:nth-child(2) {
  left: 50%;
}

.platform-card-graphic span:nth-child(3) {
  right: 12%;
}

.platform-card h3 {
  max-width: 360px;
  margin: 0;
  font-size: 29px;
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.platform-card > p {
  max-width: 380px;
  margin: 20px 0 34px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
}

.platform-card > a {
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  color: var(--bronze-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* OE section */

.section-oe {
  background: var(--white);
}

.oe-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  align-items: center;
  gap: 110px;
}

.oe-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.oe-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 650;
}

.check-list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  color: var(--ink);
  background: var(--bronze);
  content: "✓";
  font-size: 10px;
  place-items: center;
}

.oe-console {
  position: relative;
  padding: 0 42px 40px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 52px 52px;
  box-shadow: 22px 22px 0 var(--paper-deep);
}

.console-bar {
  display: flex;
  height: 54px;
  margin: 0 -42px 44px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  color: var(--muted-light);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.console-bar span:last-child {
  color: #89bc9c;
}

.console-bar span:last-child::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #66b982;
  box-shadow: 0 0 10px #66b982;
  content: "";
}

.oe-console form label {
  display: block;
  margin-bottom: 11px;
  color: var(--bronze-light);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.oe-console form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.oe-console input {
  min-width: 0;
  height: 66px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.oe-console input:focus {
  border-color: var(--bronze);
}

.oe-console form button {
  min-width: 134px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--bronze);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oe-console form button span {
  margin-left: 20px;
}

.console-example {
  display: grid;
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr auto;
  gap: 7px;
}

.console-example span {
  color: var(--muted-light);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.console-example span:last-child {
  grid-column: 1 / -1;
}

.console-example a {
  color: var(--bronze-light);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.oe-console > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

/* Markets */

.section-markets {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.markets-heading {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  align-items: end;
  gap: 80px;
}

.markets-heading > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.market-card {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  background: transparent;
  transition:
    color 300ms var(--ease),
    background 300ms var(--ease);
}

.market-card:hover {
  color: var(--white);
  background: var(--ink);
}

.market-code {
  display: flex;
  justify-content: space-between;
  color: var(--bronze-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.market-map {
  position: relative;
  display: grid;
  height: 190px;
  margin: 28px 0 32px;
  place-items: center;
}

.market-map::before,
.market-map::after {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 50%;
  content: "";
  transition: border-color 300ms var(--ease);
}

.market-map::after {
  width: 105px;
  height: 105px;
}

.market-card:hover .market-map::before,
.market-card:hover .market-map::after {
  border-color: rgba(255, 255, 255, 0.13);
}

.market-orbit {
  width: 210px;
  height: 64px;
  border: 1px solid rgba(197, 146, 90, 0.38);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.market-dot {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 18px rgba(197, 146, 90, 0.8);
}

.market-dot-1 {
  transform: translate(-26px, 19px);
}

.market-dot-2 {
  transform: translate(46px, -7px);
}

.market-dot-3 {
  transform: translate(9px, -22px);
}

.market-card h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.market-card > p {
  max-width: 330px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.market-card:hover > p {
  color: var(--muted-light);
}

.market-link {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--bronze-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-card:hover .market-link {
  border-color: var(--line-light);
  color: var(--bronze-light);
}

/* Process */

.section-process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  min-height: 270px;
  padding-right: 36px;
}

.process-step > span {
  color: var(--bronze-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.process-line {
  position: relative;
  height: 1px;
  margin: 22px 0 36px;
  background: var(--line);
}

.process-line::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--bronze);
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.process-step:not(:last-child) .process-line::after {
  position: absolute;
  top: -3px;
  right: -2px;
  color: var(--muted);
  content: "›";
  font-size: 10px;
}

.process-step h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 250px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.process-note {
  margin: 34px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

/* Integrations */

.integration-band {
  padding: 90px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-soft);
}

.integration-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 100px;
}

.integration-grid h2 {
  font-size: clamp(37px, 4.1vw, 58px);
}

.integration-flow {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.integration-flow span {
  display: grid;
  min-width: 132px;
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-align: center;
  place-items: center;
}

.integration-flow i {
  color: var(--bronze);
  font-style: normal;
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 50%, rgba(197, 146, 90, 0.18), transparent 32%),
    var(--ink);
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.final-cta-grid::before,
.final-cta-grid::after {
  position: absolute;
  top: 50%;
  right: 6%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(197, 146, 90, 0.35);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.final-cta-grid::after {
  right: 11%;
  width: 280px;
  height: 280px;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(49px, 6.5vw, 92px);
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.final-cta-content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */

.site-footer {
  padding: 78px 0 28px;
  color: var(--text);
  border-top: 1px solid rgba(20, 24, 29, 0.1);
  background:
    linear-gradient(90deg, rgba(197, 22, 29, 0.85), transparent 38%) 0 0 / 100% 3px no-repeat,
    radial-gradient(circle at 18% 8%, rgba(197, 22, 29, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f8f9 0%, #eceff2 100%);
}

.footer-top {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.footer-brand > p {
  max-width: 350px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 34px;
}

.footer-nav-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-grid strong {
  margin-bottom: 13px;
  color: var(--bronze-dark);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav-grid a {
  width: max-content;
  max-width: 100%;
  color: rgba(20, 24, 29, 0.68);
  font-size: 12px;
  transition: color 200ms ease;
}

.footer-nav-grid a:hover {
  color: var(--bronze);
}

.footer-bottom {
  display: grid;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 24, 29, 0.12);
  grid-template-columns: 1fr 1.5fr auto;
  align-items: start;
  gap: 30px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(20, 24, 29, 0.45);
  font-size: 8px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.footer-bottom a:hover {
  color: var(--bronze);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.floating-whatsapp__panel {
  display: grid;
  width: min(320px, calc(100vw - 44px));
  padding: 10px;
  border: 1px solid rgba(197, 146, 90, 0.28);
  border-radius: 22px;
  background: rgba(8, 13, 20, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.floating-whatsapp:hover .floating-whatsapp__panel,
.floating-whatsapp:focus-within .floating-whatsapp__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp__link {
  display: grid;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  gap: 4px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.floating-whatsapp__link:hover,
.floating-whatsapp__link:focus-visible {
  border-color: rgba(37, 211, 102, 0.75);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(197, 146, 90, 0.1)),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.floating-whatsapp__link span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp__link strong {
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.floating-whatsapp__button {
  display: inline-flex;
  min-width: 150px;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #1fa855, #0d6f3d);
  box-shadow: 0 18px 44px rgba(13, 111, 61, 0.34);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp__button::before {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  place-items: center;
  color: #0d6f3d;
  background: var(--white);
  content: "☎";
  font-size: 14px;
}

/* Shared route hero and utilities */

.page-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  overflow: hidden;
  padding: 172px 0 92px;
  align-items: flex-end;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 26%, rgba(197, 146, 90, 0.2), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 86px 86px, 86px 86px, auto;
}

.page-hero::after {
  position: absolute;
  top: 42%;
  right: 9%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(197, 146, 90, 0.35);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(56px, 7vw, 104px);
}

.page-hero .page-hero-lead,
.page-hero > .container > p:not(.eyebrow):not(.breadcrumbs) {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.72;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--bronze-light);
}

.route-section,
.section-light {
  padding: 108px 0;
  background: var(--paper);
}

.section-white {
  padding: 108px 0;
  background: var(--white);
}

.route-heading {
  display: grid;
  margin-bottom: 46px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.route-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.route-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.empty-state {
  padding: 54px 26px;
  border: 1px dashed rgba(7, 17, 31, 0.24);
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
}

/* Reveal motion */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 1180px) {
  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-search-dock {
    right: 32px;
    left: 32px;
  }

  .hero-search-form {
    grid-template-columns: 1fr 0.65fr 170px;
  }

  .vehicle-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oe-layout {
    gap: 60px;
  }

  .integration-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .header-shell {
    width: calc(100% - 32px);
  }

  .header-search,
  .btn-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    flex-direction: column;
    color: var(--text);
    background:
      linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(239, 242, 245, 0.98));
    border-bottom: 1px solid rgba(20, 24, 29, 0.12);
    box-shadow: 0 18px 40px rgba(17, 20, 23, 0.14);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 320ms var(--ease),
      opacity 220ms ease,
      padding 320ms var(--ease);
  }

  .mobile-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-top: 18px;
    padding-bottom: 28px;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    display: flex;
    min-height: 58px;
    border-bottom: 1px solid rgba(20, 24, 29, 0.1);
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
  }

  .mobile-nav a span {
    color: var(--bronze-light);
    font-size: 10px;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 125px;
    grid-template-columns: 1fr;
  }

  .hero-side-note {
    display: none;
  }

  .hero-media {
    background-image:
      linear-gradient(
        90deg,
        rgba(3, 9, 17, 0.96) 0%,
        rgba(3, 9, 17, 0.82) 50%,
        rgba(3, 9, 17, 0.45) 100%
      ),
      linear-gradient(0deg, rgba(3, 9, 17, 0.92) 0%, transparent 52%),
      url("/hero.jpg");
    background-position: 64% center;
  }

  .hero-search-dock {
    right: 20px;
    left: 20px;
    grid-template-columns: 1fr;
  }

  .hero-search-tabs {
    display: grid;
    padding: 9px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
  }

  .hero-search-tabs button,
  .hero-search-tabs a {
    justify-content: center;
    text-align: center;
  }

  .hero-search-form {
    grid-template-columns: 1fr 0.7fr;
  }

  .hero-search-form button {
    min-height: 62px;
    grid-column: 1 / -1;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .signal-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split-heading,
  .markets-heading,
  .platform-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-heading > p,
  .split-heading > div:last-child {
    max-width: 620px;
    margin: 0;
  }

  .platform-heading .eyebrow {
    grid-column: auto;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 460px;
  }

  .oe-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }

  .market-card {
    min-height: 420px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-hero {
    min-height: 510px;
    padding-top: 145px;
  }

  .page-hero::after {
    right: -130px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand-logo {
    width: 72px;
    height: 50px;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    min-height: 590px;
    padding-top: 112px;
    padding-bottom: 60px;
    align-items: start;
  }

  .hero-copy .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-copy .eyebrow::before {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(51px, 16vw, 72px);
    line-height: 0.91;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-search-dock {
    right: 12px;
    left: 12px;
  }

  .hero-search-form {
    grid-template-columns: 1fr;
  }

  .hero-search-form label {
    min-height: 78px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-search-form button {
    grid-column: auto;
  }

  .signal-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .signal-grid > div {
    min-height: 105px;
    padding: 20px 14px;
    grid-template-columns: 25px 1fr;
  }

  .signal-grid > div:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .signal-grid strong {
    font-size: 11px;
  }

  .signal-grid small {
    font-size: 8px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .oe-copy h2,
  .integration-grid h2 {
    font-size: 42px;
  }

  .vehicle-showcase-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-showcase-card {
    min-height: 360px;
  }

  .platform-card {
    min-height: 430px;
    padding: 24px;
  }

  .oe-console {
    padding: 0 20px 28px;
    box-shadow: 10px 10px 0 var(--paper-deep);
  }

  .console-bar {
    margin: 0 -20px 30px;
  }

  .oe-console form > div {
    grid-template-columns: 1fr;
  }

  .oe-console form button {
    min-height: 54px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 210px;
    padding-right: 0;
  }

  .integration-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .integration-flow i {
    text-align: center;
    transform: rotate(90deg);
  }

  .final-cta {
    padding: 96px 0;
  }

  .final-cta h2 {
    font-size: 46px;
  }

  .final-cta-content > div {
    display: grid;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .footer-nav-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .page-hero {
    min-height: 490px;
    padding: 126px 0 70px;
  }

  .page-hero h1 {
    font-size: 51px;
  }

  .route-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-directory {
    padding: 72px 0 18px;
  }

  .brand-directory-grid {
    grid-template-columns: 1fr;
  }

  .brand-directory-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   CATALOG, VEHICLE, PARTS, QUOTE AND MARKET ROUTES
   ========================================================= */

.btn--primary {
  color: var(--ink);
  background: var(--bronze);
}

.btn--primary:hover {
  background: var(--bronze-light);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.btn--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 9px;
}

.btn--wide {
  width: 100%;
}

.btn-link {
  min-height: 42px;
  padding: 0 2px;
  color: var(--bronze-dark);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.btn-link:hover {
  color: var(--ink);
}

.container--narrow {
  width: min(calc(100% - 64px), 1100px);
}

/* Vehicle directory */

.catalog-page {
  background: var(--paper);
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 94px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 35%, rgba(197, 146, 90, 0.18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 88px 88px, 88px 88px, auto;
}

.catalog-hero::after {
  position: absolute;
  top: 50%;
  right: 6vw;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(197, 146, 90, 0.28);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.catalog-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.catalog-breadcrumbs,
.vehicle-breadcrumbs {
  display: flex;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  gap: 8px;
}

.catalog-breadcrumbs a:hover,
.vehicle-breadcrumbs a:hover {
  color: var(--bronze-light);
}

.catalog-hero-copy h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(54px, 6.5vw, 94px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.catalog-hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.72;
}

.catalog-hero-actions,
.vehicle-hero-actions,
.page-hero__actions,
.market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.catalog-hero-facts {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.catalog-hero-fact {
  display: flex;
  min-height: 86px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
}

.catalog-hero-fact dt {
  color: var(--muted-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-hero-fact dd {
  margin: 0;
  color: var(--bronze-light);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.brand-directory {
  padding: 96px 0 28px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.brand-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-directory-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(20, 24, 29, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 248, 0.96));
  flex-direction: column;
  box-shadow: 0 18px 44px rgba(17, 20, 23, 0.06);
}

.brand-directory-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.brand-directory-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-directory-card__head span {
  flex-shrink: 0;
  padding: 5px 7px;
  color: var(--bronze-dark);
  background: rgba(197, 22, 29, 0.08);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-directory-card > p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.brand-directory-card ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 7px;
}

.brand-directory-card li {
  min-width: 0;
}

.brand-directory-card a {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(20, 24, 29, 0.1);
  color: rgba(20, 24, 29, 0.72);
  background: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  transition:
    border-color 200ms ease,
    color 200ms ease,
    background 200ms ease;
}

.brand-directory-card a:hover {
  border-color: rgba(197, 22, 29, 0.34);
  color: var(--bronze-dark);
  background: rgba(197, 22, 29, 0.06);
}

.catalog-section {
  padding: 108px 0;
}

.catalog-heading,
.section-heading--split {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 0.38fr);
  align-items: end;
  gap: 70px;
}

.catalog-heading h2,
.section-heading--split h2,
.results-heading h2,
.quote-form-panel .section-heading h2,
.market-section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.catalog-heading-copy,
.section-heading--split > p {
  margin: 0;
  color: var(--muted);
}

.catalog-toolbar {
  display: grid;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  grid-template-columns: 1fr 0.45fr 0.55fr;
}

.catalog-search-field,
.catalog-filter-field {
  display: flex;
  min-width: 0;
  min-height: 92px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.catalog-filter-field:last-child {
  border-right: 0;
}

.catalog-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-search-input,
.catalog-select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}

.catalog-results-header {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-results-header p {
  margin: 0;
}

.catalog-results-header strong {
  color: var(--text);
  font-size: 13px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalog-card {
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  flex-direction: column;
  background: var(--white);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.catalog-card:hover {
  z-index: 2;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.12);
  transform: translateY(-6px);
}

.catalog-card-media {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 50%, rgba(197, 146, 90, 0.26), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 40px 40px, 40px 40px, auto;
}

.catalog-card-media::before,
.catalog-card-media::after {
  position: absolute;
  border: 1px solid rgba(197, 146, 90, 0.45);
  border-radius: 50%;
  content: "";
}

.catalog-card-media::before {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
}

.catalog-card-media::after {
  top: 50%;
  left: 50%;
  width: 265px;
  height: 78px;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.catalog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms var(--ease);
}

.catalog-card:hover .catalog-card-media img {
  transform: scale(1.035);
}

.catalog-card-media.has-image::before {
  display: none;
}

.catalog-card-media.is-pending::before,
.catalog-card-media.is-pending::after {
  display: none;
}

.catalog-card-media.has-image::after {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.04) 45%, rgba(7, 17, 31, 0.42) 100%);
  pointer-events: none;
  transform: none;
}

.catalog-card-type {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--bronze);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card-body {
  display: flex;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.catalog-card-brand {
  margin: 0 0 5px;
  color: var(--bronze-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1;
}

.catalog-card-years {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 11px;
}

.catalog-card-specs {
  display: grid;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.catalog-card-specs dt,
.catalog-card-markets > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card-specs dd {
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.catalog-card-markets {
  padding: 18px 0;
}

.catalog-card-markets ul {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  gap: 6px;
}

.catalog-card-markets li {
  padding: 5px 7px;
  color: var(--muted);
  background: var(--paper);
  font-size: 8px;
}

.catalog-card-actions {
  display: grid;
  margin-top: auto;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.catalog-card-actions .btn-secondary {
  min-height: 44px;
  padding-inline: 13px;
  font-size: 9px;
}

.catalog-empty {
  margin-top: 24px;
  padding: 60px 24px;
  border: 1px dashed var(--line);
  text-align: center;
}

.catalog-empty h3 {
  margin: 0;
  font-size: 30px;
}

.catalog-empty p {
  color: var(--muted);
}

.section-band {
  padding: 90px 0;
  color: var(--white);
  background: var(--ink-soft);
}

.section-band-layout {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 90px;
}

.section-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(39px, 5vw, 70px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-band-copy p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.58);
}

/* Individual vehicle */

.vehicle-page {
  background: var(--paper);
}

.vehicle-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 90px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 88px 88px;
}

.vehicle-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
  align-items: center;
  gap: 74px;
}

.vehicle-hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 6.4vw, 96px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.vehicle-hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.72;
}

.vehicle-hero-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  gap: 7px;
}

.vehicle-hero-tags li {
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-hero-note {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  line-height: 1.6;
}

.vehicle-hero-media {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: #0a111b;
  box-shadow: 22px 22px 0 rgba(197, 146, 90, 0.14);
}

.vehicle-hero-media img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.vehicle-hero-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.72), transparent);
}

.vehicle-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  letter-spacing: 0.05em;
}

.vehicle-section {
  padding: 108px 0;
  background: var(--paper);
}

.vehicle-section:nth-of-type(even) {
  background: var(--white);
}

.vehicle-section-heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 70px;
}

.vehicle-section-heading h2,
.section-split h2,
.section-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.vehicle-section-heading > p {
  margin: 0;
  color: var(--muted);
}

.vehicle-spec-grid {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.vehicle-spec {
  min-height: 145px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vehicle-spec dt {
  margin-bottom: 18px;
  color: var(--bronze-dark);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vehicle-spec dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.section-split {
  padding: 108px 0;
  color: var(--white);
  background: var(--ink-soft);
}

.section-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.vehicle-highlights,
.vehicle-markets {
  padding: 38px;
  border: 1px solid var(--line-light);
}

.vehicle-highlights > ul,
.vehicle-markets > ul {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.vehicle-highlights > ul li,
.vehicle-markets > ul li {
  position: relative;
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.vehicle-highlights > ul li::before,
.vehicle-markets > ul li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  content: "";
}

.vehicle-markets > p:last-child {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.vehicle-parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vehicle-part-card {
  display: flex;
  min-height: 340px;
  padding: 25px;
  border: 1px solid var(--line);
  flex-direction: column;
  background: var(--white);
}

.vehicle-part-heading {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-part-heading p {
  margin: 0;
  color: var(--bronze-dark);
}

.vehicle-part-card h3 {
  margin: 30px 0;
  font-size: 27px;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.vehicle-part-card dl {
  display: grid;
  margin: 0;
  gap: 10px;
}

.vehicle-part-card dl > div {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 20px;
}

.vehicle-part-card dt {
  color: var(--muted);
  font-size: 9px;
}

.vehicle-part-card dd {
  margin: 0;
  font-size: 10px;
  font-weight: 650;
  text-align: right;
}

.vehicle-part-card > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.vehicle-parts-empty {
  padding: 50px;
  border: 1px dashed var(--line);
  text-align: center;
}

.vehicle-parts-actions {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 22px;
}

.section-cta {
  padding: 96px 0;
  color: var(--white);
  background: var(--ink);
}

.section-cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.section-cta-layout p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.vehicle-qualifier {
  padding: 24px 0;
  color: var(--muted);
  background: var(--paper-deep);
}

.vehicle-qualifier p {
  margin: 0;
  font-size: 9px;
  line-height: 1.65;
}

/* Parts, OE search and quotation */

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.46fr);
  align-items: end;
  gap: 80px;
}

.page-hero__content h1,
.page-hero__narrow h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(52px, 6.3vw, 92px);
  font-weight: 520;
  letter-spacing: -0.062em;
  line-height: 0.95;
}

.page-hero__lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.72;
}

.page-hero__narrow {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.hero-panel {
  padding: 30px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.hero-panel__label {
  margin: 0 0 15px;
  color: var(--bronze-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel > strong {
  display: block;
  font-size: 25px;
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hero-panel .check-list {
  margin-top: 26px;
}

.hero-panel .check-list li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.section-heading--split > p {
  text-align: right;
}

.search-panel {
  margin-bottom: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.search-panel--hero {
  max-width: 780px;
  margin: 42px 0 0;
  color: var(--text);
  box-shadow: var(--shadow);
}

.search-panel__label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-panel__field {
  display: grid;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.search-panel__field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
}

.search-panel__hint {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.parts-system-nav {
  display: grid;
  margin: 0 0 34px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.parts-system-nav a {
  display: grid;
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  align-content: space-between;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.parts-system-nav a:hover {
  border-color: var(--bronze-dark);
  box-shadow: 0 18px 34px rgba(15, 23, 34, 0.08);
  transform: translateY(-2px);
}

.parts-system-nav span,
.parts-name-cloud a {
  color: var(--bronze-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parts-system-nav strong {
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.parts-system-nav small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.parts-system-section {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.parts-system-heading {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  align-items: end;
  gap: 28px;
}

.parts-system-heading h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1;
}

.parts-system-heading p:not(.eyebrow) {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.parts-name-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.parts-name-cloud a {
  min-height: 32px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.parts-name-cloud a:hover,
.parts-name-cloud a:focus-visible {
  border-color: var(--bronze-dark);
  color: var(--ink);
  background: #fff8ef;
  transform: translateY(-1px);
}

.parts-quick-rail {
  position: fixed;
  z-index: 95;
  top: 50%;
  left: 16px;
  display: grid;
  width: 220px;
  padding: 14px;
  border: 1px solid rgba(197, 146, 90, 0.24);
  border-radius: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 23, 34, 0.12);
  backdrop-filter: blur(14px);
  gap: 7px;
  transform: translateY(-50%);
}

.parts-quick-rail span {
  padding: 0 6px 6px;
  color: var(--bronze-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.parts-quick-rail a {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  box-sizing: border-box;
  align-items: center;
  color: var(--ink);
  background: rgba(248, 245, 240, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  white-space: normal;
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.parts-quick-rail a:hover,
.parts-quick-rail a:focus-visible {
  border-color: rgba(197, 146, 90, 0.55);
  background: var(--white);
  transform: translateX(3px);
}

@media (min-width: 901px) and (max-width: 1180px) {
  .parts-quick-rail {
    left: 10px;
    width: 188px;
    padding: 11px;
  }

  .parts-quick-rail span {
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .parts-quick-rail a {
    min-height: 40px;
    padding: 7px 9px;
    font-size: 10px;
  }
}

.parts-system-section,
.part-card {
  scroll-margin-top: 112px;
}

.part-card {
  display: flex;
  min-height: 520px;
  padding: 25px;
  border: 1px solid var(--line);
  flex-direction: column;
  background: var(--white);
}

.part-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  display: inline-flex;
  width: max-content;
  min-height: 25px;
  padding: 0 9px;
  align-items: center;
  color: var(--ink);
  background: var(--bronze);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stock-status {
  color: #4f7b60;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.part-card h3 {
  margin: 28px 0 20px;
  font-size: 28px;
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.part-demand-field {
  display: grid;
  margin-bottom: 16px;
  gap: 7px;
}

.part-demand-field span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.part-demand-field input,
.part-card__references textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  background: var(--paper);
  color: var(--text);
  transition: border-color 180ms ease;
}

.part-demand-field input {
  height: 44px;
  padding: 0 12px;
  font-size: 12px;
}

.part-card__references textarea {
  min-height: 86px;
  padding: 12px;
  font-size: 12px;
  line-height: 1.55;
  resize: vertical;
}

.part-demand-field input:focus,
.part-card__references textarea:focus {
  border-color: var(--bronze-dark);
}

.oe-number {
  padding: 18px;
  color: var(--white);
  background: var(--ink);
}

.oe-number span,
.part-card__references > span,
.part-card__fitment > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oe-number strong {
  color: var(--bronze-light);
  font-family: "Courier New", monospace;
  font-size: 19px;
}

.part-card__references,
.part-card__fitment {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.part-card__references > span,
.part-card__fitment > span {
  color: var(--muted);
}

.part-card__references p {
  margin: 0;
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.spec-list--single {
  grid-template-columns: 1fr;
}

.spec-list--compact {
  display: grid;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.65fr 1.35fr;
  gap: 14px;
}

.spec-list--compact dt {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.spec-list--compact dd {
  margin: 4px 0 0;
  font-size: 10px;
  font-weight: 650;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.text-links a {
  color: var(--bronze-dark);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.part-card__actions {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.part-card__actions .text-link {
  min-width: 0;
  font-size: 9px;
}

.section--contrast {
  color: var(--white);
  background: var(--ink);
}

.feature-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 80px;
}

.feature-strip h2 {
  margin: 0;
  font-size: clamp(41px, 5vw, 66px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.feature-strip__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.feature-strip__items article {
  min-height: 220px;
  padding: 23px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.feature-strip__items article > span {
  color: var(--bronze-light);
  font-size: 9px;
}

.feature-strip__items h3 {
  margin: 65px 0 8px;
  font-size: 24px;
  font-weight: 540;
}

.feature-strip__items p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.results-heading {
  display: flex;
  margin-bottom: 36px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.results-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.results-heading strong {
  color: var(--text);
  font-size: 13px;
}

.oe-results {
  display: grid;
  border-top: 1px solid var(--line);
}

.oe-result {
  display: grid;
  min-height: 135px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 0.72fr auto;
  align-items: center;
  gap: 34px;
}

.oe-result__identity h3 {
  margin: 12px 0 5px;
  font-size: 22px;
  font-weight: 540;
}

.oe-result__identity p,
.oe-result__number small {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.oe-result__number {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oe-result__number > span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oe-result__number strong {
  color: var(--bronze-dark);
  font-family: "Courier New", monospace;
  font-size: 17px;
}

.info-callout {
  display: grid;
  margin-top: 70px;
  padding: 42px;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 70px;
}

.info-callout h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.info-callout > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 70px;
}

.quote-form-panel {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.quote-form-panel .section-heading {
  margin-bottom: 38px;
}

.quote-form-panel .section-heading > p:last-child {
  margin: 18px 0 0;
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  background: var(--paper);
  transition: border-color 180ms ease;
}

.field input {
  height: 54px;
  padding: 0 15px;
}

.field textarea {
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--bronze-dark);
}

.quote-form > .btn {
  margin-top: 24px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.quote-sidebar {
  position: sticky;
  top: 110px;
}

.quote-sidebar__card {
  padding: 30px;
  color: var(--white);
  background: var(--ink);
}

.quote-sidebar__card h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.number-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.number-list li > span {
  color: var(--bronze-light);
  font-size: 9px;
}

.number-list strong {
  font-size: 12px;
}

.number-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.quote-sidebar__support {
  display: flex;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 0;
  flex-direction: column;
  gap: 12px;
}

.quote-sidebar__support > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
}

.quote-sidebar__support .text-link {
  width: 100%;
  min-width: 0;
  font-size: 9px;
}

/* Company and legal information pages */

.legal-layout {
  display: grid;
  max-width: 980px;
  gap: 24px;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-panel {
  display: grid;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  gap: 24px;
}

.legal-panel h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

.legal-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* About company */

.about-hero {
  min-height: 690px;
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  align-items: end;
  gap: 90px;
}

.about-hero__copy h1 {
  max-width: 920px;
  font-size: clamp(54px, 6.8vw, 98px);
}

.about-hero__brief {
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.about-hero__brief-label {
  margin: 0 0 20px;
  color: var(--bronze-light);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero__brief dl,
.about-company-facts {
  display: grid;
  margin: 0;
}

.about-hero__brief dl > div {
  display: grid;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
  gap: 6px;
}

.about-hero__brief dt,
.about-company-facts dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero__brief dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.about-profile-section {
  background: var(--white);
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 110px;
}

.about-profile-heading h2,
.about-buyers-intro h2,
.about-company-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 64px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-profile-copy {
  display: grid;
  gap: 22px;
}

.about-profile-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.about-profile-copy .about-profile-note {
  padding: 18px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--bronze);
  color: var(--ink-soft);
  font-size: 12px;
}

.about-business-section,
.about-process-section,
.about-company-section {
  background: var(--paper);
}

.about-business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-business-card {
  display: flex;
  min-height: 470px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  background: var(--white);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.about-business-card:hover {
  z-index: 1;
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.08);
  transform: translateY(-4px);
}

.about-business-card__meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.about-business-card__meta span:first-child {
  color: var(--bronze-dark);
}

.about-business-card h3 {
  margin: 74px 0 16px;
  font-size: 34px;
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1;
}

.about-business-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.about-business-card ul {
  display: grid;
  margin: 27px 0 34px;
  padding: 0;
  list-style: none;
}

.about-business-card li {
  position: relative;
  padding: 10px 0 10px 17px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
}

.about-business-card li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze);
  content: "";
}

.about-business-card > a {
  display: flex;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
  justify-content: space-between;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-buyers-section {
  color: var(--white);
  background: var(--ink-soft);
}

.about-buyers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
}

.about-buyers-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.78;
}

.about-market-tags {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.about-market-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-buyer-cards {
  display: grid;
  border-bottom: 1px solid var(--line-light);
}

.about-buyer-cards article {
  display: grid;
  padding: 27px 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 54px 1fr;
  gap: 18px;
}

.about-buyer-cards article > span {
  color: var(--bronze-light);
  font-size: 9px;
}

.about-buyer-cards h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 540;
  letter-spacing: -0.035em;
}

.about-buyer-cards p {
  max-width: 620px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.7;
}

.about-process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
}

.about-process-list li {
  min-height: 300px;
  padding: 27px 25px;
  border-right: 1px solid var(--line);
}

.about-process-list li:first-child {
  border-left: 1px solid var(--line);
}

.about-process-list li > span {
  color: var(--bronze-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.about-process-list h3 {
  margin: 70px 0 15px;
  font-size: 23px;
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.about-process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.about-company-panel {
  display: grid;
  padding: 54px;
  border: 1px solid var(--line);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  background: var(--white);
}

.about-company-heading > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.about-company-facts > div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.about-company-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
}

.about-company-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.about-company-facts small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.about-cta-section {
  padding-top: 0;
  background: var(--paper);
}

.about-cta {
  display: grid;
  padding: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(197, 146, 90, 0.2), transparent 28%),
    var(--ink);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
}

.about-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4.8vw, 67px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.75;
}

.about-cta__actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .about-hero__grid,
  .about-profile-grid,
  .about-buyers-layout,
  .about-company-panel,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-hero__grid,
  .about-profile-grid,
  .about-buyers-layout,
  .about-company-panel {
    gap: 54px;
  }

  .about-hero__brief dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
  }

  .about-business-grid {
    grid-template-columns: 1fr;
  }

  .about-business-card {
    min-height: 390px;
  }

  .about-process-list {
    grid-template-columns: 1fr;
  }

  .about-process-list li,
  .about-process-list li:first-child {
    display: grid;
    min-height: 0;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: 46px minmax(180px, 0.45fr) 1fr;
    align-items: start;
    gap: 22px;
  }

  .about-process-list h3 {
    margin: 0;
  }

  .about-process-list p {
    margin: 2px 0 0;
  }

  .about-cta {
    gap: 40px;
  }

  .about-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 0;
    padding-bottom: 64px;
  }

  .about-hero__copy h1 {
    font-size: 47px;
  }

  .about-hero__grid,
  .about-profile-grid,
  .about-buyers-layout,
  .about-company-panel {
    gap: 38px;
  }

  .about-hero__brief,
  .about-business-card,
  .about-company-panel,
  .about-cta {
    padding: 24px;
  }

  .about-hero__brief dl {
    grid-template-columns: 1fr;
  }

  .about-profile-copy > p {
    font-size: 14px;
  }

  .about-business-card {
    min-height: 0;
  }

  .about-business-card h3 {
    margin-top: 48px;
    font-size: 29px;
  }

  .about-buyer-cards article {
    grid-template-columns: 34px 1fr;
  }

  .about-process-list li,
  .about-process-list li:first-child {
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }

  .about-process-list li p {
    margin-top: 10px;
    grid-column: 2;
  }

  .about-company-facts dd {
    font-size: 15px;
  }

  .about-cta__actions {
    grid-template-columns: 1fr;
  }

  .about-cta__actions .btn {
    width: 100%;
  }
}

/* Market pages */

.market-hero {
  align-items: center;
}

.market-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.45fr);
  align-items: end;
  gap: 80px;
}

.market-hero-copy h1 {
  max-width: 990px;
  margin: 0;
  font-size: clamp(51px, 6.2vw, 90px);
  font-weight: 520;
  letter-spacing: -0.062em;
  line-height: 0.95;
}

.market-intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.72;
}

.market-brief {
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
}

.market-brief h2 {
  margin: 0;
  font-size: 29px;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.market-brief ul {
  display: grid;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.market-brief li {
  padding: 13px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.market-section-heading {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 1fr minmax(280px, 0.42fr);
  align-items: end;
  gap: 70px;
}

.market-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.market-section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.market-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.market-feature-card {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.market-feature-card h3 {
  margin: 70px 0 12px;
  font-size: 25px;
  font-weight: 540;
  letter-spacing: -0.035em;
}

.market-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.market-catalog-section {
  background: var(--white);
}

.market-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.market-vehicle-card {
  display: flex;
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--line);
  flex-direction: column;
  background: var(--paper);
}

.market-vehicle-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-vehicle-card h3 {
  margin: 55px 0 10px;
  font-size: 27px;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.market-vehicle-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.market-card-link {
  display: flex;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  color: var(--bronze-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-process-section {
  color: var(--white);
  background: var(--ink-soft);
}

.market-process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.market-process-grid .market-section-heading {
  display: block;
}

.market-process-grid .market-section-heading .eyebrow {
  margin-bottom: 24px;
}

.market-process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-process-list li {
  display: grid;
  padding: 25px 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 44px 1fr;
  gap: 18px;
}

.market-process-list li > span {
  color: var(--bronze-light);
  font-size: 9px;
}

.market-process-list h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 540;
}

.market-process-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.market-assurance {
  display: grid;
  padding: 45px;
  border: 1px solid var(--line);
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  background: var(--white);
}

.market-assurance h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.market-assurance ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-assurance li {
  position: relative;
  padding: 17px 0 17px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.market-assurance li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  content: "";
}

.market-cta-section {
  padding-top: 0;
}

.market-cta {
  display: grid;
  padding: 54px;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
}

.market-cta h2 {
  margin: 0;
  font-size: clamp(39px, 4.5vw, 62px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.market-cta p:not(.eyebrow) {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.market-cta .market-actions {
  flex-direction: column;
  margin: 0;
}

.market-not-found {
  min-height: 720px;
  align-items: center;
}

.market-not-found .container {
  position: relative;
  z-index: 1;
}

.market-not-found .container > p:not(.eyebrow) {
  max-width: 610px;
}

/* Route responsive */

@media (max-width: 1100px) {
  .catalog-grid,
  .parts-grid,
  .parts-system-nav,
  .vehicle-parts-grid,
  .market-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .feature-strip,
  .market-process-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .catalog-hero-layout,
  .vehicle-hero-layout,
  .page-hero__grid,
  .market-hero-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .catalog-hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-hero-fact {
    padding-inline: 15px;
    border-right: 1px solid var(--line-light);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-search-field {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vehicle-hero-media {
    min-height: 440px;
  }

  .vehicle-section-heading,
  .section-cta-layout,
  .info-callout,
  .parts-system-heading,
  .market-section-heading,
  .market-assurance,
  .market-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-split-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-sidebar {
    position: static;
  }

  .market-section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .market-cta .market-actions {
    align-items: flex-start;
  }

  .parts-name-cloud {
    justify-content: flex-start;
  }

  .parts-quick-rail {
    top: auto;
    right: 14px;
    bottom: 88px;
    left: 14px;
    width: auto;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    transform: none;
    scrollbar-width: none;
  }

  .parts-quick-rail::-webkit-scrollbar {
    display: none;
  }

  .parts-quick-rail span {
    display: none;
  }

  .parts-quick-rail a:hover,
  .parts-quick-rail a:focus-visible {
    transform: translateY(-1px);
  }
}

@media (max-width: 680px) {
  .container--narrow {
    width: calc(100% - 32px);
  }

  .catalog-hero {
    padding: 126px 0 70px;
  }

  .catalog-hero-copy h1,
  .vehicle-hero-copy h1,
  .page-hero__content h1,
  .page-hero__narrow h1,
  .market-hero-copy h1 {
    font-size: 49px;
  }

  .catalog-hero-facts {
    grid-template-columns: 1fr;
  }

  .catalog-hero-fact {
    flex-direction: row;
    align-items: center;
  }

  .catalog-toolbar,
  .catalog-grid,
  .parts-grid,
  .parts-system-nav,
  .vehicle-parts-grid,
  .market-feature-grid,
  .market-vehicle-grid,
  .feature-strip__items {
    grid-template-columns: 1fr;
  }

  .catalog-search-field {
    grid-column: auto;
  }

  .catalog-search-field,
  .catalog-filter-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-results-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .section-band-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .vehicle-hero {
    padding: 118px 0 65px;
  }

  .vehicle-hero-media {
    min-height: 320px;
    box-shadow: 10px 10px 0 rgba(197, 146, 90, 0.14);
  }

  .vehicle-spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-highlights,
  .vehicle-markets,
  .quote-form-panel,
  .market-assurance {
    padding: 25px;
  }

  .vehicle-parts-actions,
  .catalog-hero-actions,
  .vehicle-hero-actions,
  .page-hero__actions,
  .market-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vehicle-parts-actions .btn,
  .catalog-hero-actions .btn,
  .vehicle-hero-actions .btn,
  .page-hero__actions .btn,
  .part-card__actions .btn,
  .market-actions .btn {
    width: 100%;
  }

  .search-panel__field {
    min-height: auto;
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .search-panel__field input {
    min-height: 40px;
  }

  .section-heading--split,
  .catalog-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading--split > p {
    text-align: left;
  }

  .oe-result {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .oe-result__action .btn {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .market-cta {
    padding: 28px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 16px;
  }

  .floating-whatsapp__button {
    min-width: 58px;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp__button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .floating-whatsapp__button::before {
    margin-right: 0;
  }

  .floating-whatsapp__panel {
    width: min(300px, calc(100vw - 28px));
  }
}

/* Mobile-first corrections for the vehicle brand directory.
   This block stays after route styles so desktop grid rules cannot override it. */

@media (max-width: 680px) {
  .brand-directory {
    padding: 58px 0 18px;
  }

  .brand-directory .section-heading {
    margin-bottom: 28px;
  }

  .brand-directory .section-heading h2 {
    max-width: 100%;
    font-size: 36px;
    letter-spacing: -0.035em;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .brand-directory .section-heading > p,
  .brand-directory .section-heading--split > p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .brand-directory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand-directory-card {
    min-height: auto;
    padding: 20px;
  }

  .brand-directory-card__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-directory-card h3 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .brand-directory-card__head span {
    width: max-content;
  }

  .brand-directory-card > p {
    margin: 12px 0 16px;
    font-size: 13px;
    line-height: 1.62;
  }

  .brand-directory-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .brand-directory-card a {
    width: 100%;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .brand-directory-card ul {
    grid-template-columns: 1fr;
  }
}
/* V3.0 reference homepage visual update */
.site-header {
  background: rgba(9, 20, 36, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  max-width: 1440px;
  gap: clamp(16px, 2vw, 34px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.site-header .brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand-wordmark strong {
  font-size: 18px;
  font-weight: 900;
}

.brand-wordmark small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.desktop-nav {
  gap: clamp(14px, 1.5vw, 26px);
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.desktop-nav a::after {
  background: #ef1f2d;
  height: 3px;
}

.nav-caret {
  font-size: 0.85em;
  opacity: 0.78;
}

.language-switch {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn-header {
  background: #ef1f2d;
  border-color: #ef1f2d;
  color: #fff;
  box-shadow: 0 14px 30px rgba(239, 31, 45, 0.28);
}

.hero-v3-visual {
  min-height: min(820px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(239, 31, 45, 0.25), transparent 35%),
    linear-gradient(110deg, #071426 0%, #12263d 45%, #101828 100%);
}

.hero-v3-visual .hero-media {
  background-image:
    linear-gradient(90deg, rgba(7, 16, 30, 0.78) 0%, rgba(7, 16, 30, 0.52) 39%, rgba(7, 16, 30, 0.14) 72%),
    linear-gradient(0deg, rgba(7, 16, 30, 0.22), rgba(7, 16, 30, 0.02)),
    url("/hero-export-parts-vehicles-v3.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.05);
  animation: heroImageFade 900ms ease both;
}

.hero-v3-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 30, 0.58));
  pointer-events: none;
  z-index: 1;
}

.hero-v3-visual .hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: clamp(90px, 12vh, 150px);
  padding-bottom: clamp(90px, 13vh, 160px);
}

.hero-v3-visual .hero-copy {
  max-width: 690px;
}

.hero-v3-visual h1 {
  max-width: 740px;
  color: #fff;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  animation: heroTextRise 720ms ease 120ms both;
}

.hero-v3-visual .hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  animation: heroTextRise 720ms ease 220ms both;
}

.hero-v3-visual .hero-actions {
  animation: heroTextRise 720ms ease 320ms both;
}

.hero-v3-visual .btn {
  min-height: 62px;
  padding-inline: 28px;
  font-size: 15px;
  border-radius: 5px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero-v3-visual .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.hero-v3-visual .btn-primary {
  background: #ef1f2d;
  border-color: #ef1f2d;
  color: #fff;
}

.hero-v3-visual .btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-visual-stage {
  position: relative;
  min-height: 390px;
  align-self: end;
  animation: heroImageFade 900ms ease 260ms both;
}

.hero-visual-stage::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: 8%;
  height: 38%;
  background: linear-gradient(90deg, rgba(239, 31, 45, 0.55), rgba(255, 255, 255, 0.1), rgba(239, 31, 45, 0.22));
  filter: blur(34px);
  opacity: 0.62;
}

.hero-vehicle {
  position: absolute;
  bottom: 0;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-vehicle--left {
  left: 0;
  width: 46%;
  height: 230px;
  transform: translateY(-4px) rotate(-2deg);
  opacity: 0.92;
}

.hero-vehicle--center {
  left: 25%;
  z-index: 2;
  width: 48%;
  height: 300px;
}

.hero-vehicle--right {
  right: 0;
  width: 42%;
  height: 250px;
  transform: translateY(-12px) rotate(1.5deg);
  opacity: 0.96;
}

/* Keep the transparent showcase vehicles aligned with the headline on wide
   screens instead of sitting at the bottom edge of the hero. */
@media (min-width: 981px) {
  .hero-vehicle {
    bottom: 82px;
  }

  .hero-visual-stage::before {
    bottom: 28%;
  }
}

.hero-slider-arrow {
  position: absolute;
  z-index: 4;
  top: 53%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-slider-arrow:hover {
  background: rgba(239, 31, 45, 0.9);
  transform: translateY(-2px);
}

.hero-slider-arrow--left {
  left: 28px;
}

.hero-slider-arrow--right {
  right: 28px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 18px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.hero-dots button:hover {
  transform: translateY(-2px);
  background: #fff;
}

.hero-dots .is-active {
  width: 28px;
  background: #ef1f2d;
}

.hero-v3-visual [data-hero-title],
.hero-v3-visual [data-hero-lead] {
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero-v3-visual:not(.is-slide-ready) [data-hero-title],
.hero-v3-visual:not(.is-slide-ready) [data-hero-lead] {
  opacity: 0.35;
  transform: translateY(8px);
}

.hero-vehicle {
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-vehicle.is-switching {
  opacity: 0.18;
}

.home-business-strip {
  position: relative;
  z-index: 5;
  background: #fff;
  padding: clamp(34px, 4vw, 52px) 0;
  border-bottom: 1px solid #e6ebf2;
}

.business-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.home-business-card {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 30px;
  border-radius: 10px;
  text-decoration: none;
  color: #0a1422;
  border: 1px solid rgba(12, 22, 34, 0.08);
  box-shadow: 0 18px 42px rgba(9, 20, 36, 0.08);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.home-business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 66px rgba(9, 20, 36, 0.14);
}

.home-business-card--green {
  background: linear-gradient(135deg, #e6fff2 0%, #f4fffb 48%, #eaf8ef 100%);
}

.home-business-card--blue {
  background: linear-gradient(135deg, #edf5ff 0%, #f7fbff 52%, #eaf1ff 100%);
}

.home-business-card--orange {
  background: linear-gradient(135deg, #fff1ea 0%, #fff9f5 52%, #ffece2 100%);
}

.business-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.business-card-title span {
  width: 34px;
  height: 24px;
  border-radius: 9px;
  background: #15b875;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.08);
}

.home-business-card--blue .business-card-title span {
  background: #2d73f5;
}

.home-business-card--orange .business-card-title span {
  background: #f05a28;
}

.business-card-title h2 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.04em;
}

.business-card-copy p {
  margin: 0 0 18px;
  color: #31445e;
  line-height: 1.65;
}

.business-card-copy strong {
  color: #039562;
  font-size: 15px;
}

.home-business-card--blue .business-card-copy strong {
  color: #155ed6;
}

.home-business-card--orange .business-card-copy strong {
  color: #e63820;
}

.business-card-image {
  width: 100%;
  height: 124px;
  object-fit: cover;
  border-radius: 16px;
  mix-blend-mode: multiply;
  filter: saturate(1.1) contrast(1.05);
}

.business-parts-visual {
  position: relative;
  width: 150px;
  height: 132px;
  justify-self: end;
}

.business-parts-visual span:nth-child(1) {
  position: absolute;
  inset: 18px 16px 12px 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #303642 0 16%, #b9c1cc 17% 28%, #232b35 29% 40%, #d7dde5 41% 62%, #4b5563 63% 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.business-parts-visual span:nth-child(2) {
  position: absolute;
  width: 86px;
  height: 28px;
  right: 0;
  bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, #1e293b, #111827);
  transform: rotate(-18deg);
}

.business-parts-visual span:nth-child(3) {
  position: absolute;
  width: 54px;
  height: 44px;
  right: 6px;
  top: 22px;
  border-radius: 12px;
  background: #ef1f2d;
  transform: rotate(12deg);
}

.animation-effects-section {
  background: #fff;
  border-bottom: 1px solid #e6ebf2;
}

.centered-heading {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.centered-heading h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.animation-effects-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.animation-effect-card {
  display: grid;
  gap: 16px;
}

.animation-effect-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.animation-effect-heading span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #ef1f2d;
  color: #fff;
  font-weight: 900;
}

.animation-effect-heading h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.animation-effect-card p {
  margin: 0;
  color: #52657d;
  line-height: 1.7;
  min-height: 76px;
}

.animation-preview {
  position: relative;
  height: 112px;
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 10px;
  background: #f8fafc;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.animation-preview--slider span:nth-child(1) {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #14243a, #ef1f2d);
  opacity: 0.78;
}

.animation-preview--slider span:nth-child(2),
.animation-preview--slider span:nth-child(3),
.animation-preview--slider span:nth-child(4) {
  position: absolute;
  bottom: 12px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
}

.animation-preview--slider span:nth-child(2) {
  left: 34%;
  background: #ef1f2d;
}

.animation-preview--slider span:nth-child(3) {
  left: 47%;
}

.animation-preview--slider span:nth-child(4) {
  left: 60%;
}

.animation-preview--nav span {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 12px;
  border-radius: 999px;
  background: #172238;
}

.animation-preview--nav span:nth-child(1) {
  top: 28px;
}

.animation-preview--nav span:nth-child(2) {
  top: 52px;
  width: 70%;
}

.animation-preview--nav span:nth-child(3) {
  top: 78px;
  width: 44%;
  background: #ef1f2d;
}

.animation-preview--card span:nth-child(1) {
  position: absolute;
  inset: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dff8ee, #fff);
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.animation-preview--counter {
  display: grid;
  place-items: center;
  color: #ef1f2d;
  font-size: 34px;
  font-weight: 950;
}

.animation-preview--counter::before {
  content: "1280+";
}

.animation-preview--icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
}

.animation-preview--icons span {
  border-radius: 12px;
  background: #eef6ff;
}

.animation-preview--icons span:nth-child(1) {
  background: #def8ee;
}

.animation-preview--icons span:nth-child(2) {
  background: #e6efff;
}

.animation-preview--icons span:nth-child(3) {
  background: #fff0e7;
}

.animation-preview--icons span:nth-child(4) {
  background: #f0e9ff;
}

.animation-preview--scroll span:nth-child(1),
.animation-preview--scroll span:nth-child(2) {
  position: absolute;
  left: 18px;
  width: 54px;
  height: 36px;
  border-radius: 8px;
  background: #e6ebf2;
}

.animation-preview--scroll span:nth-child(1) {
  top: 18px;
}

.animation-preview--scroll span:nth-child(2) {
  bottom: 18px;
}

.animation-preview--scroll span:nth-child(3) {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 38px solid #ef1f2d;
}

.floating-whatsapp {
  right: 24px;
  bottom: 32px;
  display: grid;
  gap: 12px;
}

.floating-whatsapp__button {
  background: #18c45b;
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 196, 91, 0.32);
}

.floating-whatsapp__top {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 0;
  background: #ef1f2d;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(239, 31, 45, 0.3);
}

.floating-whatsapp__top span {
  font-size: 22px;
  line-height: 1;
}

.floating-whatsapp__top small {
  font-size: 10px;
  line-height: 1;
}

@keyframes heroImageFade {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1240px) {
  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .brand-wordmark {
    display: none;
  }

  .animation-effects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-v3-visual {
    min-height: auto;
  }

  .hero-v3-visual .hero-content {
    grid-template-columns: 1fr;
    padding-top: 110px;
    padding-bottom: 92px;
  }

  .hero-visual-stage {
    min-height: 250px;
  }

  .hero-vehicle--left {
    width: 48%;
    height: 160px;
  }

  .hero-vehicle--center {
    width: 52%;
    height: 205px;
  }

  .hero-vehicle--right {
    width: 42%;
    height: 170px;
  }

  .business-card-grid {
    grid-template-columns: 1fr;
  }

  .animation-effects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slider-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header .brand-logo {
    width: 48px;
    height: 48px;
  }

  .language-switch,
  .btn-header {
    display: none;
  }

  .hero-v3-visual .hero-media {
    background-position: 58% center;
  }

  .hero-v3-visual .hero-content {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .hero-v3-visual h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -0.06em;
  }

  .hero-v3-visual .hero-lead {
    font-size: 16px;
  }

  .hero-v3-visual .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-visual-stage {
    min-height: 210px;
  }

  .hero-vehicle {
    border-radius: 18px;
  }

  .hero-vehicle--left {
    width: 55%;
    height: 132px;
  }

  .hero-vehicle--center {
    left: 22%;
    width: 58%;
    height: 165px;
  }

  .hero-vehicle--right {
    width: 46%;
    height: 138px;
  }

  .hero-dots {
    bottom: 24px;
  }

  .home-business-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .business-card-image,
  .business-parts-visual {
    width: 72%;
    justify-self: end;
  }

  .animation-effects-grid {
    grid-template-columns: 1fr;
  }

  .animation-effect-card p {
    min-height: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 18px;
  }

  .floating-whatsapp__top {
    width: 50px;
    height: 50px;
  }
}

/* Logo visibility fix: keep the professional dark header, but give the logo a clean light base. */
.site-header .brand-mark {
  min-height: 56px;
  padding: 7px 14px 7px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.site-header .brand-logo {
  width: 66px;
  height: 44px;
  object-fit: contain;
}

.site-header .brand-wordmark {
  color: #0d1726;
}

.site-header .brand-wordmark small {
  color: #4b5f78;
  opacity: 1;
}

@media (max-width: 640px) {
  .site-header .brand-mark {
    min-height: 48px;
    padding: 6px 10px;
    border-radius: 12px;
  }

  .site-header .brand-logo {
    width: 58px;
    height: 38px;
  }
}

/* Header background correction: change the full navigation bar base, not the logo itself. */
.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.96) 100%);
  border-bottom: 2px solid #ef1f2d;
  box-shadow: 0 10px 34px rgba(9, 20, 36, 0.08);
}

.site-header .brand-mark {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-header .brand-logo {
  width: 76px;
  height: 48px;
}

.site-header .brand-wordmark {
  color: #0b1728;
}

.desktop-nav a,
.language-switch {
  color: #111827;
}

.desktop-nav a:hover,
.language-switch:hover {
  color: #ef1f2d;
}

.mobile-menu-toggle span {
  background: #111827;
}

@media (max-width: 640px) {
  .site-header .brand-mark {
    min-height: 0;
    padding: 0;
    border-radius: 0;
  }

  .site-header .brand-logo {
    width: 68px;
    height: 44px;
  }
}
/* Floating WhatsApp hit-area fix: panel no longer enlarges the clickable area.
   Contact options open only after clicking the green button. */
.floating-whatsapp {
  width: max-content;
}

.floating-whatsapp__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
}

.floating-whatsapp:hover .floating-whatsapp__panel,
.floating-whatsapp:focus-within .floating-whatsapp__panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
}

.floating-whatsapp.is-open .floating-whatsapp__panel,
.floating-whatsapp.is-open:focus-within .floating-whatsapp__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp__button,
.floating-whatsapp__top {
  position: relative;
  z-index: 2;
}

/* Vehicle card fix: remove the oversized decorative brand initial.
   It looked like a watermark over vehicle photos. */
.showcase-monogram {
  display: none;
}

.floating-whatsapp__button::before {
  display: none;
  content: none;
}

.floating-whatsapp__icon {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 680px) {
  .floating-whatsapp__icon {
    width: 28px;
    height: 28px;
    margin-right: 0;
  }
}

/* Mobile-first homepage polish: keep the first screen compact and make every
   primary control comfortable to tap without changing the desktop layout. */
@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-shell {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .site-header .brand-logo {
    width: 60px;
    height: 38px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    top: var(--header-height);
    padding-inline: 16px;
  }

  .mobile-nav a {
    min-height: 52px;
    font-size: 14px;
  }

  .hero-v3-visual {
    min-height: 690px;
  }

  .hero-v3-visual .hero-content {
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 20px;
  }

  .hero-v3-visual h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .hero-v3-visual .hero-lead {
    max-width: 32rem;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-v3-visual .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-v3-visual .hero-actions .btn {
    min-height: 48px;
    padding-inline: 16px;
  }

  .hero-visual-stage {
    min-height: 170px;
    margin-top: 8px;
  }

  .hero-vehicle--left {
    width: 52%;
    height: 108px;
  }

  .hero-vehicle--center {
    left: 22%;
    width: 58%;
    height: 138px;
  }

  .hero-vehicle--right {
    width: 44%;
    height: 114px;
  }

  .hero-dots {
    bottom: 16px;
  }

  .home-business-strip {
    padding: 18px 0;
  }

  .business-card-grid {
    gap: 12px;
  }

  .home-business-card {
    min-height: 150px;
    padding: 18px;
    border-radius: 14px;
  }

  .business-card-copy p {
    font-size: 12px;
    line-height: 1.45;
  }

  .business-card-copy strong {
    font-size: 12px;
  }

  .business-card-image,
  .business-parts-visual {
    width: 58%;
    max-height: 90px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .oe-copy h2,
  .integration-grid h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.05;
  }

  .section-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .vehicle-showcase-grid {
    gap: 10px;
    border: 0;
  }

  .vehicle-showcase-card {
    min-height: 300px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .showcase-card-copy h3 {
    max-width: 78%;
    font-size: clamp(28px, 9vw, 38px);
  }

  .showcase-card-copy > div {
    margin-top: 14px;
    font-size: 9px;
  }

  .showcase-arrow {
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }

  .platform-card {
    min-height: 0;
    padding: 22px;
  }

  .process-step {
    min-height: 0;
    padding-bottom: 26px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp__button {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .floating-whatsapp__panel {
    width: min(286px, calc(100vw - 24px));
  }

  .floating-whatsapp__top {
    width: 44px;
    height: 44px;
  }
}

/* Parts mobile quick navigation: keep all eight systems visible and prevent
   the contact controls from sitting underneath the category rail. */
@media (max-width: 680px) {
  .parts-quick-rail {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    padding: 9px;
    border-radius: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: minmax(0, 1fr);
    gap: 6px;
    overflow: visible;
  }

  .parts-quick-rail a {
    min-width: 0;
    min-height: 38px;
    padding: 6px 4px;
    justify-content: center;
    font-size: 8px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .parts-quick-rail a:hover,
  .parts-quick-rail a:focus-visible {
    transform: none;
  }

  body:has(.parts-quick-rail) .floating-whatsapp__top {
    display: none;
  }
}

/* Parts warehouse photography: real stock imagery blended into the hero and
   quotation workflow without changing the catalogue or enquiry behaviour. */
.page-hero--parts {
  min-height: 760px;
  padding-block: 150px 82px;
}

.page-hero--parts::after {
  opacity: 0.35;
}

.page-hero--parts .page-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 0.78fr);
  align-items: center;
  gap: 58px;
}

.page-hero--parts .page-hero__content {
  position: relative;
  z-index: 2;
}

.parts-hero-showcase {
  position: relative;
  min-height: 530px;
}

.parts-hero-photo,
.parts-hero-detail,
.parts-trade-gallery figure {
  margin: 0;
}

.parts-hero-photo {
  position: absolute;
  inset: 22px 62px 54px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: var(--ink-soft);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.parts-hero-photo::after,
.parts-trade-gallery figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 13, 18, 0.04) 38%,
    rgba(9, 13, 18, 0.84) 100%
  );
  content: "";
  pointer-events: none;
}

.parts-hero-photo img,
.parts-hero-detail img,
.parts-trade-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parts-hero-photo img {
  object-position: center;
}

.parts-hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: auto;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(230px, 72%);
  padding: 26px;
  gap: 5px;
}

.parts-hero-photo figcaption span,
.parts-trade-gallery figcaption span {
  color: var(--bronze-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.parts-hero-photo figcaption strong {
  max-width: 310px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.parts-hero-detail {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 218px;
  height: 154px;
  overflow: hidden;
  border: 7px solid var(--ink);
  background: var(--ink-soft);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.35);
}

.parts-hero-detail img {
  object-position: center;
}

.parts-hero-detail figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(transparent, rgba(8, 12, 17, 0.92));
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parts-hero-workflow {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: min(370px, 78%);
  border-color: rgba(227, 52, 58, 0.38);
  background: linear-gradient(
    145deg,
    rgba(13, 18, 23, 0.95),
    rgba(31, 29, 28, 0.9)
  );
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.4);
}

.parts-hero-workflow .hero-panel__label {
  color: var(--bronze-light);
}

.parts-trade-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(197, 22, 29, 0.13), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 86px 86px, 86px 86px, auto;
}

.parts-trade-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
  gap: 58px;
}

.parts-trade-copy {
  display: flex;
  padding-block: 10px;
  align-items: flex-start;
  flex-direction: column;
}

.parts-trade-copy .eyebrow {
  color: var(--bronze-light);
}

.parts-trade-copy h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.parts-trade-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.75;
}

.parts-trade-gallery {
  display: grid;
  height: 520px;
  min-height: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.parts-trade-gallery figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--ink-soft);
}

.parts-trade-gallery__primary {
  grid-row: 1 / span 2;
}

.parts-trade-gallery__primary img {
  object-position: center 46%;
}

.parts-trade-gallery figure:nth-child(2) img {
  object-position: center 34%;
}

.parts-trade-gallery figure:nth-child(3) img {
  object-position: center;
}

.parts-trade-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 18px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.parts-trade-gallery figcaption strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-align: right;
}

.parts-trade-gallery img {
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.parts-trade-gallery figure:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.parts-trade-steps {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.parts-trade-steps article {
  min-height: 180px;
}

.parts-trade-steps h3 {
  margin-top: 46px;
}

@media (min-width: 901px) {
  .parts-quick-rail {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate(-18px, -50%);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  .parts-quick-rail.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, -50%);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .page-hero--parts .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 32px;
  }

  .parts-hero-showcase {
    min-height: 490px;
  }

  .parts-hero-photo {
    right: 42px;
  }

  .parts-hero-detail {
    width: 178px;
    height: 132px;
  }

  .parts-hero-workflow {
    width: min(340px, 86%);
    padding: 25px;
  }
}

@media (max-width: 1100px) {
  .parts-trade-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .parts-trade-copy {
    max-width: 790px;
  }

  .parts-trade-gallery {
    height: 490px;
  }

  .parts-trade-steps {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .page-hero--parts {
    min-height: auto;
    padding-block: 142px 76px;
  }

  .page-hero--parts .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .parts-hero-showcase {
    min-height: 540px;
  }

  .parts-quick-rail {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .parts-quick-rail.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 680px) {
  .page-hero--parts {
    padding-block: 122px 58px;
  }

  .page-hero--parts .page-hero__grid {
    gap: 38px;
  }

  .parts-hero-showcase {
    min-height: 610px;
  }

  .parts-hero-photo {
    inset: 0 0 250px;
  }

  .parts-hero-photo figcaption {
    padding: 18px;
  }

  .parts-hero-photo figcaption strong {
    max-width: 240px;
    font-size: 14px;
  }

  .parts-hero-detail {
    top: 238px;
    right: 10px;
    width: 43%;
    height: 112px;
    border-width: 5px;
  }

  .parts-hero-detail figcaption {
    padding: 8px;
    font-size: 7px;
  }

  .parts-hero-workflow {
    right: 10px;
    bottom: 0;
    left: 10px;
    width: auto;
    padding: 22px;
  }

  .parts-hero-workflow > strong {
    font-size: 19px;
  }

  .parts-hero-workflow .check-list {
    margin-top: 18px;
  }

  .parts-hero-workflow .check-list li {
    font-size: 9px;
  }

  .parts-trade-section {
    padding-block: 64px;
  }

  .parts-trade-layout {
    gap: 30px;
  }

  .parts-trade-copy h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .parts-trade-copy > p:not(.eyebrow) {
    margin-block: 20px 26px;
    font-size: 13px;
  }

  .parts-trade-gallery {
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 260px 160px;
    gap: 8px;
  }

  .parts-trade-gallery__primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .parts-trade-gallery figcaption {
    padding: 12px;
  }

  .parts-trade-gallery figcaption strong {
    font-size: 9px;
  }

  .parts-trade-steps article {
    min-height: 0;
  }

  .parts-trade-steps h3 {
    margin-top: 34px;
  }
}
