/* Nonu Ventures — Industrial Export Site */
:root {
  --red: #E51E25;
  --red-deep: #B8181E;
  --red-glow: rgba(229, 30, 37, 0.45);
  --black: #080808;
  --charcoal: #111111;
  --slate: #1A1A1A;
  --slate-light: #242424;
  --white: #FFFFFF;
  --off-white: #F4F4F4;
  --muted: #8A8A8A;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: #E0E0E0;
  --font-display: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --layout-gutter: clamp(18px, 4.5vw, 28px);
  --section-space: clamp(56px, 8vw, 120px);
  --section-space-tight: clamp(48px, 7vw, 80px);
  --header-pill: 64px;
  --header-pill-pad-x: 20px;
  --header-pill-pad-y: 10px;
  --header-cluster-pad-left: 28px;
  --header-cluster-pad-right: var(--header-pill-pad-y);
  --header-logo-pad-y: 2px;
  --header-logo-pad-x: 18px;
  --header-pill-inner: 40px;
  --header: 84px;
  --radius-pill: 9999px;
  --radius-soft: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transform: translateY(-200%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: none;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.btn:focus-visible,
.menu-btn:focus-visible,
.quote-nav button:focus-visible,
.quote-dot:focus-visible,
.video-thumb:focus-visible,
.faq-q:focus-visible,
.back-top:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.site-header:not(.on-light) .header-cluster .btn:focus-visible,
.site-header:not(.on-light) .header-cluster .menu-btn:focus-visible {
  outline-color: var(--white);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 30, 37, 0.15);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--red);
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--red);
}

.field.is-invalid .field-error { display: block; }

.wrap {
  width: min(1280px, 100%);
  padding-inline: var(--layout-gutter);
  margin-inline: auto;
}

/* ─── ICON SYSTEM ─── */
.ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-soft);
  background: rgba(229, 30, 37, 0.08);
  color: var(--red);
}

.ico svg { display: block; }

.ico--sm { width: 32px; height: 32px; border-radius: var(--radius-soft); }
.ico--lg { width: 48px; height: 48px; border-radius: var(--radius-soft); }

.ico--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.ico--dark {
  background: var(--black);
  color: var(--white);
}

.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.icon-text span:last-child,
.icon-text > span {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin: 0 0 28px;
  animation: heroFadeUp 0.8s var(--ease) 0.05s both;
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.trust-bar .ico {
  width: 18px;
  height: 18px;
  background: transparent;
  border-radius: 0;
  color: var(--red);
}

.trust-bar strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.perk-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
}

.perk-row li {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
}

.perk-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.perk-row > li > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.perk-row > li > span:last-child > span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.section--dark .perk-row {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.section--dark .perk-row strong { color: var(--white); }
.section--dark .perk-row span { color: rgba(255, 255, 255, 0.45); }
.section--dark .perk-row .ico { background: rgba(255, 255, 255, 0.06); color: var(--red); }

.pain-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  overflow: hidden;
  margin-bottom: 32px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--off-white);
}

.pain-item:last-child { border-bottom: none; }

.pain-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.pain-item span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 32px;
}

.cta-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cta-perks .ico {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 34px;
  height: 34px;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 10px 0;
  background: transparent;
  border: none;
  pointer-events: none;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  pointer-events: auto;
}

.header-logo,
.header-cluster {
  height: var(--header-pill);
  min-height: var(--header-pill);
  padding: var(--header-pill-pad-y) var(--header-pill-pad-x);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.header-logo {
  padding: var(--header-logo-pad-y) var(--header-logo-pad-x);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.07);
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s var(--ease), border-color 0.35s var(--ease);
}

.header-logo:hover { opacity: 0.92; }

.site-header.on-light .header-logo { border-color: var(--line-dark); }

.header-logo img {
  height: var(--header-pill-inner);
  max-height: var(--header-pill-inner);
  width: auto;
  display: block;
}

.header-cluster {
  gap: 18px;
  margin-left: auto;
  padding: var(--header-pill-pad-y) var(--header-cluster-pad-right) var(--header-pill-pad-y) var(--header-cluster-pad-left);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line);
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.site-header.on-light .header-cluster {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line-dark);
}

.header-nav {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 20px;
  height: 100%;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  margin: 0;
}

.nav__list li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__list a {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
  position: relative;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
}

.nav__list .nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: var(--header-pill-inner);
}

.nav__link > span:last-child {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.72;
  transition: opacity 0.2s;
}

.nav__ico svg {
  display: block;
}

.nav__list a:hover .nav__ico,
.nav__list a.is-active .nav__ico { opacity: 1; }

.nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }

.site-header.on-light .header-cluster .nav__list a { color: var(--muted); }
.header-cluster .nav__list a:hover,
.header-cluster .nav__list a.is-active { color: var(--white); }
.site-header.on-light .header-cluster .nav__list a:hover,
.site-header.on-light .header-cluster .nav__list a.is-active { color: var(--black); }

.header-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 8px;
  flex-shrink: 0;
  height: 100%;
}

.header-cluster .header-cta,
.header-cluster .nav__cta {
  height: var(--header-pill-inner);
  min-height: var(--header-pill-inner);
  padding: 0 18px;
  font-size: 0.9375rem;
  line-height: 1;
  align-self: center;
}

.header-cluster .menu-btn {
  align-self: center;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn:active { transform: scale(0.98); }

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

.btn--red:hover { background: var(--red-deep); }

.btn--outline-light {
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--black);
}

.btn--outline-dark {
  color: var(--black);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}

.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn--block { width: 100%; justify-content: center; }

.menu-btn {
  display: none;
  width: var(--header-pill-inner);
  height: var(--header-pill-inner);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border-radius: 50%;
  transition: background 0.2s;
}

.header-cluster .menu-btn:hover { background: rgba(255, 255, 255, 0.08); }
.site-header.on-light .header-cluster .menu-btn:hover { background: rgba(0, 0, 0, 0.05); }

.header-cluster .menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.site-header.on-light .header-cluster .menu-btn span { background: var(--black); }
.menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--black);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px);
  transform: scale(1.02);
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero__video.is-active { opacity: 1; }

.hero__motto-bar {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 132px;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__motto-bar li {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.5s var(--ease);
}

.hero__motto-bar li.is-active {
  color: var(--white);
}

.hero__motto-bar li.is-active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
  transform: translateY(-1px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.82) 55%, rgba(8, 8, 8, 0.92) 100%),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(229, 30, 37, 0.12), transparent 70%);
}

.hero__stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
  z-index: 2;
}

.hero__line {
  height: 4px;
  background: var(--red);
  width: 100%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header) + 56px) 0 48px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.kicker::before {
  content: '';
  width: 48px;
  height: 3px;
  background: var(--red);
}

.kicker span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }

.hero__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-top: clamp(24px, 5vw, 48px);
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--white);
  white-space: nowrap;
  animation: heroFadeUp 0.8s var(--ease) both;
}

.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.22s; }

.hero__title-line--accent {
  color: var(--red);
  font-weight: 800;
}

.hero__title-rotator {
  display: inline-grid;
  text-align: center;
}

.hero__title-phrase {
  position: relative;
  z-index: 0;
  grid-area: 1 / 1;
  color: var(--red);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change: opacity, transform;
}

.hero__title-line--accent .hero__title-phrase {
  --hero-outline: clamp(2px, 0.4vw, 5px);
  text-shadow:
    calc(-1 * var(--hero-outline)) 0 0 var(--black),
    var(--hero-outline) 0 0 var(--black),
    0 calc(-1 * var(--hero-outline)) 0 var(--black),
    0 var(--hero-outline) 0 var(--black),
    calc(-0.707 * var(--hero-outline)) calc(-0.707 * var(--hero-outline)) 0 var(--black),
    calc(0.707 * var(--hero-outline)) calc(-0.707 * var(--hero-outline)) 0 var(--black),
    calc(-0.707 * var(--hero-outline)) calc(0.707 * var(--hero-outline)) 0 var(--black),
    calc(0.707 * var(--hero-outline)) calc(0.707 * var(--hero-outline)) 0 var(--black);
}

.hero__title-phrase.is-active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}

.hero__lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 36px;
  animation: heroFadeUp 0.8s var(--ease) 0.35s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: heroFadeUp 0.8s var(--ease) 0.5s both;
}

/* ── Hero footer stats ── */
.hero__footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: clamp(40px, 6vw, 72px);
}

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  box-shadow:
    0 -12px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.hero__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 18%, var(--red) 82%, transparent 100%);
  z-index: 1;
}

.hero__stat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(28px, 4vw, 40px) clamp(18px, 2.5vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.hero__stat:last-child { border-right: none; }

.hero__stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 5vw, 52px);
  height: clamp(44px, 5vw, 52px);
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(229, 30, 37, 0.14);
  border: 1px solid rgba(229, 30, 37, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__stat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  line-height: 0;
}

.hero__stat-ico svg { display: block; }

.hero__stat-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.875rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero__stat:first-child .hero__stat-value { color: var(--red); }

.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

/* ─── SECTIONS ─── */
.section { padding: var(--section-space) 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--gray { background: var(--off-white); }

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

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.02em;
}

.section-head p {
  max-width: 420px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-head p a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-head p a:hover { color: var(--red); }

.section--dark .section-head p { color: rgba(255, 255, 255, 0.5); }

.section-head--spaced { margin-top: 96px; }
.section-head--spaced-sm { margin-top: 72px; }
.section--flush { padding: 0; }
.section-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section-cta--sm { margin-top: 40px; }

/* ─── CATALOG SCROLL ─── */
.catalog-wrap {
  position: relative;
}

.catalog-wrap::before,
.catalog-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 8px;
  width: 48px;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.catalog-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.catalog-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.section--gray .catalog-wrap::before {
  background: linear-gradient(90deg, var(--off-white), transparent);
}

.section--gray .catalog-wrap::after {
  background: linear-gradient(270deg, var(--off-white), transparent);
}

.catalog-wrap.at-start::before { opacity: 0; }
.catalog-wrap.at-end::after { opacity: 0; }

.catalog {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.catalog::-webkit-scrollbar { display: none; }

.catalog-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.28);
  box-shadow: 0 10px 32px rgba(8, 8, 8, 0.08);
}

.catalog:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: var(--radius-soft);
}

.catalog .catalog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.catalog-card__img {
  aspect-ratio: 1;
  background: var(--off-white);
  overflow: hidden;
}

.catalog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  display: block;
}

.catalog-card__body {
  padding: 20px 22px 24px;
  text-align: left;
}

/* Image SEO captions — visible descriptions for Google Images / AI search */
.seo-figure {
  margin: 0;
  width: 100%;
}

.seo-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.seo-figure__caption {
  margin-top: 12px;
  padding: 0 2px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.seo-figure--product .seo-figure__caption {
  max-width: 40rem;
}

.catalog-card__img-desc {
  margin-top: 8px;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-card__sku {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(229, 30, 37, 0.08);
  border-radius: var(--radius-pill);
}

.catalog-card h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--charcoal);
}

.catalog-card__link:hover h3 { color: var(--red); }

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 220px;
  width: 220px;
  max-width: calc(50% - 7px);
  min-height: 220px;
  padding: 24px 18px 22px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.28);
  box-shadow: 0 10px 32px rgba(8, 8, 8, 0.08);
}

.category-card__num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
}

.category-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(229, 30, 37, 0.14);
  border: 1px solid rgba(229, 30, 37, 0.28);
  color: var(--red);
}

.category-card__badge svg { display: block; }

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ─── CJ340 ─── */
.cj340-banner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--black);
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.cj340-banner__copy {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cj340-banner__copy .kicker span { color: var(--red); }
.cj340-banner__copy .kicker::before { background: var(--red); }

.cj340-banner__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.cj340-banner__copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  max-width: 440px;
}

.cj340-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 28px;
}

.cj340-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.cj340-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cj340-banner__visual {
  min-height: 320px;
  overflow: hidden;
}

.cj340-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* ─── CJ340 CATALOG PAGE ─── */
.cj340-page .site-header:not(.on-light) {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.cj340-hero {
  background: var(--black);
  color: var(--white);
  padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line-dark);
}

.cj340-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.cj340-hero__copy .kicker span { color: var(--red); }
.cj340-hero__copy .kicker::before { background: var(--red); }
.cj340-hero__copy .breadcrumb a { color: rgba(255, 255, 255, 0.5); }
.cj340-hero__copy .breadcrumb li:not(:last-child)::after { color: rgba(255, 255, 255, 0.25); }
.cj340-hero__copy .breadcrumb li[aria-current="page"] { color: rgba(255, 255, 255, 0.8); }

.cj340-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 16px 0 20px;
}

.cj340-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-bottom: 24px;
}

.cj340-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.cj340-hero__visual {
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
}

.cj340-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.cj340-story__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.cj340-story__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cj340-story__copy p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cj340-story__meta {
  display: grid;
  gap: 12px;
  margin: 28px 0 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cj340-story__meta div {
  display: grid;
  gap: 4px;
}

.cj340-story__meta strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cj340-story__meta span {
  font-size: 0.95rem;
  font-weight: 500;
}

.cj340-story__aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: clamp(24px, 3vw, 32px);
}

.cj340-story__aside h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cj340-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cj340-cat-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--gray-50);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}

.cj340-cat-chip:hover {
  border-color: var(--red);
  color: var(--red);
}

.cj340-story__list {
  display: grid;
  gap: 10px;
}

.cj340-story__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cj340-condition__head {
  max-width: 640px;
  margin-bottom: 32px;
}

.cj340-condition__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cj340-condition__head p {
  color: var(--text-muted);
  line-height: 1.75;
}

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

.cj340-condition__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: clamp(24px, 3vw, 32px);
}

.cj340-condition__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: rgba(227, 24, 55, 0.08);
  color: var(--red);
  margin-bottom: 16px;
}

.cj340-condition__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cj340-condition__card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.cj340-parts__head {
  max-width: 640px;
  margin-bottom: 32px;
}

.cj340-parts__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 12px 0;
}

.cj340-parts__head p {
  color: var(--text-muted);
  line-height: 1.75;
}

.catalog--cj340 .catalog-card__img {
  aspect-ratio: 864 / 1200;
  position: relative;
}

.catalog--cj340 .catalog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cj340-part-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(8, 8, 8, 0.72);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cj340-part-card__condition {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cj340-parts__foot {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
}

.cj340-parts__foot p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.cj340-parts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.cj340-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cj340-cta-band__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cj340-cta-band__inner p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 520px;
}

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

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--red);
}

.text-link:hover { text-decoration: underline; }

/* ─── CATEGORIES ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
}

.cat-cell {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line-dark);
  overflow: hidden;
}

.cat-cell::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.35s var(--ease);
}

.cat-cell:hover { background: var(--off-white); }
.cat-cell:hover::after { width: 100%; }

.cat-cell--hero {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: end;
  background: var(--black);
  color: var(--white);
  padding: 48px 40px;
  border-color: var(--line);
}

.cat-cell--hero:hover { background: var(--charcoal); }
.cat-cell--hero::after { display: none; }

.cat-cell__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 12px;
}

.cat-cell h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-cell--hero .cat-cell__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cat-cell--hero h3 { font-size: clamp(2rem, 4vw, 2.75rem); }

.cat-cell p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 10px;
}

.cat-cell--hero p { color: rgba(255, 255, 255, 0.55); margin-top: 0; }

/* ─── TOOL PANEL (base — variants below override padding) ─── */
.tool-panel {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  padding: 28px;
}

/* ─── BRANDS ─── */
.brands-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.brands-showcase {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.brands-showcase__head {
  margin-bottom: clamp(36px, 5vw, 48px);
}

.brands-showcase__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.brands-showcase__head p {
  max-width: 580px;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.brands-showcase__head p a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brands-showcase__head p a:hover { color: var(--red); }

.catalogue-showcase {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.brands-showcase .catalog-wrap,
.catalogue-showcase .catalog-wrap {
  margin-bottom: 28px;
}

.catalogue-showcase + .catalogue-showcase,
.catalogue-showcase + .brands-showcase,
.brands-showcase + .catalogue-showcase,
.brands-showcase + .brands-showcase {
  margin-top: clamp(80px, 10vw, 120px);
}

.brands-showcase--platforms { max-width: 1040px; }
.brands-showcase--process {
  max-width: none;
  width: 100%;
}

.brands-showcase--process .process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: stretch;
  width: 100%;
}

.brands-showcase--process .process-card {
  flex: none;
  width: 100%;
  max-width: none;
}
.brands-showcase--resources,
.brands-showcase--testimonials,
.brands-showcase--cj340 { max-width: 1080px; }

.brands-showcase--contact {
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
  text-align: center;
}

.brands-showcase--contact .contact-channel-grid,
.brands-showcase--contact .contact-channel-grid--duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
}

.brands-showcase--contact .contact-channel-card {
  flex: none;
  width: 100%;
  max-width: none;
}

.brands-showcase--contact .export-rfq-panel {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.brands-showcase--contact .export-rfq-panel__actions {
  justify-content: center;
}

.brands-showcase--contact .quote-location {
  justify-content: center;
  text-align: center;
}

.brands-showcase--videos { max-width: min(1120px, 100%); }
.brands-showcase--about {
  max-width: none;
  width: 100%;
}

.brands-showcase--about .pain-showcase-grid,
.brands-showcase--about .pillar-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: stretch;
  width: 100%;
}

.brands-showcase--about .pain-showcase-card,
.brands-showcase--about .pillar-showcase-card {
  flex: none;
  width: 100%;
  max-width: none;
}

.brands-showcase--faq { max-width: 960px; }

.section--dark .brands-showcase__head p {
  color: rgba(255, 255, 255, 0.55);
}

.section--dark .brands-showcase__head p a {
  color: rgba(255, 255, 255, 0.85);
}

.section--dark .showcase-points li { color: rgba(255, 255, 255, 0.5); }
.section--dark .showcase-points strong { color: var(--white); }

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  flex: 0 1 156px;
  width: 156px;
  max-width: calc(33.333% - 10px);
  min-height: 120px;
  padding: 22px 14px 18px;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  color: inherit;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.platform-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.platform-card span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.process-card {
  flex: 0 1 300px;
  width: 300px;
  max-width: 100%;
  padding: 28px 24px;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.process-card__num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 14px;
}

.process-card .ico { margin: 0 auto 14px; }

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}

.resource-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.resource-showcase-grid .tool-card,
.resource-showcase-grid .resource-card {
  flex: 0 1 260px;
  width: 260px;
  max-width: calc(50% - 7px);
  min-height: 168px;
}

.about-showcase-visual {
  max-width: 680px;
  margin: 0 auto 36px;
}

.pain-showcase-grid,
.pillar-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.pain-showcase-card,
.pillar-showcase-card {
  flex: 0 1 280px;
  width: 280px;
  max-width: 100%;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  text-align: center;
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.pain-showcase-card:hover,
.pillar-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.28);
  box-shadow: 0 10px 32px rgba(8, 8, 8, 0.08);
}

/* Icon circles — keep flex centering (do not let text-span rules override .ico) */
.pain-showcase-card .ico,
.pillar-showcase-card .pillar__icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  flex-shrink: 0;
  border-radius: 50%;
  box-sizing: border-box;
}

.pain-showcase-card .ico {
  width: 40px;
  height: 40px;
  background: rgba(229, 30, 37, 0.08);
  color: var(--red);
}

.pain-showcase-card .ico svg,
.pillar-showcase-card .pillar__icon svg {
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.pillar-showcase-card .pillar__icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
}

.pain-showcase-card strong,
.pillar-showcase-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}

/* Description text only — not the icon container */
.pain-showcase-card > span:not(.ico),
.pillar-showcase-card > span:not(.pillar__icon) {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

#products .catalog-card__img { aspect-ratio: 1; }

#cj340 .catalog-card__img { aspect-ratio: 864 / 1200; }

#products .catalog-card__img img,
#cj340 .catalog-card__img img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

.cj340-showcase-visual {
  max-width: 760px;
  margin: 0 auto 36px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
}

.cj340-showcase-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.quote-copy .showcase-points,
.faq-copy .showcase-points {
  justify-content: flex-start;
}

.video-hub.video-hub--showcase {
  width: 100%;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
  align-items: stretch;
}

.video-hub.video-hub--showcase .video-showcase__player {
  grid-row: 1;
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(28px, 4vw, 40px);
}

.video-hub.video-hub--showcase .catalog-wrap {
  grid-row: 2;
  width: 100%;
  margin-bottom: 0;
}

.video-hub.video-hub--showcase .video-hub__embed {
  box-shadow: 0 14px 44px rgba(8, 8, 8, 0.1);
}

.video-hub.video-hub--showcase .video-hub__now-playing {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
}

.video-catalog .video-card {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  font: inherit;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.video-catalog .video-card.video-thumb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 0;
  grid-template-columns: unset;
}

.video-catalog .video-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

.video-catalog .video-card__thumb,
.video-catalog .video-card__thumb img {
  border-radius: 0;
}

.video-catalog .video-card__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
}

.video-catalog .video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.28);
  box-shadow: 0 10px 32px rgba(8, 8, 8, 0.08);
}

.video-catalog .video-card.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 10px 32px rgba(8, 8, 8, 0.08);
}

.video-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--off-white);
}

.video-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__title {
  padding: 16px 18px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--charcoal);
}

.contact-channel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  width: 100%;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 320px;
  width: 320px;
  max-width: 100%;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
  color: inherit;
  text-align: left;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.28);
  box-shadow: 0 10px 32px rgba(8, 8, 8, 0.08);
}

.contact-channel-card--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.45);
}

.contact-channel-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-channel-card strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.contact-channel-card > span:last-child > span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.quote-showcase-panel {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  text-align: left;
}

.faq-showcase {
  width: 100%;
  text-align: left;
}

.brands-showcase__foot--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.brands-showcase__foot--center.quote-location {
  font-size: 0.9rem;
}

.faq-showcase {
  margin-bottom: 0;
}

.tool-panel.faq-panel.faq-showcase {
  border: none;
  padding: 0;
}

.brands-showcase .quote-carousel {
  width: 100%;
}

.faq-copy .btn {
  margin-top: 8px;
}

.catalogue-showcase--categories {
  max-width: 1040px;
}

.brands-showcase__actions--pair {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.vehicle-oem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.vehicle-oem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 0 1 156px;
  width: 156px;
  max-width: calc(50% - 7px);
  min-height: 132px;
  padding: 24px 16px 20px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.vehicle-oem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 30, 37, 0.28);
  box-shadow: 0 10px 32px rgba(8, 8, 8, 0.08);
}

.vehicle-oem-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.vehicle-oem-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.vehicle-oem-card__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 140px);
  max-height: 48px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 1;
}

.vehicle-oem-card__name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brands-showcase__actions {
  margin-bottom: 0;
}

.brands-showcase__actions + .brands-showcase__foot {
  margin-top: 28px;
}

.showcase-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  list-style: none;
}

.brands-showcase__head .showcase-points {
  margin-bottom: 28px;
}

.showcase-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.showcase-points .ico {
  width: 18px;
  height: 18px;
  background: transparent;
  border-radius: 0;
  color: var(--red);
}

.showcase-points strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.brands-showcase__foot {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
}

.brands-showcase--suppliers {
  max-width: none;
  width: 100%;
}

.brands-showcase--suppliers .vehicle-oem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: stretch;
  width: 100%;
}

.brands-showcase--suppliers .vehicle-oem-card {
  flex: none;
  width: 100%;
  max-width: none;
  background: var(--white);
}



.vehicle-oem-card--other .vehicle-oem-card__logo img {
  width: auto;
  height: auto;
  max-width: 32px;
  max-height: 32px;
}

.brands-showcase--suppliers .vehicle-oem-card__logo {
  height: 56px;
  min-height: 56px;
}

.brands-showcase--suppliers .vehicle-oem-card__logo img {
  width: auto;
  height: auto;
  max-width: min(100%, 148px);
  max-height: 48px;
  object-fit: contain;
  object-position: center;
}

.brands-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: none;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.brands-copy > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 440px;
}

.vehicle-oem-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 440px;
}

.vehicle-oem-logos__item {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px 22px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vehicle-oem-logos__item:hover {
  border-color: var(--black);
  box-shadow: 0 2px 8px rgba(8, 8, 8, 0.06);
}

.vehicle-oem-logos__item:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.vehicle-oem-logos__item img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 128px);
  max-height: 44px;
  object-fit: contain;
  object-position: center;
}

.brands-copy .btn { margin-bottom: 32px; }

.brands-copy .perk-row,
.brands-perks { margin-bottom: 0; }

.brand-list--scroll {
  max-height: min(560px, 60vh);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-dark) transparent;
}

.brand-list--scroll::-webkit-scrollbar { width: 6px; }
.brand-list--scroll::-webkit-scrollbar-thumb {
  background: var(--line-dark);
  border-radius: var(--radius-pill);
}

.tool-panel.brands-panel {
  padding: clamp(28px, 4vw, 36px);
}

.brands-panel__head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.brands-panel__head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.brands-panel__head p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.brand-list {
  display: flex;
  flex-direction: column;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.brand-list > .brand-row:first-child { border-top: 1px solid var(--line-dark); }

.brand-row:hover { color: var(--black); }

.brand-row:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: var(--radius-soft);
}

.brand-row:hover .brand-row__arrow { color: var(--red); transform: translateX(3px); }

.brand-row--sourcing .brand-row__logo {
  background: var(--off-white);
  border-style: dashed;
}

.brand-row__logo {
  flex: 0 0 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  height: 56px;
  padding: 10px 12px;
  background: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.brand-row__body {
  flex: 1;
  min-width: 0;
}

.brand-row__logo--icon {
  color: var(--muted);
}

.brand-row__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 92px);
  max-height: 36px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 1;
}

.brand-row__body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.brand-row__body p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.brand-row__arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  transition: color 0.2s, transform 0.2s var(--ease);
}

.brands-panel__foot {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}

.brands-copy .quote-channel .ico {
  background: rgba(229, 30, 37, 0.08);
  color: var(--red);
}

.section-head__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-head__link:hover { color: var(--red); }

.section--dark .section-head__link { color: rgba(255, 255, 255, 0.85); }

.section--dark .section-head__link:hover { color: var(--red); }

/* ─── CATALOGUE ─── */
.catalogue-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
}

.catalogue-search {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 2px 14px rgba(8, 8, 8, 0.04);
}

.catalogue-search__head {
  margin-bottom: 20px;
}

.catalogue-search__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.catalogue-search__head p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 560px;
}

.catalogue-search__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.catalogue-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(200px, 0.8fr);
  gap: 14px;
  align-items: end;
}

.catalogue-search__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.catalogue-search__field--grow { min-width: 0; }

.catalogue-search__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalogue-search__input-wrap {
  position: relative;
}

.catalogue-search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  line-height: 0;
}

.catalogue-search__input-wrap input,
.catalogue-search__input-wrap select {
  width: 100%;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.25;
  background: var(--off-white);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.catalogue-search__input-wrap input {
  padding-left: 48px;
}

.catalogue-search__input-wrap--select select {
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.catalogue-search__icon--end {
  left: auto;
  right: 18px;
  pointer-events: none;
}

.catalogue-search__input-wrap input:focus,
.catalogue-search__input-wrap select:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(229, 30, 37, 0.12);
}

.catalogue-search__input-wrap select:hover {
  border-color: var(--black);
  background: var(--white);
}

.catalogue-search__status {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

#catalogue-grid.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  width: 100%;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.catalogue-card[hidden] {
  display: none !important;
}

.catalogue-card:hover {
  border-color: var(--black);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.catalogue-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  min-height: 0;
}

.catalogue-card__img {
  position: relative;
  aspect-ratio: 1;
  background: var(--off-white);
  overflow: hidden;
}

.catalogue-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.catalogue-card__brand {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-pill);
}

.catalogue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}

.catalogue-card__sku {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 8px;
}

.catalogue-card__es,
.part-detail__es {
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  font-style: italic;
}

.export-markets-band-wrap {
  padding-block: 0;
}

.export-markets-band {
  padding: 14px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.export-markets-band__label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.export-markets-band__links {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.export-markets-band__links a {
  font-weight: 600;
}

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

@media (max-width: 640px) {
  .contact-channel-grid--duo {
    grid-template-columns: 1fr;
  }
}

.export-rfq-panel {
  margin-top: 24px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: var(--surface);
}

.export-rfq-panel h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.export-rfq-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.export-rfq-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalogue-card__body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
}

.catalogue-empty {
  grid-column: 1 / -1;
  padding: clamp(32px, 5vw, 48px) 0;
  text-align: left;
  color: var(--muted);
  line-height: 1.7;
}

.catalogue-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
}

.catalogue-cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.catalogue-cta-band p {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── VEHICLES ─── */
.vehicle-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.vehicle-tile {
  display: block;
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
  color: inherit;
}

.vehicle-tile:nth-child(4n) { border-right: none; }
.vehicle-tile:nth-last-child(-n+4) { border-bottom: none; }

.vehicle-tile:hover { background: var(--slate-light); }

.vehicle-tile .ico { margin-bottom: 14px; }

.vehicle-tile h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.vehicle-tile span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* ─── ABOUT ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-visual__main {
  grid-column: span 2;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  padding: 32px;
}

.about-visual__main img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
}

.about-visual__sub {
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  padding: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual__sub img {
  max-height: 140px;
  object-fit: contain;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: none;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 18px;
}

.pillars {
  margin: 36px 0 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}

.pillar__icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-soft);
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.pillar span { font-size: 0.875rem; color: var(--muted); }

/* ─── PROCESS ─── */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
}

.process-step {
  background: var(--slate);
  padding: 48px 36px;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
}

.process-step__icon {
  margin-bottom: 20px;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── TESTIMONIALS ─── */
.quote-band {
  position: relative;
  overflow: hidden;
}

.quote-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.quote-slide {
  min-width: 100%;
  padding: 0 24px;
}

.quote-slide__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-slide__mark {
  margin: 0 auto 24px;
  color: var(--red);
  opacity: 0.7;
}

.quote-slide blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
  color: var(--white);
  margin-bottom: 36px;
}

.quote-slide cite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.quote-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.25s, transform 0.25s;
}

.quote-dot.is-active {
  background: var(--red);
  transform: scale(1.2);
}

.quote-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.quote-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: 0.25s;
}

.quote-nav button:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

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

.cta-band .btn:hover { background: var(--black); color: var(--white); }

/* ─── QUOTE / CONTACT ─── */
.quote-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.quote-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: none;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.quote-copy > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 440px;
}

.quote-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.quote-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.quote-channel:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.quote-channel--whatsapp:hover { border-color: #25D366; }

.quote-channel > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.quote-channel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-channel > span:last-child > span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quote-channel--whatsapp .ico {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.quote-copy .perk-row { margin-bottom: 28px; }

.quote-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.quote-location svg { flex-shrink: 0; opacity: 0.55; }

.tool-panel.quote-panel { padding: clamp(28px, 4vw, 36px); }

/* Legacy enquiry form removed — export desk uses email/WhatsApp only */

/* Guides & Tools homepage section hidden */
#resources { display: none; }

.quote-panel__head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.quote-panel__head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.quote-panel__head p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.form-required-legend {
  margin: 0 0 20px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-required-legend .required-mark {
  color: var(--red);
  font-weight: 700;
}

.quote-form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field--required > label:first-child::after,
.field:has(> input[required], > textarea[required], > select[required]) > label:first-child::after {
  content: ' *';
  color: var(--red);
  font-weight: 700;
}

.field--optional > label:first-child::after,
.field:has(> input:not([required]):not([type=radio]):not([type=checkbox]), > textarea:not([required]), > select:not([required])) > label:first-child::after {
  content: ' (optional)';
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.65rem;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  border-radius: var(--radius-pill);
  transition: border-color 0.2s;
}

.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  border-radius: var(--radius-soft);
  min-height: 140px;
  resize: vertical;
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--black);
}

.field--full { grid-column: 1 / -1; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips input { display: none; }

.chips label {
  padding: 10px 18px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 0;
}

.chips input:checked + label {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.chips label:hover { border-color: var(--black); }

.chips input:focus-visible + label {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.form-done {
  display: none;
  text-align: center;
  padding: 48px 16px;
}

.form-done.show { display: flex; flex-direction: column; align-items: center; }

.quote-panel:has(.form-done.show) .quote-panel__head,
.quote-panel:has(.form-done.show) .quote-form {
  display: none;
}

.form-done__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 30, 37, 0.08);
  border-radius: 50%;
  color: var(--red);
  margin-bottom: 24px;
}

.form-done h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.form-done p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 28px;
}

/* ─── FAQ ─── */
.faq-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.faq-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: none;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.faq-copy > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 400px;
}

.faq-copy .btn { margin-bottom: 32px; }

.faq-perks { margin-bottom: 0; }

.tool-panel.faq-panel { padding: clamp(24px, 4vw, 32px) clamp(28px, 4vw, 36px); }

.faq-panel .faq { max-width: none; margin: 0; }

.faq-panel .faq-item:first-child { border-top: 1px solid var(--line-dark); }

.faq { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--line-dark); }

.faq-q__label {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.faq-q__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-q__icon {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-panel .faq-q { padding: 20px 0; font-size: 1rem; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--black);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a p {
  padding-bottom: 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-a a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-a a:hover { color: var(--red); }

.faq-item.open .faq-a { max-height: 320px; }

.faq-panel .faq-item.open .faq-a { max-height: 360px; }

.page-faq__head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.page-faq__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.page-faq__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.page-faq__panel { max-width: 820px; }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background 0.25s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-top:hover { background: var(--red); }

body.menu-open { overflow: hidden; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  pointer-events: none;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ─── FOOTER ─── */
.site-footer {
  position: relative;
  background: var(--off-white);
  color: var(--muted);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line-dark);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.5fr;
  gap: clamp(40px, 6vw, 72px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 28px;
}

.footer-logo {
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 0.9; }

.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand > p {
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 340px;
  color: var(--muted);
}

.footer-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
}

.footer-perks li {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-perks strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  margin-right: 4px;
}

.footer-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: 0 2px 10px rgba(8, 8, 8, 0.04);
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.footer-channel:hover {
  border-color: rgba(229, 30, 37, 0.28);
  color: var(--black);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(8, 8, 8, 0.07);
}

.footer-channel--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.45);
  color: #1a9e4a;
}

.footer-channel svg { flex-shrink: 0; opacity: 0.55; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-col li { margin-bottom: 11px; }

.footer-col a {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--charcoal);
  transition: color 0.2s, opacity 0.2s;
}

.footer-col a:hover { color: var(--red); }

/* Library & Apps — secondary destinations, keep quiet in the parts footer */
.footer-col a[href*="library"],
.footer-col a[href*="/apps/"],
.footer-col a[href$="apps/"],
.footer-col a[href$="apps"],
.footer-col a[href$="library/"],
.footer-col a[href$="library"] {
  opacity: 0.38;
  color: var(--muted);
}

.footer-col a[href*="library"]:hover,
.footer-col a[href*="/apps/"]:hover,
.footer-col a[href$="apps/"]:hover,
.footer-col a[href$="apps"]:hover,
.footer-col a[href$="library/"]:hover,
.footer-col a[href$="library"]:hover {
  opacity: 0.85;
  color: var(--red);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

/* ─── INNER PAGES (SEO) ─── */
.page-hero {
  padding: calc(var(--header) + 52px) 0 60px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero--dark {
  background: var(--black);
  color: var(--white);
  border-bottom-color: var(--line);
}

.page-hero--dark .kicker span { color: var(--red); }
.page-hero--dark .page-hero__lead { color: rgba(255, 255, 255, 0.55); }
.page-hero--dark .page-hero__meta { color: rgba(255, 255, 255, 0.4); }
.page-hero--dark .breadcrumb a { color: rgba(255, 255, 255, 0.5); }
.page-hero--dark .breadcrumb li:not(:last-child)::after { color: rgba(255, 255, 255, 0.25); }
.page-hero--dark .breadcrumb li[aria-current="page"] { color: rgba(255, 255, 255, 0.8); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  font-weight: 700;
  text-transform: none;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 16px;
}

.page-hero__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.page-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.tag-link {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(229, 30, 37, 0.08);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.page-hero--dark .tag-link {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.error-page {
  text-align: center;
  padding-bottom: clamp(64px, 10vw, 96px);
}

.error-page .kicker--center { justify-content: center; }

.error-page__code {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.12);
}

.error-page h1 { margin-bottom: 16px; }

.error-page .page-hero__lead {
  margin-inline: auto;
  max-width: 560px;
}

.error-page .page-hero__actions {
  justify-content: center;
  margin-top: 28px;
}

.error-page__links .vehicle-links {
  margin-top: 8px;
}

/* ─── 404 PAGE ─── */
.error-404-page {
  min-height: 100vh;
  background: var(--black);
}

.error-404-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}

/* Legacy hero (full-site mode) */
.error-404-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: calc(var(--header) + clamp(48px, 8vw, 80px)) 0 clamp(72px, 10vw, 104px);
  text-align: center;
}

.error-404-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(229, 30, 37, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
}

.error-404-hero__inner { position: relative; z-index: 1; }

.error-404-hero__watermark {
  margin: 0 0 -0.15em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.06);
  user-select: none;
}

.error-404-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(229, 30, 37, 0.14);
  border: 1px solid rgba(229, 30, 37, 0.35);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8a8f;
}

.error-404-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
}

.error-404-hero__lead {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.error-404-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* Public 404 stage */
.error-404-stage {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: calc(var(--header) + clamp(56px, 9vw, 96px)) 0 clamp(64px, 9vw, 100px);
  text-align: center;
}

.error-404-stage__glow {
  position: absolute;
  inset: -20% 10% auto;
  height: 60%;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(229, 30, 37, 0.35), transparent 70%);
  pointer-events: none;
}

.error-404-stage__grid {
  position: absolute;
  inset: 0;
  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: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

.error-404-stage__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.error-404-stage__code {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 16vw, 9.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  user-select: none;
}

.error-404-stage__code span {
  display: inline-block;
  background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-404-stage__zero {
  position: relative;
  color: transparent !important;
  background: none !important;
  -webkit-text-fill-color: transparent;
}

.error-404-stage__zero::before {
  content: "0";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  text-shadow: 0 0 40px rgba(229, 30, 37, 0.55);
  -webkit-text-fill-color: var(--red);
}

.error-404-stage__badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.error-404-stage h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.error-404-stage__lead {
  margin: 0 auto;
  max-width: 34em;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.error-404-stage__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.error-404-destinations {
  position: relative;
  z-index: 1;
  margin-top: -24px;
  padding: 0 0 clamp(64px, 10vw, 100px);
}

.error-404-destinations .wrap {
  max-width: 1080px;
}

.error-404-destinations__head {
  text-align: center;
  margin-bottom: 28px;
}

.error-404-destinations__label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.error-404-destinations__head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
}

.error-404-destinations__head p {
  margin: 0 auto;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.55);
}

.error-404-section-head {
  margin-bottom: 28px;
  text-align: center;
}

.error-404-section-head__label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.error-404-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.error-404-section-head p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
}

.error-404-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.error-404-grid--public {
  gap: 16px;
}

.error-404-card {
  --card-accent: var(--red);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background: linear-gradient(165deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
  overflow: hidden;
}

.error-404-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--card-accent);
  opacity: 0.85;
}

.error-404-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-accent) 45%, transparent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.error-404-page:not(.error-404-page--public) .error-404-card {
  background: var(--white);
  border-color: var(--line);
}

.error-404-page:not(.error-404-page--public) .error-404-card:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.error-404-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--card-accent) 14%, transparent);
  color: var(--card-accent);
}

.error-404-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.error-404-page:not(.error-404-page--public) .error-404-card strong {
  color: inherit;
}

.error-404-card > span:not(.error-404-card__icon):not(.error-404-card__go) {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.error-404-page:not(.error-404-page--public) .error-404-card > span:not(.error-404-card__icon):not(.error-404-card__go) {
  color: var(--muted);
}

.error-404-card__go {
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--card-accent);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.error-404-card:hover .error-404-card__go {
  opacity: 1;
  transform: translateX(3px);
}

.error-404-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 20px;
  background: linear-gradient(135deg, #141414 0%, #0c0c0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.error-404-help__copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

.error-404-help__copy p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.error-404-help__copy a {
  color: #ff8a8f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.error-404-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.error-404-cta {
  padding-top: 0;
}

.error-404-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #121212 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.error-404-cta__label {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8a8f;
}

.error-404-cta__panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.error-404-cta__panel p {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.72);
}

.error-404-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 0.8rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 6px;
  color: var(--muted);
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb li[aria-current="page"] { color: var(--black); font-weight: 500; }

.section-title-sm {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.25rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.7;
}

.part-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.part-detail__visual {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}

.part-detail__visual .seo-figure--product {
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  overflow: hidden;
  padding: 0 0 14px;
}

.part-detail__visual .seo-figure--product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  max-height: none;
  margin: 0;
  padding: 0;
  background: var(--off-white);
}

.part-detail__visual .seo-figure--product:has(img[src*="cj340/"]) img {
  aspect-ratio: 864 / 1200;
}

.part-detail__visual .seo-figure__caption {
  padding: 0 16px;
}

.part-detail__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: none;
  margin: 0;
  padding: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.spec-table th,
.spec-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.part-detail__info p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.part-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.part-detail--product .part-detail__sku {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(229, 30, 37, 0.08);
  border-radius: var(--radius-pill);
}

.part-detail--product .part-detail__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.part-detail__bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
}

.part-detail__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.part-detail__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.catalog--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  overflow: visible;
  padding-bottom: 0;
}

.catalog--part-related .catalog-card__img { aspect-ratio: 1; }

.catalog--part-related .catalog-card__img:has(img[src*="cj340/"]) {
  aspect-ratio: 864 / 1200;
}

.catalog--part-related .catalog-card__img img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

.catalog-card__link {
  display: block;
  color: inherit;
  height: 100%;
}

.catalog-card__link:hover .catalog-card__body h3 { color: var(--red); }

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.category-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.vehicle-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.vehicle-link-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.vehicle-link-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.vehicle-link-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vehicle-link-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── REVEAL ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].in { opacity: 1; transform: none; }

/* ─── YOUTUBE ─── */
.video-hub {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}

.video-hub__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.video-hub__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-hub__now-playing {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

.video-hub__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: min(520px, 70vh);
  overflow-y: auto;
  scrollbar-width: thin;
}

.video-thumb {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.video-thumb:hover {
  border-color: var(--black);
}

.video-thumb.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-soft);
  display: block;
}

.video-thumb span {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--charcoal);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .nav__list { gap: 20px; }
  .nav__list a { font-size: 0.875rem; }
}

@media (max-width: 1200px) {
  #catalogue-grid.catalogue-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  #catalogue-grid.catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .process-grid,
  .pain-showcase-grid,
  .pillar-showcase-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brands-showcase--about .pain-showcase-grid,
  .brands-showcase--about .pillar-showcase-grid,
  .brands-showcase--process .process-grid,
  .brands-showcase--contact .contact-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1024px) {
  .video-hub { grid-template-columns: 1fr; }
  .video-hub__list {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .video-thumb {
    flex: 0 0 min(280px, 75vw);
    scroll-snap-align: start;
  }
  .about-split, .quote-split, .faq-split, .brands-split, .cj340-banner,
  .cj340-hero__grid, .cj340-story__grid, .cj340-condition__grid { grid-template-columns: 1fr; }
  .quote-channels { grid-template-columns: 1fr; }
  .cj340-banner__visual { min-height: 260px; }

  .brand-row { gap: 16px; }
  .brand-row__logo { flex-basis: 88px; }
  .vehicle-wall { grid-template-columns: repeat(2, 1fr); }
  .vehicle-tile:nth-child(4n) { border-right: 1px solid var(--line); }
  .vehicle-tile:nth-child(2n) { border-right: none; }
  .vehicle-tile:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .vehicle-tile:nth-last-child(-n+2) { border-bottom: none; }
  .vehicle-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
  .process-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --layout-gutter: 20px;
    --section-space-tight: 56px;
  }

  body {
    font-size: 17px;
    line-height: 1.7;
  }

  .section { padding: var(--section-space-tight) 0; }

  .page-hero {
    padding: calc(var(--header) + 36px) 0 48px;
  }

  .page-hero h1 {
    line-height: 1.18;
  }

  .page-hero__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 14px;
  }

  .tool-panel {
    padding: 24px 20px;
  }

  .resource-card,
  .tool-card {
    padding: 22px 20px;
    gap: 12px;
  }

  .resource-grid {
    gap: 16px;
  }

  .category-card {
    padding: 26px 20px 24px;
  }

  .category-card p {
    line-height: 1.6;
  }

  .catalog-card__body {
    padding: 18px 18px 22px;
  }

  .catalog-card h3 {
    line-height: 1.5;
  }

  .prose {
    font-size: 1.06rem;
    line-height: 1.85;
  }

  .prose h2 {
    margin-top: 1.9em;
    margin-bottom: 0.85em;
  }

  .pain-showcase-card,
  .pillar-showcase-card {
    padding: 26px 22px;
  }

  .pain-showcase-card > span:not(.ico),
  .pillar-showcase-card > span:not(.pillar__icon) {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .site-footer {
    padding: 52px 0 36px;
  }

  .footer-main {
    gap: 36px;
    padding-bottom: 36px;
    margin-bottom: 22px;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-col li {
    margin-bottom: 12px;
  }

  .footer-col a {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-block: 2px;
  }

  .footer-channels {
    gap: 12px;
    margin-top: 22px;
  }

  .footer-channel {
    min-height: 44px;
    padding: 12px 16px;
  }

  .footer-base {
    gap: 10px 16px;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .section-head {
    margin-bottom: 32px;
    gap: 16px;
  }

  .brands-showcase__head {
    margin-bottom: 28px;
  }

  .catalogue-showcase + .catalogue-showcase,
  .catalogue-showcase + .brands-showcase,
  .brands-showcase + .catalogue-showcase,
  .brands-showcase + .brands-showcase {
    margin-top: var(--section-space-tight);
  }

  .btn {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-logo {
    padding: var(--header-logo-pad-y) var(--header-logo-pad-x);
  }

  .header-cluster {
    gap: 0;
    padding: var(--header-pill-pad-y);
    width: var(--header-pill);
    justify-content: center;
    overflow: visible;
    /* backdrop-filter creates a containing block that traps position:fixed children */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 8, 8, 0.95);
  }

  .site-header.on-light .header-cluster {
    background: rgba(255, 255, 255, 0.98);
  }

  .header-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    align-self: auto;
    z-index: 101;
    background: var(--charcoal);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    margin-left: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.on-light .header-nav { background: var(--white); }
  .header-nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: auto;
    flex: 1 1 auto;
  }

  .nav__list li {
    border-bottom: none;
    margin-bottom: 6px;
    height: auto;
  }

  .nav__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 0;
    padding: 14px 20px;
    width: 100%;
    font-size: 1.0625rem;
    border-radius: var(--radius-pill);
    transition: background 0.2s, color 0.2s;
  }

  .nav__list a:hover,
  .nav__list a.is-active {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-header.on-light .header-nav .nav__list a:hover,
  .site-header.on-light .header-nav .nav__list a.is-active {
    background: var(--off-white);
  }

  .nav__list a::after { display: none; }

  .nav__cta {
    display: flex !important;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    padding: 16px 28px !important;
  }

  .header-cluster { display: none; }
  .header-cta { display: none; }

  .vehicle-wall { grid-template-columns: 1fr; }
  .brand-row {
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 18px 0;
  }

  .brand-row__logo {
    flex: 1 1 100%;
    min-height: 48px;
  }

  .brand-row__body { flex: 1 1 auto; }
  #catalogue-grid.catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .vehicle-tile { border-right: none !important; }
  .vehicle-tile:not(:last-child) { border-bottom: 1px solid var(--line); }
  .vehicle-tile:last-child { border-bottom: none; }
  .section-head--spaced { margin-top: 64px; }
  .section-head--spaced-sm { margin-top: 48px; }
  .category-card {
    flex-basis: 180px;
    width: 180px;
    max-width: calc(50% - 7px);
    min-height: 200px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cj340-banner__copy { padding-block: 32px; }
  .cj340-banner__actions { flex-direction: column; }
  .cj340-banner__actions .btn { width: 100%; justify-content: center; }
  .cj340-hero__actions { flex-direction: column; align-items: flex-start; }
  .cj340-hero__actions .btn { width: 100%; justify-content: center; }
  .cj340-parts__actions { flex-direction: column; }
  .cj340-parts__actions .btn { width: 100%; justify-content: center; }
  .cj340-cta-band__actions { width: 100%; flex-direction: column; }
  .cj340-cta-band__actions .btn { width: 100%; justify-content: center; }
  .hero__copy {
    text-align: center;
  }

  .hero__title {
    align-items: center;
  }

  .hero__title-line--accent .hero__title-rotator {
    width: 100%;
    justify-items: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

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

  .error-404-help {
    flex-direction: column;
    align-items: flex-start;
  }

  .error-404-help__actions {
    width: 100%;
  }

  .error-404-help__actions .btn,
  .error-404-stage__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .error-404-stage__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-404-cta__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .error-404-cta__actions {
    width: 100%;
  }

  .error-404-cta__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .error-404-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-404-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .hero-lookup {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-lookup .btn { width: 100%; justify-content: center; }

  .trust-bar {
    gap: 8px 16px;
    justify-content: center;
    margin-bottom: 20px;
  }

  .trust-bar li { font-size: 0.78rem; }

  .vehicle-oem-grid,
  .platform-grid,
  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-content: stretch;
  }

  .brands-showcase--suppliers .vehicle-oem-grid,
  .brands-showcase--about .pain-showcase-grid,
  .brands-showcase--about .pillar-showcase-grid,
  .brands-showcase--process .process-grid,
  .brands-showcase--contact .contact-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-oem-card,
  .platform-card,
  .category-card {
    width: 100%;
    max-width: none;
    flex: none;
    min-height: 112px;
  }

  .category-card { min-height: 180px; }
  .contact-channel-card { width: 100%; }
  .video-catalog .video-card { flex: 0 0 min(240px, 88vw); }
  .resource-showcase-grid .tool-card,
  .resource-showcase-grid .resource-card { max-width: 100%; width: 100%; }
  .pain-showcase-card,
  .pillar-showcase-card,
  .process-card { width: 100%; }
  .showcase-points {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 14px;
    max-width: 100%;
    overflow-x: visible;
    margin-bottom: 20px;
  }

  .showcase-points li {
    font-size: 0.78rem;
    flex: 0 1 auto;
  }

  .showcase-points strong { white-space: normal; }
  .perk-row { flex-direction: column; gap: 16px; }
  .cta-perks { flex-direction: column; align-items: flex-start; gap: 12px; }
  .quote-slide blockquote { font-size: 1.25rem; }
  .part-detail { grid-template-columns: 1fr; gap: 32px; }
  .quote-channel > span:last-child > span { white-space: normal; }

  .hero__title-line,
  .hero__title-phrase {
    white-space: normal;
  }

  .hero__title-line {
    font-size: clamp(1.85rem, 7vw, 3rem);
  }

  .section-head--center {
    align-items: flex-start;
    text-align: left;
  }

  .section-head h2,
  .brands-showcase__head h2,
  .cj340-banner__copy h2,
  .page-hero h1 {
    white-space: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: clamp(1.45rem, 5vw, 2.25rem);
    line-height: 1.12;
  }

  .brands-showcase,
  .catalogue-showcase { text-align: left; }

  .brands-showcase,
  .catalogue-showcase,
  .brands-showcase--platforms,
  .brands-showcase--process,
  .brands-showcase--resources,
  .brands-showcase--testimonials,
  .brands-showcase--cj340,
  .brands-showcase--videos,
  .brands-showcase--about,
  .brands-showcase--faq,
  .brands-showcase--suppliers,
  .catalogue-showcase--categories {
    max-width: none;
    margin-inline: 0;
    width: 100%;
  }

  .brands-showcase--contact {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .brands-showcase__head p,
  .section-head p,
  .page-hero__lead,
  .cj340-banner__copy p,
  .quote-copy > p {
    margin-inline: 0;
    max-width: none;
  }

  .brands-showcase--contact .brands-showcase__head p {
    margin-inline: auto;
  }

  .platform-grid,
  .process-grid,
  .resource-showcase-grid,
  .pain-showcase-grid,
  .pillar-showcase-grid,
  .category-grid,
  .vehicle-oem-grid,
  .contact-channel-grid,
  .brands-showcase__actions,
  .brands-showcase__actions--pair,
  .section-cta,
  .page-hero__actions,
  .part-detail__actions {
    justify-content: flex-start;
  }

  .brands-showcase--contact .showcase-points,
  .brands-showcase--contact .contact-channel-grid,
  .brands-showcase--contact .export-rfq-panel__actions,
  .brands-showcase--contact .quote-location {
    justify-content: center;
  }

  .brands-showcase--contact .brands-showcase__foot,
  .brands-showcase--contact .brands-showcase__foot--center,
  .brands-showcase--contact .quote-location {
    text-align: center;
  }

  .brands-showcase__actions,
  .brands-showcase__actions--pair {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .brands-showcase__actions .btn,
  .brands-showcase__actions--pair .btn {
    width: 100%;
    justify-content: center;
  }

  .brands-showcase__foot,
  .brands-showcase__foot--center,
  .brands-showcase__foot--center.quote-location {
    text-align: left;
  }

  .brands-showcase__head p,
  .section-head p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .site-footer .wrap {
    padding-top: 8px;
  }

  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .catalog-wrap {
    margin-inline: calc(-1 * var(--layout-gutter));
    padding-inline: var(--layout-gutter);
  }

  .catalog-wrap::before,
  .catalog-wrap::after {
    display: none;
  }

  .brands-showcase__foot--center {
    justify-content: flex-start;
  }

  .about-showcase-visual,
  .cj340-showcase-visual,
  .cj340-banner,
  .quote-showcase-panel {
    max-width: none;
    margin-inline: 0;
    width: 100%;
  }

  .quote-slide { padding: 0; }

  .quote-slide__inner {
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }

  .quote-slide__mark { margin-inline: 0; }

  .quote-controls {
    align-items: flex-start;
  }

  .quote-dots,
  .quote-nav {
    justify-content: flex-start;
  }

  .video-hub.video-hub--showcase .video-hub__now-playing {
    text-align: left;
  }

  .cta-band {
    text-align: left;
  }

  .faq {
    max-width: none;
    margin-inline: 0;
  }

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

  .catalogue-cta-band p {
    max-width: none;
  }

  .catalogue-search__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalogue-search__head p {
    max-width: none;
  }

  .kicker--center { justify-content: flex-start; }
}

@media (max-width: 480px) {
  :root {
    --layout-gutter: 18px;
    --section-space-tight: 48px;
  }

  .page-hero {
    padding: calc(var(--header) + 28px) 0 40px;
  }

  .tool-panel {
    padding: 22px 18px;
  }

  .resource-card,
  .tool-card {
    padding: 20px 18px;
  }

  .site-footer {
    padding: 44px 0 32px;
  }

  .footer-brand > p {
    max-width: none;
    line-height: 1.7;
  }

  .footer-perks {
    gap: 12px 16px;
    margin-top: 20px;
  }

  .footer-col + .footer-col {
    margin-top: 8px;
  }

  #catalogue-grid.catalogue-grid { grid-template-columns: 1fr; }

  .platform-grid,
  .category-grid,
  .vehicle-oem-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brands-showcase--suppliers .vehicle-oem-grid,
  .brands-showcase--about .pain-showcase-grid,
  .brands-showcase--about .pillar-showcase-grid,
  .brands-showcase--process .process-grid,
  .brands-showcase--contact .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats { grid-template-columns: 1fr; border-radius: 20px 20px 0 0; }
  .hero__stat {
    flex-direction: row;
    text-align: left;
    gap: 14px;
    padding: 22px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero__stat:last-child { border-bottom: none; }
  .hero__stat-body { align-items: flex-start; }
  .hero__stat-value { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .catalog-card { flex: 0 0 min(280px, 88vw); }
  .video-thumb { flex: 0 0 min(260px, 85vw); grid-template-columns: 100px 1fr; }
  .section-head h2 { font-size: clamp(1.5rem, 5.2vw, 2.4rem); }
  .header-logo img {
    height: calc(var(--header-pill-inner) - 4px);
    max-height: calc(var(--header-pill-inner) - 4px);
  }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-base {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .error-404-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .nav__cta { display: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header-cta { padding: 10px 16px; font-size: 0.75rem; }
}

/* ─── HERO PART LOOKUP ─── */
.hero-lookup {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 28px auto 0;
  width: 100%;
}

.hero-lookup input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.9rem;
}

.hero-lookup input::placeholder { color: rgba(255, 255, 255, 0.45); }
.hero-lookup input:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-color: transparent;
}

.hero-lookup .btn { flex-shrink: 0; padding: 14px 24px; }

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

/* ─── RESOURCES & TOOLS ─── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.resource-grid--home { margin-top: 8px; }
.resource-grid--tools { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.resource-card,
.tool-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.section--gray .resource-card,
.section--gray .tool-card { background: var(--white); }

.resource-card:hover,
.tool-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.resource-card__tag {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(229, 30, 37, 0.08);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.resource-card h3,
.tool-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.resource-card p,
.tool-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.lookup-form {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.lookup-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  font-size: 1rem;
}

.lookup-form input:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-color: transparent;
}

.lookup-hint,
.lookup-count {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.lookup-results--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.lookup-result {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
}

.lookup-result__link {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  color: inherit;
}

.lookup-result__img {
  background: var(--white);
  border-radius: var(--radius-soft);
  padding: 6px;
  border: 1px solid var(--line-dark);
}

.lookup-result__img img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 1;
}

.lookup-result__sku {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 4px;
}

.lookup-result__body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

.lookup-result__body p {
  font-size: 0.8rem;
  color: var(--muted);
}

.lookup-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lookup-empty {
  text-align: center;
  padding: 32px 16px;
}

.lookup-empty p { color: var(--muted); margin-bottom: 12px; }

.lookup-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.finder-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.finder-filters select {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  background: var(--white);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* ─── PROSE (ARTICLES) ─── */
.prose {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.2em 0 0.75em;
  letter-spacing: -0.01em;
}

.prose h2:first-child { margin-top: 0; }

.prose p { margin-bottom: 1.1em; color: var(--muted); }

.prose ul {
  margin: 0 0 1.25em 1.25em;
  color: var(--muted);
}

.prose li { margin-bottom: 0.5em; }

.prose a {
  color: var(--red);
  font-weight: 500;
}

.prose a:hover { text-decoration: underline; }

.prose code {
  font-size: 0.88em;
  padding: 2px 10px;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0 2em;
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--off-white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table tbody tr:nth-child(even) { background: rgba(0, 0, 0, 0.02); }

.code-block {
  display: block;
  padding: 20px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  overflow-x: auto;
  margin: 1.5em 0;
}

.glossary-list dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.5em;
  color: var(--black);
}

.glossary-list dt:first-child { margin-top: 0; }

.glossary-list dd {
  margin: 0.4em 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── VIDEO INDEX PAGE ─── */
.video-index {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-soft);
}

.video-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.video-index .video-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-index .video-card__thumb,
.video-index .video-card__thumb img {
  border-radius: 0;
}

.video-index .video-card__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
}

.video-card__oem {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 6px;
}

.video-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.video-card__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.video-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.video-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 768px) {
  .hero-lookup { flex-direction: column; }
  .hero-lookup .btn { width: 100%; justify-content: center; }
  .lookup-form { flex-direction: column; }
  .finder-filters { grid-template-columns: 1fr; }
  .lookup-result__link { grid-template-columns: 64px 1fr; }
  .video-card { grid-template-columns: 1fr; }
  .data-table { font-size: 0.8rem; }
  .data-table th, .data-table td { padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__video,
  .hero__motto-bar { display: none; }
  .hero__overlay {
    background:
      linear-gradient(180deg, #121212 0%, #080808 100%),
      radial-gradient(ellipse 70% 50% at 50% 40%, rgba(229, 30, 37, 0.1), transparent 70%);
  }
  .hero__title-line,
  .hero__lead,
  .hero__actions { animation: none !important; opacity: 1; transform: none; }
  .hero__title-phrase { transition: none !important; opacity: 1; transform: none; }
  .hero__title-phrase:not(.is-active) { display: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ─── Language switcher (ES / PT / EN — South America) ─── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.site-header.on-light .lang-switch {
  border-color: var(--line-dark);
  background: #fff;
}

.lang-switch__label {
  font-size: 0.85rem;
  line-height: 1;
  padding: 0 2px 0 4px;
  opacity: 0.85;
}

.lang-switch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}

.site-header.on-light .lang-switch__btn {
  color: #555;
}

.lang-switch__btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.on-light .lang-switch__btn:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.05);
}

.lang-switch__btn.is-active {
  color: #fff;
  background: var(--red);
}

.lang-switch__gt,
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Hide Google Translate top banner */
.goog-te-banner-frame,
.goog-te-balloon-frame,
body > .skiptranslate,
.goog-te-gadget {
  display: none !important;
}

body {
  top: 0 !important;
}

.hub-hero__sa {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ─── Public hub (Home / Library / Apps only) ─── */
.hub-body {
  background: var(--black);
  min-height: 100vh;
}

.hub-main {
  padding-top: calc(var(--header) + 24px);
}

.hub-hero {
  padding: clamp(48px, 10vw, 100px) 0 clamp(64px, 12vw, 120px);
}

.hub-hero__inner {
  max-width: 960px;
}

.hub-hero__kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.hub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hub-hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
  background: var(--slate);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.hub-card:hover {
  border-color: rgba(229, 30, 37, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hub-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.hub-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.hub-card p {
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.hub-card__cta {
  font-weight: 600;
  color: var(--white);
  margin-top: 8px;
}

.hub-card:hover .hub-card__cta {
  color: var(--red);
}