:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: #111;
  --panel-strong: #171717;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --subtle: #777;
  --red: #ff0000;
  --red-dark: #a60000;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --header-height: 76px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-height);
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1220px, calc(100% - 32px));
  min-height: inherit;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.brand-text-link {
  min-height: 48px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand-text-link:hover,
.brand-text-link:focus-visible {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.34));
  outline: none;
}

.brand-image-link {
  width: 152px;
  height: 56px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.22));
}

.brand-logo-small {
  max-height: 56px;
}

.brand-word {
  display: inline-block;
}

.brand-text-link .brand-word {
  font-size: 1.28rem;
  font-weight: 1000;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 16px rgba(255, 255, 255, 0.08);
}

.brand-x {
  color: var(--red);
}

.brand-text-link .brand-x {
  color: var(--red);
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.72);
}

.brand-mark {
  width: 36px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 36px;
  height: 5px;
  background: var(--red);
  transform: skewX(-28deg);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.7);
}

.brand-mark::before {
  top: 0;
}

.brand-mark::after {
  bottom: 0;
  width: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #fff;
}

.nav-menu .nav-cta {
  color: #fff;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 0, 0, 0.7);
  border-radius: 4px;
  background: rgba(255, 0, 0, 0.14);
}

.nav-menu .nav-cta:hover {
  background: var(--red);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.045);
}

.language-switcher button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: #fff;
  outline: none;
}

.language-switcher button.is-active,
.language-switcher button[aria-pressed="true"] {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.36);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + 52px) 0 88px;
}

.hero-media,
.hero-media img,
.hero-overlay,
.scan-lines {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 80% 54%, rgba(255, 0, 0, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.74) 38%, rgba(0, 0, 0, 0.35) 68%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.94));
}

.scan-lines {
  z-index: -2;
  opacity: 0.11;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 100% 6px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-logo-title {
  position: relative;
  margin-bottom: 18px;
  width: min(690px, 92vw);
  line-height: 0;
  transform: translateZ(0);
}

.hero-logo-hidden {
  display: none;
}

.hero-logo-title img {
  width: 100%;
  height: auto;
  image-rendering: auto;
  filter:
    contrast(1.08)
    saturate(1.12)
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 42px rgba(255, 0, 0, 0.48))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.75));
}

.hero-logo-title::after {
  content: "";
  position: absolute;
  inset: 18% 9% 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.22), transparent 68%);
  filter: blur(20px);
  opacity: 0.8;
}

@keyframes heroLogoPopOut {
  0% {
    opacity: 0;
    transform: translate3d(0, 46px, 0) scale(0.62);
    filter: blur(9px);
  }

  42% {
    opacity: 1;
    transform: translate3d(0, -10px, 0) scale(1.12);
    filter: blur(0);
  }

  68% {
    transform: translate3d(0, 4px, 0) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroLogoRedFlash {
  0% {
    transform: scale(0.98);
    filter:
      contrast(1.02)
      saturate(1)
      drop-shadow(0 0 0 rgba(255, 255, 255, 0))
      drop-shadow(0 0 0 rgba(255, 0, 0, 0));
  }

  42% {
    transform: scale(1.025);
    filter:
      contrast(1.18)
      saturate(1.26)
      drop-shadow(0 0 28px rgba(255, 255, 255, 0.24))
      drop-shadow(0 0 70px rgba(255, 0, 0, 0.78))
      drop-shadow(0 20px 44px rgba(0, 0, 0, 0.8));
  }

  100% {
    transform: scale(1);
    filter:
      contrast(1.08)
      saturate(1.12)
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.18))
      drop-shadow(0 0 42px rgba(255, 0, 0, 0.48))
      drop-shadow(0 18px 36px rgba(0, 0, 0, 0.75));
  }
}

@keyframes heroLogoAuraBurst {
  0% {
    opacity: 0;
    transform: scale(0.45);
  }

  44% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

h1 {
  max-width: 760px;
  font-size: 5.8rem;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(255, 0, 0, 0.28);
}

.brand-title .brand-x {
  text-shadow: 0 0 34px rgba(255, 0, 0, 0.62);
}

.hero-subtitle {
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 0 auto;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.hero-subtitle span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 7, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 12px 28px rgba(0, 0, 0, 0.18);
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-subtitle span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 0, 0, 0.22), rgba(255, 255, 255, 0.035)),
    rgba(9, 9, 9, 0.9);
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.16);
}

.hero-subtitle-hot {
  border-color: rgba(255, 0, 0, 0.52) !important;
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.28), rgba(255, 255, 255, 0.04)),
    rgba(12, 2, 2, 0.88) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 26px rgba(255, 0, 0, 0.14) !important;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn svg,
.contact-methods svg,
.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(255, 0, 0, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: #d90000;
  box-shadow: 0 18px 44px rgba(255, 0, 0, 0.38);
}

.btn-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.74);
  background: rgba(255, 0, 0, 0.12);
}

.hero-dashboard {
  position: relative;
  justify-self: center;
  margin: 44px auto 0;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-dashboard div {
  padding: 18px 20px;
  min-width: 0;
}

.hero-dashboard div + div {
  border-left: 1px solid var(--line);
}

.hero-dashboard span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-dashboard small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.section {
  padding: 104px 0;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.split-grid,
.results-layout,
.media-grid,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: 2.7rem;
  line-height: 1.08;
  font-weight: 900;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 710px;
  margin-bottom: 40px;
}

.services-section,
.packages-section,
.faq-section {
  background: var(--bg-soft);
}

.service-grid,
.process-grid,
.package-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.process-step,
.package-card,
.testimonial,
.faq-item,
.contact-form,
.result-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.service-card {
  min-height: 292px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.55);
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.12), rgba(255, 255, 255, 0.035));
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 6px;
  background: rgba(255, 0, 0, 0.1);
  color: var(--red);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.process-step h3,
.package-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.service-card p,
.process-step p,
.package-card p,
.testimonial p,
.faq-content p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.service-card a::after {
  content: " ->";
  color: var(--red);
}

.results-section {
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 0, 0, 0.12), transparent 28%),
    #050505;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

.result-board {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.result-ad-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255, 0, 0, 0.12) 45%, transparent 56%),
    radial-gradient(circle at 82% 14%, rgba(255, 0, 0, 0.18), transparent 28%);
  opacity: 0.55;
  pointer-events: none;
}

.result-board-head,
.result-row,
.fine-print,
.result-ad-dots {
  position: relative;
  z-index: 1;
}

.result-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.result-board-head span,
.result-board-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.result-board-head span {
  color: var(--red);
  letter-spacing: 0.04em;
}

.result-board-head strong {
  padding: 7px 12px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

.result-row {
  display: grid;
  grid-template-columns: 180px 1fr 82px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.result-row + .result-row {
  border-top: 1px solid var(--line);
}

.result-label strong,
.result-label span {
  display: block;
}

.result-label span {
  color: var(--subtle);
  font-size: 0.8rem;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff6a6a);
  border-radius: inherit;
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.7);
  transition: width 900ms ease;
}

.result-board.is-visible .bar span {
  width: var(--bar);
}

.result-row b {
  color: #fff;
  text-align: right;
}

.result-ad-dots {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}

.result-ad-dots button {
  width: 19px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: width 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.result-ad-dots button:hover,
.result-ad-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.34);
  outline: none;
}

.result-ad-dots button.is-active {
  width: 36px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.62);
}

.result-ad-board.is-rotating .result-board-head,
.result-ad-board.is-rotating .result-row {
  animation: resultAdPop 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes resultAdPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

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

.fine-print {
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.78rem;
}

.power-section {
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 0, 0, 0.12), transparent 26%),
    #070707;
}

.power-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.power-layout[hidden] {
  display: none;
}

.power-controls,
.power-result,
.power-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.power-controls {
  padding: 26px;
}

.power-controls label:last-of-type {
  margin-bottom: 0;
}

.custom-vehicle-fields {
  margin: 4px 0 18px;
  padding: 18px;
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 6px;
  background: rgba(255, 0, 0, 0.06);
}

.custom-vehicle-fields[hidden] {
  display: none;
}

.power-result {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.power-result h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.14;
}

.power-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.power-stat-grid div {
  min-width: 0;
  padding: 18px;
  background: rgba(0, 0, 0, 0.34);
}

.power-stat-grid span {
  display: block;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.15;
}

.power-stat-grid small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.power-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.power-specs span {
  border: 1px solid rgba(255, 0, 0, 0.36);
  border-radius: 3px;
  padding: 8px 10px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  background: rgba(255, 0, 0, 0.09);
}

.power-result p[data-power-note] {
  color: var(--muted);
}

.power-result .btn {
  width: fit-content;
  margin-top: auto;
}

.vehicle-browser {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 0, 0, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.vehicle-browser-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.vehicle-browser-head h3 {
  margin: 0;
  font-size: 1.45rem;
}

.vehicle-browser-head p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.vehicle-table-panel {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 0, 0, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.vehicle-table-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1.4fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.vehicle-table-toolbar label {
  margin: 0;
}

.vehicle-table-count {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 0, 0, 0.34);
  border-radius: 5px;
  padding: 0 16px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
  background: rgba(255, 0, 0, 0.09);
}

.vehicle-table-wrap {
  max-height: 620px;
  overflow: auto;
}

.vehicle-data-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: #fff;
  font-size: 0.84rem;
}

.vehicle-data-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #101010;
  box-shadow: 0 1px 0 var(--line);
}

.vehicle-data-table th,
.vehicle-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: middle;
}

.vehicle-data-table th {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-table-sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.vehicle-table-sort::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.36;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 160ms ease, opacity 160ms ease;
}

.vehicle-table-sort.is-active {
  color: #fff;
}

.vehicle-table-sort.is-active::after {
  opacity: 1;
}

.vehicle-table-sort.is-active[data-sort-dir="desc"]::after {
  transform: rotate(225deg) translateY(-1px);
}

.vehicle-data-table td {
  color: rgba(255, 255, 255, 0.82);
}

.vehicle-data-table td strong {
  color: #fff;
}

.vehicle-data-table td small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
}

.vehicle-table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.vehicle-table-pagination[hidden] {
  display: none;
}

.vehicle-table-pagination button {
  min-height: 38px;
  border: 1px solid rgba(255, 0, 0, 0.45);
  border-radius: 4px;
  padding: 0 16px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.14), rgba(255, 255, 255, 0.04));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.vehicle-table-pagination button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.vehicle-table-result {
  min-width: 155px;
}

.vehicle-table-result strong,
.vehicle-table-result span,
.vehicle-table-result small {
  display: block;
}

.vehicle-table-result strong {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-table-result span {
  margin-top: 3px;
  color: #fff;
  font-weight: 950;
}

.vehicle-table-result small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.vehicle-data-table tbody tr {
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.vehicle-data-table tbody tr:hover,
.vehicle-data-table tbody tr:focus-visible {
  background: rgba(255, 0, 0, 0.1);
  box-shadow: inset 3px 0 0 var(--red);
  outline: none;
}

.vehicle-table-open {
  min-height: 34px;
  border: 1px solid rgba(255, 0, 0, 0.46);
  border-radius: 4px;
  padding: 0 12px;
  background: rgba(255, 0, 0, 0.1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  cursor: pointer;
}

.vehicle-table-stage-picker {
  min-width: 132px;
  display: grid;
  grid-template-columns: repeat(3, 40px);
  gap: 6px;
}

.vehicle-table-stage-picker button {
  min-height: 34px;
  border: 1px solid rgba(255, 0, 0, 0.42);
  border-radius: 4px;
  background: rgba(255, 0, 0, 0.08);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 950;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.vehicle-table-stage-picker button:hover,
.vehicle-table-stage-picker button:focus-visible {
  border-color: var(--red);
  background: rgba(255, 0, 0, 0.18);
  outline: none;
}

.vehicle-table-stage-picker button.is-active {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.28);
}

.vehicle-table-stage-picker button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.vehicle-empty-row td {
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
  cursor: default;
}

.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 84% 0%, rgba(255, 0, 0, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 0, 0, 0.13), transparent 26%),
    #030303;
  border-bottom: 1px solid var(--line);
}

.brand-card {
  position: relative;
  min-height: 138px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 16px 16px 38px;
  background:
    radial-gradient(circle at 50% 25%, color-mix(in srgb, var(--tile-accent) 24%, transparent), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(180deg, #161616, #070707 72%);
  color: #fff;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 0, 0, 0.16),
    0 18px 40px rgba(0, 0, 0, 0.32);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.16) 42%, transparent 62%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.brand-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--tile-accent) 22%, transparent), transparent 46%),
    rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.brand-card:hover,
.brand-card:focus-visible,
.brand-card.is-active {
  z-index: 2;
  border-color: color-mix(in srgb, var(--tile-accent) 72%, rgba(255, 255, 255, 0.12));
  background:
    radial-gradient(circle at 50% 25%, color-mix(in srgb, var(--tile-accent) 45%, transparent), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #202020, #080808 74%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 color-mix(in srgb, var(--tile-accent) 62%, transparent),
    0 0 0 1px rgba(255, 0, 0, 0.4),
    0 22px 54px color-mix(in srgb, var(--tile-accent) 28%, rgba(0, 0, 0, 0.35));
  outline: none;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-4px) scale(1.015);
}

.brand-card:hover::before,
.brand-card:focus-visible::before,
.brand-card.is-active::before {
  opacity: 1;
  transform: translateX(60%);
}

.brand-card strong {
  position: absolute;
  left: 11px;
  bottom: 12px;
  z-index: 2;
  max-width: calc(100% - 64px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  line-height: 1;
  text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.brand-card small {
  position: absolute;
  right: 11px;
  bottom: 11px;
  z-index: 2;
  color: color-mix(in srgb, var(--tile-accent) 42%, rgba(255, 255, 255, 0.72));
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.brand-card .brand-logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  z-index: 1;
  width: 104px;
  height: 88px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translateZ(0);
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-card .brand-logo-mark::before {
  content: none;
}

.brand-card .brand-logo-mark::after {
  content: none;
}

.brand-card .brand-logo-mark.brand-logo-wide {
  width: min(136px, 90%);
  height: 82px;
  border-radius: 0;
}

.brand-card .brand-logo-mark.brand-logo-premium svg {
  width: 88%;
  height: 88%;
}

.brand-card .brand-logo-mark img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter:
    brightness(1.12)
    contrast(1.08)
    drop-shadow(0 7px 9px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 12px color-mix(in srgb, var(--tile-accent) 54%, transparent));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-card .brand-logo-mark.brand-logo-wide img {
  width: 96%;
  height: 88%;
}

.brand-card .brand-logo-mark svg {
  position: relative;
  z-index: 1;
  width: 76%;
  height: 76%;
  filter:
    drop-shadow(0 7px 9px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 13px color-mix(in srgb, var(--tile-accent) 56%, transparent));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-card:hover .brand-logo-mark,
.brand-card:focus-visible .brand-logo-mark,
.brand-card.is-active .brand-logo-mark {
  transform: translateY(-5px) scale(1.06);
  filter: drop-shadow(0 0 22px color-mix(in srgb, var(--tile-accent) 62%, transparent));
}

.brand-card:hover .brand-logo-mark img,
.brand-card:focus-visible .brand-logo-mark img,
.brand-card.is-active .brand-logo-mark img,
.brand-card:hover .brand-logo-mark svg,
.brand-card:focus-visible .brand-logo-mark svg,
.brand-card.is-active .brand-logo-mark svg {
  transform: scale(1.16);
}

.brand-card .brand-logo-mark.brand-logo-generic {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.34), transparent 38%),
    linear-gradient(145deg, #101010, #2a2a2a);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-card .brand-logo-mark.brand-logo-generic span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.82rem;
  text-shadow: none;
}

.brand-showcase {
  --brand-accent: #ff0000;
  --brand-bg: url("assets/road-performance.webp");
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 330px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 50%, color-mix(in srgb, var(--brand-accent) 24%, transparent), transparent 32%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(18, 18, 18, 0.9));
  overflow: hidden;
}

.brand-showcase.is-switching {
  animation: brandShowcasePop 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-showcase-visual {
  position: relative;
  min-height: 330px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    var(--brand-bg) center / cover no-repeat;
}

.brand-showcase-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.86) contrast(1.1);
  transform: scale(1.03);
}

.brand-showcase-dyno {
  background: #f4f4f4;
}

.brand-showcase-dyno img {
  object-fit: contain;
  opacity: 1;
  filter: contrast(1.03) saturate(1.02);
  transform: none;
  background: #f7f7f7;
}

.brand-showcase-visual::before,
.brand-showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-showcase-visual::before {
  z-index: 1;
  background:
    radial-gradient(circle at 28% 50%, color-mix(in srgb, var(--brand-accent) 32%, transparent), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.88));
  mix-blend-mode: screen;
  opacity: 0.72;
}

.brand-showcase-dyno::before {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(90deg, transparent 58%, color-mix(in srgb, var(--brand-accent) 10%, transparent));
  mix-blend-mode: multiply;
  opacity: 0.28;
}

.brand-showcase-visual::after {
  z-index: 2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.9));
  opacity: 0.14;
}

.brand-showcase-dyno::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.08));
  opacity: 1;
}

.brand-showcase-logo {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: clamp(142px, 17vw, 220px);
  height: clamp(142px, 17vw, 220px);
  border: 1px solid color-mix(in srgb, var(--brand-accent) 60%, rgba(255, 255, 255, 0.28));
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.72), color-mix(in srgb, var(--brand-accent) 18%, rgba(0, 0, 0, 0.64)));
  box-shadow:
    0 0 54px color-mix(in srgb, var(--brand-accent) 50%, transparent),
    inset 0 0 26px rgba(255, 255, 255, 0.08);
}

.brand-showcase-logo .brand-logo-mark {
  width: 78%;
  height: 78%;
  background: rgba(255, 255, 255, 0.06);
}

.brand-showcase-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 100% 10%, color-mix(in srgb, var(--brand-accent) 18%, transparent), transparent 30%),
    linear-gradient(135deg, rgba(13, 13, 13, 0.94), rgba(0, 0, 0, 0.9));
}

.brand-showcase-copy h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.brand-showcase-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.brand-showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.brand-showcase-stats div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.brand-showcase-stats strong {
  display: block;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.1;
}

.brand-showcase-stats small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.brand-showcase-tags span {
  border: 1px solid color-mix(in srgb, var(--brand-accent) 58%, rgba(255, 255, 255, 0.12));
  border-radius: 3px;
  padding: 8px 10px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  background: color-mix(in srgb, var(--brand-accent) 12%, rgba(255, 255, 255, 0.045));
}

@keyframes brandShowcasePop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.brand-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 0, 0, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 0, 0, 0.22), rgba(255, 255, 255, 0.03));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 28px rgba(255, 0, 0, 0.16);
}

.brand-logo-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 0, 0, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.18);
  overflow: hidden;
}

.brand-logo-remote {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 0, 0, 0.2), rgba(255, 255, 255, 0.055));
}

.brand-logo-mark svg {
  width: 86%;
  height: 86%;
  display: block;
}

.brand-logo-mark img {
  width: 76%;
  height: 76%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.18));
}

.brand-logo-large img {
  width: 72%;
  height: 72%;
}

.logo-fallback-label {
  display: none;
}

.brand-logo-mark.is-logo-fallback .logo-fallback-label {
  display: block;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.brand-logo-mark.brand-logo-generic span {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.brand-logo-large {
  width: 136px;
  height: 136px;
}

.brand-logo-large.brand-logo-generic span {
  font-size: 1rem;
}

.brand-badge-large {
  width: 116px;
  height: 116px;
  font-size: 1.45rem;
}

.vehicle-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.vehicle-list-heading h4 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.vehicle-list-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.model-search-launcher {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 0, 0, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.model-search-button {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 0, 0, 0.42);
  border-radius: 7px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.14), transparent 34%),
    linear-gradient(180deg, #161616, #080808);
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.model-search-button:hover,
.model-search-button:focus-visible,
.model-search-button.is-open {
  transform: translateY(-2px);
  border-color: var(--red);
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.22), transparent 38%),
    linear-gradient(180deg, #1b1b1b, #080808);
  box-shadow: 0 24px 56px rgba(255, 0, 0, 0.18);
  outline: none;
}

.model-search-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 0, 0, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 0, 0, 0.38), rgba(255, 0, 0, 0.08));
  box-shadow: 0 0 26px rgba(255, 0, 0, 0.22);
}

.model-search-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.model-search-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.model-search-copy strong {
  color: #fff;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.model-search-copy small {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.model-search-button em {
  justify-self: end;
  border: 1px solid rgba(255, 0, 0, 0.46);
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
  background: rgba(255, 0, 0, 0.12);
}

.model-search-panel {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 0, 0, 0.16), transparent 30%),
    #090909;
}

.model-search-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 22px 22px 0;
}

.model-search-field {
  display: grid;
  gap: 9px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.model-search-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  padding: 0 16px;
  background: #111;
  color: #fff;
  font: inherit;
  text-transform: none;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.model-search-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
}

.model-search-close {
  min-height: 52px;
  border: 1px solid rgba(255, 0, 0, 0.55);
  border-radius: 5px;
  padding: 0 18px;
  background: rgba(255, 0, 0, 0.08);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.model-search-close:hover,
.model-search-close:focus-visible {
  border-color: var(--red);
  background: rgba(255, 0, 0, 0.2);
  outline: none;
}

.vehicle-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
  background: transparent;
}

.vehicle-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  background: #0d0d0d;
  color: #fff;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.vehicle-card:hover,
.vehicle-card:focus-visible {
  z-index: 2;
  transform: translateY(-3px);
  background: #151515;
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.16);
  outline: 1px solid rgba(255, 0, 0, 0.7);
}

.vehicle-card-media {
  position: relative;
  height: 132px;
  overflow: hidden;
  background: #050505;
}

.vehicle-data-panel {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 0, 0, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(145deg, #151515, #050505 68%);
}

.vehicle-data-panel::before {
  content: "";
  position: absolute;
  inset: auto 16px 16px 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.72);
}

.vehicle-card-engine {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  max-width: calc(100% - 86px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.vehicle-card-power {
  position: absolute;
  left: 18px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  gap: 2px;
}

.vehicle-card-power-value {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 0.9;
}

.vehicle-card-power small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-brand-panel {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 44%, rgba(255, 0, 0, 0.22), transparent 40%),
    linear-gradient(135deg, #111, #050505);
}

.vehicle-brand-panel::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.7);
}

.vehicle-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.28));
}

.vehicle-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 420ms ease;
}

.vehicle-photo-panel {
  background: #050505;
}

.vehicle-card-logo {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
}

.vehicle-card-logo .brand-logo-mark {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.26);
}

.vehicle-card-media .brand-badge,
.vehicle-card-media .brand-logo-mark {
  position: relative;
  z-index: 2;
}

.vehicle-card:hover .vehicle-card-media img {
  transform: scale(1.06);
}

.vehicle-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.vehicle-card-body strong {
  font-size: 0.95rem;
  line-height: 1.22;
}

.vehicle-card-body small {
  color: var(--muted);
}

.vehicle-card-body span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.vehicle-stage-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 2px;
}

.vehicle-stage-picker button {
  min-height: 34px;
  border: 1px solid rgba(255, 0, 0, 0.38);
  border-radius: 3px;
  background: rgba(255, 0, 0, 0.06);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.vehicle-stage-picker button:hover,
.vehicle-stage-picker button:focus-visible {
  border-color: var(--red);
  background: rgba(255, 0, 0, 0.18);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.18);
  outline: none;
}

.vehicle-stage-picker button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 0, 0, 0.24);
}

.vehicle-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.vehicle-card-stats em {
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 3px;
  padding: 5px 7px;
  color: #fff;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  background: rgba(255, 0, 0, 0.08);
}

.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 20px;
}

.vehicle-modal[hidden] {
  display: none;
}

.vehicle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.vehicle-modal-card {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #090909;
  box-shadow: var(--shadow);
}

.vehicle-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.vehicle-modal-media {
  display: none;
  min-height: 100%;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 0, 0, 0.25), transparent 38%),
    linear-gradient(145deg, #151515, #050505);
}

.vehicle-modal-media.has-vehicle-image {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    var(--vehicle-image) center / cover no-repeat;
}

.vehicle-modal-brand-panel {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 38px;
  text-align: center;
}

.vehicle-modal-media.has-vehicle-image .vehicle-modal-brand-panel {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 0, 0, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
  backdrop-filter: saturate(1.08);
}

.vehicle-modal-brand-panel strong {
  color: #fff;
  font-size: 1.4rem;
}

.vehicle-modal-brand-panel small {
  color: var(--muted);
  font-weight: 800;
}

.vehicle-modal-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 20px;
  align-items: start;
  overflow: auto;
  padding: 28px;
}

.vehicle-modal-content h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.05;
}

.dyno-sheet {
  position: relative;
  margin: 0;
  align-self: start;
  border: 1px solid rgba(255, 0, 0, 0.26);
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(255, 0, 0, 0.12);
}

.vehicle-modal-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-self: stretch;
}

.vehicle-modal-result-panel,
.vehicle-modal-stage-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 0, 0, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.035);
}

.vehicle-modal-stage-panel {
  order: 1;
}

.vehicle-modal-result-panel {
  order: 2;
}

.modal-stage-result {
  margin-top: 16px;
}

.modal-result-main {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 0, 0, 0.28);
  border-radius: 6px;
  background: rgba(255, 0, 0, 0.08);
}

.modal-result-main span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-result-main strong {
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
}

.modal-result-main small {
  color: var(--muted);
  font-weight: 900;
}

.modal-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.modal-result-grid div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
}

.modal-result-grid b,
.modal-result-grid small {
  display: block;
}

.modal-result-grid b {
  color: #fff;
  font-size: 1.05rem;
}

.modal-result-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-stage-result p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.modal-stage-picker {
  display: grid;
  gap: 10px;
}

.modal-stage-picker button {
  min-height: 72px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 0, 0, 0.42);
  border-radius: 6px;
  padding: 12px 14px;
  background: rgba(255, 0, 0, 0.07);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.modal-stage-picker button:hover,
.modal-stage-picker button:focus-visible {
  border-color: var(--red);
  background: rgba(255, 0, 0, 0.16);
  outline: none;
}

.modal-stage-picker button.is-active {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), rgba(255, 0, 0, 0.18));
  box-shadow: 0 16px 34px rgba(255, 0, 0, 0.22);
  transform: translateY(-2px);
}

.modal-stage-picker button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.modal-stage-picker strong,
.modal-stage-picker span {
  display: block;
}

.modal-stage-picker strong {
  font-size: 0.96rem;
}

.modal-stage-picker span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.dyno-sheet img {
  width: 100%;
  display: block;
  filter: saturate(0.96) contrast(1.04);
}

.dyno-curve-layer {
  position: absolute;
  left: 6.5%;
  right: 7.5%;
  top: 15.5%;
  width: 86%;
  height: 53%;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.dyno-curve {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.dyno-curve-stock {
  stroke: rgba(80, 80, 80, 0.48);
  stroke-width: 1.7;
  stroke-dasharray: 5 4;
}

.dyno-curve-power {
  stroke: rgba(255, 0, 0, 0.82);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.4));
}

.dyno-curve-torque {
  stroke: rgba(255, 90, 90, 0.48);
  stroke-width: 2.8;
  filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.26));
}

.dyno-corner {
  position: absolute;
  top: 4.2%;
  left: 4.5%;
  display: grid;
  gap: 2px;
  max-width: 44%;
  padding: 5px 7px;
  border-radius: 3px;
  color: #111;
  font-size: clamp(0.46rem, 1.12vw, 0.68rem);
  line-height: 1.12;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.dyno-corner span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px;
}

.dyno-corner b {
  min-width: 0;
  overflow: hidden;
  color: #050505;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dyno-run {
  position: absolute;
  left: 4.8%;
  right: 12%;
  bottom: 7.2%;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.15fr 1.15fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
  font-size: clamp(0.46rem, 1.08vw, 0.66rem);
  font-style: normal;
}

.dyno-run span,
.dyno-run strong,
.dyno-run em {
  min-width: 0;
  padding: 4px 5px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dyno-run span {
  color: var(--red);
  font-weight: 900;
}

.dyno-run strong,
.dyno-run em {
  font-style: normal;
  font-weight: 900;
}

.vehicle-stage-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.vehicle-stage-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.vehicle-stage-item strong,
.vehicle-stage-item span {
  display: block;
}

.vehicle-stage-item strong {
  color: #fff;
}

.vehicle-stage-item span {
  margin-top: 6px;
  color: var(--red);
  font-weight: 900;
}

.vehicle-stage-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.media-section {
  background: #070707;
}

.parts-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 0, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #050505, #090909);
}

.parts-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 4vw, 58px);
}

.media-card {
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.parts-visual {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 74%, rgba(255, 0, 0, 0.18), transparent 34%),
    #050505;
}

.parts-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px);
  pointer-events: none;
}

.parts-visual img {
  min-height: 520px;
  filter: saturate(1.08) contrast(1.05);
}

.parts-visual-badges {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.parts-visual-badges span {
  border: 1px solid rgba(255, 0, 0, 0.42);
  border-radius: 4px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.parts-copy {
  align-self: stretch;
}

.parts-copy > p:not(.eyebrow) {
  max-width: 660px;
}

.parts-accordion {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.part-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 0, 0, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.part-item[open] {
  border-color: rgba(255, 0, 0, 0.52);
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.1);
}

.part-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.38);
}

.part-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

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

.part-item summary strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.part-item summary small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.part-item summary b {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.part-item[open] summary b {
  background: var(--red);
  transform: rotate(45deg);
}

.part-item-body {
  padding: 0 18px 18px;
  color: var(--muted);
}

.part-item-body p {
  margin: 0 0 12px;
}

.part-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.part-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 0, 0, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.part-gallery figure:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

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

.part-gallery figcaption {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.part-item-body ul {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.part-item-body li {
  position: relative;
  padding-left: 18px;
  color: #d8d8d8;
  font-size: 0.86rem;
}

.part-item-body li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.parts-request {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.parts-request::after {
  content: "->";
  color: var(--red);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #e8e8e8;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

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

.process-step {
  min-height: 236px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease;
}

.process-step:hover::after {
  transform: scaleX(1);
}

.process-step span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

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

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

.package-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.package-card.featured {
  border-color: rgba(255, 0, 0, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 0, 0, 0.14), rgba(255, 255, 255, 0.035)),
    #111;
}

.package-kicker {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  gap: 10px;
}

.package-card li {
  color: #e8e8e8;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.package-card .btn {
  margin-top: auto;
}

.gallery-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.gallery-item {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 650ms ease, filter 650ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.86));
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
}

.testimonial {
  margin: 0;
  min-height: 220px;
  padding: 28px;
}

.testimonial p {
  font-size: 1.04rem;
}

.testimonial cite {
  display: block;
  margin-top: 24px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.faq-layout {
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-weight: 900;
}

.faq-item button span {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.faq-item button span::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.faq-item button span::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
  transition: transform 160ms ease;
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(90deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-content p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-content p {
  padding-bottom: 22px;
}

.instagram-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(12, 2, 2, 0.88));
}

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.15fr);
  gap: 26px;
  align-items: stretch;
}

.instagram-section .section-heading {
  align-self: start;
}

.instagram-map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.14), transparent 38%),
    radial-gradient(ellipse at 48% 46%, rgba(255, 255, 255, 0.07), transparent 38%),
    #080808;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.instagram-map-card::before {
  content: "";
  position: absolute;
  inset: 30px;
  opacity: 0.46;
  background:
    linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, 0.08) 25%, transparent 27%),
    linear-gradient(25deg, transparent 0 42%, rgba(255, 0, 0, 0.16) 44%, transparent 47%),
    linear-gradient(160deg, transparent 0 55%, rgba(255, 255, 255, 0.06) 57%, transparent 60%);
  clip-path: polygon(14% 26%, 32% 14%, 47% 18%, 58% 34%, 73% 32%, 82% 46%, 68% 60%, 58% 76%, 40% 72%, 26% 62%, 18% 48%);
  filter: drop-shadow(0 0 24px rgba(255, 0, 0, 0.18));
}

.instagram-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.instagram-map-glow {
  position: absolute;
  inset: auto -12% 10% -12%;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.24), rgba(255, 72, 0, 0.14), transparent);
  filter: blur(14px);
  animation: instagramSweep 9s ease-in-out infinite alternate;
}

.instagram-marker {
  position: absolute;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.instagram-marker span {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(255, 0, 0, 0.14), 0 0 26px rgba(255, 0, 0, 0.82);
  animation: instagramMarkerPulse 1.9s ease-in-out infinite;
}

.instagram-marker strong {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.instagram-marker-switzerland {
  left: 42%;
  top: 41%;
}

.instagram-marker-official {
  left: 58%;
  top: 61%;
}

.instagram-map-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.66);
  color: var(--muted);
  font-weight: 800;
}

.instagram-map-note strong {
  color: #fff;
}

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

.instagram-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 0, 0, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 0, 0, 0.13), rgba(255, 255, 255, 0.035) 38%, rgba(0, 0, 0, 0.38)),
    rgba(10, 10, 10, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.instagram-card:hover,
.instagram-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 0, 0, 0.2), rgba(255, 255, 255, 0.045) 42%, rgba(0, 0, 0, 0.32)),
    rgba(10, 10, 10, 0.84);
}

.instagram-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 0, 0, 0.42);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 0, 0, 0.42), rgba(120, 0, 0, 0.22));
  box-shadow: 0 0 26px rgba(255, 0, 0, 0.18);
}

.instagram-icon svg,
.contact-methods svg {
  width: 22px;
  height: 22px;
}

.instagram-icon svg,
.instagram-icon rect,
.instagram-icon circle,
.contact-methods rect,
.contact-methods circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.instagram-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

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

.instagram-card a,
.footer-social-links a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.instagram-card a::after,
.footer-social-links a::after {
  content: " ->";
  color: var(--red);
}

.contact-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 0, 0, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(179, 0, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #050505, #080202 62%, #030303);
}

.contact-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 34px;
  align-items: start;
}

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

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
}

.contact-methods svg {
  color: var(--red);
}

.contact-whatsapp-link {
  width: 100%;
  min-width: 0;
  min-height: 74px;
  padding: 15px 16px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 50%, rgba(37, 211, 102, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(255, 0, 0, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-whatsapp-link:hover,
.contact-whatsapp-link:focus-visible {
  border-color: rgba(37, 211, 102, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34), 0 0 24px rgba(37, 211, 102, 0.18);
  transform: translateY(-2px);
}

.contact-whatsapp-link svg {
  width: 30px;
  height: 30px;
  color: #25d366;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.contact-whatsapp-link span {
  display: grid;
  gap: 2px;
}

.contact-whatsapp-link strong {
  font-size: 0.76rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-whatsapp-link em {
  color: #fff;
  font-size: 1.06rem;
  font-style: normal;
}

.contact-email-link {
  width: 100%;
  min-width: 0;
  min-height: 72px;
  grid-column: 1 / -1;
  padding: 15px 16px;
  border: 1px solid rgba(255, 0, 0, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 0, 0, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
  border-color: rgba(255, 0, 0, 0.76);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34), 0 0 24px rgba(255, 0, 0, 0.18);
  transform: translateY(-2px);
}

.contact-email-link svg {
  width: 30px;
  height: 30px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-email-link span {
  display: grid;
  gap: 2px;
}

.contact-email-link strong {
  font-size: 0.76rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-email-link em {
  color: #fff;
  font-size: 1.02rem;
  font-style: normal;
  overflow-wrap: anywhere;
}

.contact-instagram-panel {
  margin-top: 26px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(255, 0, 0, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 0, 0, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.contact-instagram-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-instagram-head .eyebrow {
  margin: 0 0 8px;
}

.contact-instagram-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.contact-location-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 0, 0, 0.04)),
    rgba(0, 0, 0, 0.48);
}

.contact-instagram-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 63% 62%, rgba(255, 0, 0, 0.18), transparent 13%),
    radial-gradient(circle at 38% 42%, rgba(255, 84, 0, 0.14), transparent 16%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(13, 13, 13, 0.98), rgba(0, 0, 0, 0.92));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.72), 0 18px 46px rgba(0, 0, 0, 0.28);
}

.contact-instagram-map::before {
  content: "";
  position: absolute;
  inset: 22px;
  opacity: 0.36;
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.15), transparent 28%),
    linear-gradient(36deg, transparent 42%, rgba(255, 0, 0, 0.22), transparent 52%);
  filter: blur(0.4px);
  transform: skewX(-12deg);
}

.contact-real-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-real-map .map-water {
  fill: #07090b;
}

.contact-real-map .map-land {
  fill: url("#mapLandGradient");
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.2;
}

.contact-real-map .map-land-alt {
  fill: rgba(35, 39, 42, 0.72);
  stroke: rgba(255, 255, 255, 0.11);
}

.contact-real-map .map-border {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
  stroke-dasharray: 5 7;
}

.contact-real-map .map-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0.55;
}

.contact-real-map .map-road-main {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 5.5;
  opacity: 0.7;
}

.contact-real-map .map-road-soft {
  stroke: rgba(255, 0, 0, 0.24);
  stroke-width: 2.3;
  opacity: 0.6;
}

.contact-real-map .map-route {
  fill: none;
  stroke: url("#mapRouteGradient");
  stroke-width: 2;
  opacity: 0.78;
  filter: url("#mapGlow");
}

.contact-real-map .map-route-soft {
  opacity: 0.38;
  stroke-width: 1.6;
}

.contact-real-map .map-city {
  fill: #ff0000;
  stroke: #fff;
  stroke-width: 1.5;
  filter: url("#mapGlow");
}

.contact-real-map .map-city-dim {
  opacity: 0.6;
}

.contact-real-map .map-label {
  fill: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-real-map .map-label-dim {
  fill: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.contact-instagram-map .instagram-map-grid,
.contact-instagram-map .instagram-map-glow {
  z-index: 2;
}

.contact-instagram-map .instagram-marker {
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.contact-instagram-map .instagram-marker span {
  width: 13px;
  height: 13px;
  box-shadow: 0 0 0 7px rgba(255, 0, 0, 0.12), 0 0 24px rgba(255, 0, 0, 0.8);
}

.contact-instagram-map .instagram-marker strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-instagram-map .instagram-marker-kosovo {
  left: 63%;
  top: 62%;
}

.contact-instagram-map .instagram-marker-switzerland {
  left: 38%;
  top: 42%;
}

.contact-location-card .instagram-map-note {
  position: static;
  width: auto;
  padding: 11px 12px;
  gap: 8px;
  border-color: rgba(255, 0, 0, 0.2);
  background: rgba(5, 5, 5, 0.72);
}

.contact-instagram-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
  align-content: stretch;
}

.contact-instagram-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.38);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-instagram-list a:hover,
.contact-instagram-list a:focus-visible {
  transform: translateX(3px);
  border-color: rgba(255, 0, 0, 0.62);
  background: rgba(255, 0, 0, 0.08);
}

.contact-instagram-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-instagram-list span {
  display: grid;
  gap: 2px;
}

.contact-instagram-list strong {
  font-size: 0.92rem;
}

.contact-instagram-list small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-form {
  padding: 30px;
  border-color: rgba(255, 0, 0, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 0, 0, 0.05)),
    rgba(0, 0, 0, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: #858585;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status.is-success {
  color: #fff;
}

.form-status.is-error {
  color: #ff6a6a;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.site-footer p {
  margin: 16px 0 0;
  max-width: 520px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-social-links,
.footer-legal-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social-links a,
.footer-legal-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 0, 0, 0.28);
  border-radius: 5px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.footer-social-links a:hover,
.footer-legal-links a:hover {
  color: #fff;
  border-color: rgba(255, 0, 0, 0.72);
}

.footer-legal-links {
  gap: 10px;
}

.footer-legal-links a {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.legal {
  grid-column: 1 / -1;
  max-width: none;
  font-size: 0.78rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 0, 0, 0.6);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.84);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
}

@keyframes instagramSweep {
  from {
    transform: translateX(-10%);
    opacity: 0.38;
  }
  to {
    transform: translateX(10%);
    opacity: 0.72;
  }
}

@keyframes instagramMarkerPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.16);
  }
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 580ms ease, transform 580ms ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .hero-logo-title.reveal {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(0.62);
  transition: none;
  animation: heroLogoPopOut 1100ms cubic-bezier(0.16, 1, 0.3, 1) 160ms forwards;
  will-change: transform, opacity, filter;
}

.js-enabled .hero-logo-title.reveal img {
  animation: heroLogoRedFlash 1200ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both;
}

.js-enabled .hero-logo-title.reveal::after {
  animation: heroLogoAuraBurst 1200ms ease-out 160ms both;
}

@media (max-width: 1020px) {
  .service-grid,
  .process-grid,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .results-layout,
  .media-grid,
  .faq-layout,
  .contact-layout,
  .power-layout,
  .instagram-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .contact-instagram-panel {
    grid-template-columns: 1fr;
  }

  .contact-location-card {
    order: 1;
  }

  .contact-instagram-list {
    order: 2;
  }

  .instagram-card-grid {
    grid-template-columns: 1fr;
  }

  .instagram-map-card {
    min-height: 380px;
  }

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

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

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

  .model-search-button {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .model-search-button em {
    grid-column: 2;
    justify-self: start;
  }

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

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

  .brand-showcase-visual,
  .brand-showcase-visual img {
    min-height: 300px;
  }

  .parts-visual,
  .parts-visual img {
    min-height: 420px;
  }

  .brand-showcase-copy {
    border-top: 1px solid var(--line);
  }

  .vehicle-modal-card {
    grid-template-columns: 1fr;
  }

  .vehicle-modal-content {
    grid-template-columns: 1fr;
  }

  .vehicle-modal-media {
    min-height: 260px;
    max-height: 320px;
  }

  h1 {
    font-size: 4.6rem;
  }

  .hero-logo-title {
    width: min(620px, 92vw);
  }

  .hero-dashboard {
    margin: 36px auto 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 7, 7, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 4px;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-menu .nav-cta {
    margin-top: 8px;
  }

  .language-switcher {
    width: 100%;
    justify-content: stretch;
    margin: 8px 0;
  }

  .language-switcher button {
    flex: 1;
    min-height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 54px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 70% 35%, rgba(255, 0, 0, 0.2), transparent 28%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.5));
  }

  h1 {
    font-size: 3.35rem;
  }

  .brand-image-link {
    width: 126px;
    height: 48px;
  }

  .brand-logo-small {
    max-height: 48px;
  }

  .hero-logo-title {
    width: min(370px, 94vw);
    margin-bottom: 14px;
  }

  .hero-subtitle {
    gap: 7px;
    font-size: 0.68rem;
  }

  .hero-subtitle span {
    min-height: 30px;
    padding: 8px 9px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-dashboard {
    width: min(100% - 28px, 520px);
    grid-template-columns: 1fr;
  }

  .hero-dashboard div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .service-grid,
  .process-grid,
  .package-grid,
  .gallery-grid,
  .testimonial-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .instagram-map-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-marker strong {
    font-size: 0.68rem;
  }

  .instagram-marker-switzerland {
    left: 34%;
  }

  .instagram-marker-official {
    left: 48%;
  }

  .contact-instagram-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

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

  .contact-whatsapp-link {
    min-height: 68px;
  }

  .contact-instagram-head {
    display: grid;
    align-items: start;
  }

  .contact-instagram-map {
    min-height: 280px;
  }

  .contact-instagram-list a {
    min-height: 76px;
  }

  .contact-instagram-map .instagram-marker-kosovo {
    left: 50%;
    top: 64%;
  }

  .contact-instagram-map .instagram-marker-switzerland {
    left: 30%;
    top: 38%;
  }

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

  .result-board {
    padding: 20px;
  }

  .power-controls,
  .power-result {
    padding: 20px;
  }

  .power-result h3 {
    font-size: 1.32rem;
  }

  .power-stat-grid {
    grid-template-columns: 1fr;
  }

  .power-result .btn {
    width: 100%;
  }

  .model-search-launcher {
    padding: 14px;
  }

  .model-search-button {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    text-align: center;
  }

  .model-search-icon {
    justify-self: center;
  }

  .model-search-button em {
    grid-column: auto;
    justify-self: center;
  }

  .model-search-toolbar {
    grid-template-columns: 1fr;
    padding: 14px 14px 0;
  }

  .model-search-close {
    width: 100%;
  }

  .result-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .result-row b {
    text-align: left;
  }

  .media-card,
  .media-card img,
  .gallery-item,
  .gallery-item img {
    min-height: 300px;
  }

  .parts-visual,
  .parts-visual img {
    min-height: 340px;
  }

  .parts-visual-badges {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

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

  .contact-form {
    padding: 20px;
  }

  .vehicle-browser-head {
    display: grid;
    align-items: start;
  }

  .vehicle-table-toolbar {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .vehicle-table-count {
    justify-content: start;
    place-items: center start;
  }

  .vehicle-table-wrap {
    max-height: 560px;
  }

  .vehicle-data-table {
    min-width: 820px;
    font-size: 0.78rem;
  }

  .vehicle-data-table th,
  .vehicle-data-table td {
    padding: 12px 13px;
  }

  .vehicle-browser {
    border-radius: 8px;
  }

  .vehicle-browser-head {
    padding: 20px;
    gap: 12px;
  }

  .vehicle-browser-head p:last-child {
    max-width: none;
    font-size: 0.94rem;
  }

  .vehicle-table-wrap {
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 12px;
  }

  .vehicle-data-table {
    min-width: 0;
    width: 100%;
    display: block;
    border-spacing: 0;
  }

  .vehicle-data-table thead {
    display: none;
  }

  .vehicle-data-table tbody {
    display: grid;
    gap: 12px;
  }

  .vehicle-data-table tbody tr {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
      radial-gradient(circle at 90% 0%, rgba(255, 0, 0, 0.14), transparent 36%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  }

  .vehicle-data-table tbody tr:hover,
  .vehicle-data-table tbody tr:focus-visible {
    background:
      radial-gradient(circle at 90% 0%, rgba(255, 0, 0, 0.2), transparent 36%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: inset 3px 0 0 var(--red), 0 18px 34px rgba(0, 0, 0, 0.28);
  }

  .vehicle-data-table td {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 0;
    border: 0;
    font-size: 0.9rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .vehicle-data-table td::before {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .vehicle-data-table td:nth-child(1)::before {
    content: "Brand";
  }

  .vehicle-data-table td:nth-child(2)::before {
    content: "Model";
  }

  .vehicle-data-table td:nth-child(3)::before {
    content: "Generation";
  }

  .vehicle-data-table td:nth-child(4)::before {
    content: "Year";
  }

  .vehicle-data-table td:nth-child(5)::before {
    content: "Engine";
  }

  .vehicle-data-table td:nth-child(6)::before {
    content: "Fuel";
  }

  .vehicle-data-table td:nth-child(7)::before {
    content: "Stock";
  }

  .vehicle-data-table td:nth-child(8)::before {
    content: "";
  }

  .vehicle-data-table td:nth-child(2) {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.06rem;
    font-weight: 950;
  }

  .vehicle-data-table td:nth-child(2)::before {
    color: var(--red);
    font-size: 0.72rem;
  }

  .vehicle-data-table td:nth-child(8) {
    grid-template-columns: 1fr;
    margin-top: 6px;
  }

  .vehicle-table-open {
    width: 100%;
    min-height: 44px;
  }

  .vehicle-data-table .vehicle-empty-row td {
    grid-template-columns: 1fr;
    padding: 8px;
    color: var(--muted);
    text-align: center;
  }

  .vehicle-data-table .vehicle-empty-row td::before {
    content: none;
  }

  .vehicle-table-pagination {
    padding: 14px;
    gap: 10px;
  }

  .vehicle-table-pagination button {
    min-width: 86px;
  }

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

  .brand-showcase-visual,
  .brand-showcase-visual img {
    min-height: 250px;
  }

  .brand-showcase-logo {
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
  }

  .brand-showcase-copy {
    padding: 24px;
  }

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

  .brand-card {
    min-height: 112px;
  }

  .vehicle-list-heading {
    display: grid;
  }

  .vehicle-card-grid {
    grid-template-columns: 1fr;
  }

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

  .vehicle-card-media {
    height: 180px;
  }

  .vehicle-modal {
    padding: 12px;
  }

  .vehicle-modal-card {
    max-height: calc(100vh - 24px);
  }

  .vehicle-modal-content {
    padding: 22px;
  }

  .vehicle-modal-detail-grid,
  .modal-result-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-modal-content h2 {
    font-size: 1.55rem;
  }

  .vehicle-modal-media {
    min-height: 190px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.78rem;
  }

  .hero-logo-title {
    width: min(336px, 94vw);
  }

  .brand {
    font-size: 0.92rem;
  }

  .hero-copy,
  .section-copy p,
  .section-heading p,
  .contact-copy p {
    font-size: 0.94rem;
  }

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .hero-logo-title.reveal,
  .js-enabled .hero-logo-title.reveal img,
  .js-enabled .hero-logo-title.reveal::after {
    animation: none;
  }

  .js-enabled .hero-logo-title.reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium black/red theme refresh */
:root {
  --bg: #030303;
  --bg-soft: #080303;
  --panel: #0d0d0d;
  --panel-strong: #171010;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 0, 0, 0.36);
  --text: #f7f4f4;
  --muted: #b9b0b0;
  --red: #ff0000;
  --red-dark: #870000;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

body {
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 0, 0, 0.12), transparent 28%),
    radial-gradient(circle at 14% 42%, rgba(255, 0, 0, 0.07), transparent 24%),
    linear-gradient(180deg, #030303 0%, #070202 46%, #030303 100%);
}

.site-header {
  background: rgba(3, 3, 3, 0.92);
  border-bottom: 1px solid rgba(255, 0, 0, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.98);
  border-bottom-color: rgba(255, 0, 0, 0.28);
}

.section::before {
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 0, 0, 0.045), transparent 26%),
    radial-gradient(circle at 86% 76%, rgba(255, 0, 0, 0.055), transparent 26%);
  background-size: auto;
  opacity: 0.8;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.services-section,
.packages-section,
.faq-section,
.power-section,
.parts-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 0, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #050505, #090303);
}

.results-section,
.contact-section {
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 0, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #030303, #070202);
}

.service-card,
.process-step,
.package-card,
.testimonial,
.faq-item,
.contact-form,
.result-board,
.power-table-card,
.vehicle-table-panel,
.brand-showcase,
.vehicle-modal-card,
.part-item,
.parts-visual,
.parts-accordion-item {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 0, 0, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.86), rgba(7, 7, 7, 0.96));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.44);
}

.service-card:hover,
.part-item:hover,
.vehicle-table-panel:hover,
.power-table-card:hover {
  border-color: rgba(255, 0, 0, 0.4);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 0, 0, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(28, 18, 18, 0.9), rgba(7, 7, 7, 0.98));
}

.btn,
.nav-cta,
.vehicle-table-open,
.text-link,
.parts-request,
.chip-filter,
.language-switcher button,
.parts-tab,
.faq-item button,
.back-to-top {
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

.btn-primary,
.nav-cta,
.vehicle-table-open,
.file-submit-button,
.contact-form .btn-primary {
  border-color: rgba(255, 0, 0, 0.82);
  background: linear-gradient(135deg, #ff0000 0%, #bd0000 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover,
.nav-cta:hover,
.vehicle-table-open:hover,
.file-submit-button:hover,
.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff1a1a 0%, #9b0000 100%);
  box-shadow: 0 22px 54px rgba(255, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-ghost,
.chip-filter,
.parts-tab,
.language-switcher button,
.faq-item button {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(0, 0, 0, 0.18));
  color: #fff;
}

.btn-ghost:hover,
.chip-filter:hover,
.parts-tab:hover,
.language-switcher button:hover,
.faq-item button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 0, 0, 0.42);
  background: rgba(255, 0, 0, 0.1);
}

.language-switcher button.is-active,
.chip-filter.is-active,
.parts-tab.is-active {
  border-color: rgba(255, 0, 0, 0.72);
  background: linear-gradient(135deg, #ff0000, #8e0000);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 0, 0, 0.22);
}

.hero::after {
  background:
    radial-gradient(circle at 82% 54%, rgba(255, 0, 0, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.48) 72%, rgba(0, 0, 0, 0.86) 100%);
}

.hero-dashboard,
.power-stat-grid,
.vehicle-table-header,
.parts-panel,
.faq-content {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
}

.power-table-card,
.vehicle-table-panel {
  overflow: hidden;
}

.vehicle-data-table thead {
  background: #0b0b0b;
}

.vehicle-data-table tbody tr:hover,
.vehicle-data-table tbody tr:focus-visible {
  background: rgba(255, 0, 0, 0.08);
  box-shadow: inset 3px 0 0 var(--red);
}

.vehicle-modal {
  background: rgba(0, 0, 0, 0.84);
}

.vehicle-modal-close,
.back-to-top {
  border-color: rgba(255, 0, 0, 0.72);
  background: rgba(5, 5, 5, 0.88);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.vehicle-modal-close:hover,
.back-to-top:hover {
  transform: translateY(-2px);
  background: #ff0000;
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.28);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.56);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 0, 0, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.12);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255, 0, 0, 0.9);
  outline-offset: 3px;
}

/* Global premium animated atmosphere */
body {
  --atmo-scroll: 0px;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 0, 0, 0.16), transparent 30%),
    radial-gradient(circle at 14% 58%, rgba(179, 0, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0d0d0d 42%, #050505 100%);
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 0, 0, 0.14), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(179, 0, 0, 0.11), transparent 28%),
    linear-gradient(180deg, #050505, #0d0d0d 48%, #050505);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
.skip-link,
.back-to-top,
.vehicle-modal {
  z-index: 100;
}

.site-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 18%, transparent 72%, rgba(0, 0, 0, 0.44)),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.atmosphere-layer {
  position: absolute;
  inset: -14%;
  transform: translate3d(0, calc(var(--atmo-scroll) * -0.018), 0);
  will-change: transform;
}

.atmosphere-glow {
  background:
    radial-gradient(ellipse at 82% 18%, rgba(255, 0, 0, 0.23), transparent 36%),
    radial-gradient(ellipse at 12% 58%, rgba(179, 0, 0, 0.16), transparent 30%),
    radial-gradient(ellipse at 62% 84%, rgba(255, 73, 0, 0.08), transparent 26%);
  filter: blur(2px);
  opacity: 0.95;
}

.atmosphere-fog {
  transform: translate3d(0, calc(var(--atmo-scroll) * -0.026), 0);
  opacity: 0.48;
  filter: blur(28px);
}

.atmosphere-fog::before,
.atmosphere-fog::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 14% 36%, rgba(255, 255, 255, 0.055), transparent 32%),
    radial-gradient(ellipse at 78% 54%, rgba(179, 0, 0, 0.13), transparent 34%),
    radial-gradient(ellipse at 46% 80%, rgba(255, 73, 0, 0.07), transparent 28%);
  animation: fogDrift 34s ease-in-out infinite alternate;
}

.atmosphere-fog::after {
  animation-duration: 46s;
  animation-direction: alternate-reverse;
  opacity: 0.58;
}

.atmosphere-streaks {
  transform: translate3d(0, calc(var(--atmo-scroll) * -0.035), 0);
  mix-blend-mode: screen;
}

.atmosphere-streaks::before,
.atmosphere-streaks::after {
  content: "";
  position: absolute;
  inset: 0 -42%;
  opacity: 0.68;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.34)) drop-shadow(0 0 26px rgba(255, 68, 0, 0.12));
  background:
    linear-gradient(92deg, transparent 0 12%, rgba(179, 0, 0, 0.02) 16%, rgba(255, 0, 0, 0.48) 34%, rgba(255, 80, 0, 0.18) 43%, transparent 58%) 0 18% / 64vw 2px no-repeat,
    linear-gradient(91deg, transparent 0 10%, rgba(179, 0, 0, 0.02) 15%, rgba(255, 0, 0, 0.36) 32%, rgba(255, 80, 0, 0.13) 44%, transparent 60%) 16vw 34% / 76vw 1px no-repeat,
    linear-gradient(90deg, transparent 0 18%, rgba(255, 0, 0, 0.34) 42%, rgba(255, 80, 0, 0.15) 52%, transparent 68%) -10vw 58% / 82vw 2px no-repeat,
    linear-gradient(93deg, transparent 0 14%, rgba(179, 0, 0, 0.03) 19%, rgba(255, 0, 0, 0.3) 38%, transparent 56%) 18vw 78% / 70vw 1px no-repeat;
  animation: lightTrailRight 18s linear infinite;
}

.atmosphere-streaks::after {
  opacity: 0.42;
  filter: blur(0.4px) drop-shadow(0 0 18px rgba(255, 0, 0, 0.24));
  background:
    linear-gradient(88deg, transparent 0 18%, rgba(255, 0, 0, 0.24) 42%, rgba(255, 72, 0, 0.12) 52%, transparent 70%) 22vw 24% / 90vw 1px no-repeat,
    linear-gradient(90deg, transparent 0 20%, rgba(179, 0, 0, 0.28) 45%, rgba(255, 0, 0, 0.18) 54%, transparent 72%) -20vw 66% / 96vw 2px no-repeat;
  animation: lightTrailLeft 26s linear infinite;
}

.streaks-fast {
  opacity: 0.62;
}

.streaks-slow {
  transform: translate3d(0, calc(var(--atmo-scroll) * -0.05), 0);
  opacity: 0.42;
}

.streaks-slow::before {
  animation-duration: 34s;
  animation-direction: reverse;
}

.streaks-slow::after {
  animation-duration: 44s;
}

.atmosphere-sparks {
  transform: translate3d(0, calc(var(--atmo-scroll) * -0.06), 0);
  opacity: 0.28;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 76, 0, 0.36) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 36%, rgba(255, 0, 0, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 72%, rgba(179, 0, 0, 0.32) 0 1px, transparent 2px);
  background-size: 320px 260px, 420px 300px, 380px 340px;
  animation: sparksDrift 38s linear infinite;
}

.hero,
.section,
.file-section,
.site-footer {
  background-color: transparent !important;
}

.services-section,
.packages-section,
.faq-section,
.power-section,
.parts-section,
.results-section,
.contact-section,
.file-service-section,
.download-lookup-section,
.admin-section,
.site-footer {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.58)) !important;
}

.hero {
  background:
    radial-gradient(circle at 84% 44%, rgba(255, 0, 0, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.36), rgba(5, 5, 5, 0.82)) !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, transparent 0 45%, rgba(255, 0, 0, 0.12) 52%, transparent 64%),
    radial-gradient(circle at 70% 46%, rgba(255, 0, 0, 0.2), transparent 30%);
  opacity: 0.78;
  animation: heroPulse 7s ease-in-out infinite alternate;
}

.service-card,
.process-step,
.package-card,
.testimonial,
.faq-item,
.contact-form,
.result-board,
.power-table-card,
.vehicle-table-panel,
.brand-showcase,
.vehicle-modal-card,
.part-item,
.parts-visual,
.parts-accordion-item,
.file-order-shell,
.lookup-card,
.admin-login,
.admin-dashboard {
  backdrop-filter: blur(12px);
}

.brand-showcase-dyno,
.brand-showcase-dyno img,
.dyno-sheet {
  background: #080808 !important;
}

.dyno-corner,
.dyno-run span,
.dyno-run strong,
.dyno-run em {
  background: rgba(5, 5, 5, 0.78) !important;
  color: #fff !important;
}

.dyno-corner b {
  color: #fff !important;
}

.hero-dyno-media {
  background: #050505;
}

.hero-dyno-media img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  opacity: 0.58;
  filter: saturate(0.72) contrast(1.24) brightness(0.62);
}

.hero-dyno-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.025), transparent 24%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.48));
}

.hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.48) 34%, rgba(0, 0, 0, 0.38) 64%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.94));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5));
}

.hero::before {
  background:
    linear-gradient(95deg, transparent 0 38%, rgba(255, 255, 255, 0.035) 50%, transparent 64%);
  opacity: 0.22;
}

.hero-content {
  margin-top: clamp(24px, 5vh, 72px);
}

.hero-subtitle {
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: 10px;
}

.hero-subtitle span {
  width: 100%;
  justify-content: center;
}

.hero-actions {
  margin-top: 30px;
}

.hero-dashboard {
  margin-top: 44px;
}

.nav-ticker {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.52;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(82, 0, 0, 0.12), rgba(5, 5, 5, 0.72));
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.035);
}

.nav-ticker::before,
.nav-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 18px;
  pointer-events: none;
}

.nav-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #050505, transparent);
}

.nav-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #050505, transparent);
}

.nav-ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 28px;
  align-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: lowercase;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.22);
  animation: navTicker 68s linear infinite;
}

.nav-ticker-track span {
  position: relative;
  white-space: nowrap;
}

.nav-ticker-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 8px;
  height: 1px;
  background: rgba(255, 0, 0, 0.45);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.38);
}

.proof-results-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.2), transparent 26%),
    radial-gradient(circle at 14% 42%, rgba(179, 0, 0, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(8, 0, 0, 0.74)) !important;
}

.proof-results-section::before,
.proof-results-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.proof-results-section::before {
  inset: 12% -18% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.46), rgba(255, 84, 0, 0.18), transparent);
  filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.3));
  animation: proofLightSweep 11s linear infinite;
}

.proof-results-section::after {
  inset: 0;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 25% 45%, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(ellipse at 76% 62%, rgba(255, 0, 0, 0.13), transparent 34%);
  filter: blur(0.2px);
}

.proof-results-section .section-shell {
  position: relative;
  z-index: 1;
}

.proof-results-head {
  width: min(780px, 100%);
  margin-inline: auto;
  text-align: center;
}

.proof-results-head .eyebrow {
  justify-content: center;
  color: #ff1c1c;
}

.proof-results-head h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.4rem, 5vw, 5.7rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(255, 0, 0, 0.18);
}

.proof-results-copy {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.proof-results-tagline {
  display: block;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-results-subline {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
}

.proof-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.proof-single-grid {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.proof-result-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 84% 16%, rgba(255, 0, 0, 0.2), transparent 34%),
    rgba(8, 8, 8, 0.76);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.proof-scanner-card {
  display: grid;
  grid-template-rows: minmax(420px, 660px) auto;
  min-height: 0;
  border-color: rgba(255, 0, 0, 0.52);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 0, 0, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(5, 8, 10, 0.96), rgba(22, 0, 0, 0.9));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 54px rgba(255, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.proof-scanner-card::before,
.proof-scanner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.proof-scanner-card::before {
  z-index: 2;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 47%, rgba(255, 0, 0, 0.52) 50%, rgba(255, 95, 0, 0.12) 54%, transparent 61%);
  mix-blend-mode: screen;
  filter: blur(0.2px) drop-shadow(0 0 24px rgba(255, 0, 0, 0.48));
  animation: proofScannerSweep 4.8s ease-in-out infinite;
}

.proof-scanner-card::after {
  z-index: 1;
  opacity: 0.2;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.16), transparent);
}

.proof-result-card:hover,
.proof-result-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.72);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.45),
    0 0 42px rgba(255, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.proof-card-visual {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 0, 0, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(12, 22, 28, 0.86), rgba(5, 5, 5, 0.96));
}

.proof-scanner-visual {
  position: relative;
  inset: auto;
  min-height: clamp(420px, 62vw, 660px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.18);
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 0, 0, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.98), rgba(8, 0, 0, 0.94));
}

.proof-card-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background:
    linear-gradient(95deg, transparent 0 22%, rgba(255, 0, 0, 0.8) 38%, rgba(255, 95, 0, 0.2) 46%, transparent 64%) 0 68% / 120% 2px no-repeat,
    linear-gradient(92deg, transparent 0 16%, rgba(255, 255, 255, 0.18) 42%, transparent 62%) 0 46% / 120% 1px no-repeat;
  filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.38));
  animation: proofCardStreak 4.8s ease-in-out infinite alternate;
}

.proof-scanner-visual::before {
  inset: 0;
  z-index: 2;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 28%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 72% 48%, rgba(255, 0, 0, 0.1), transparent 38%);
  filter: none;
  animation: none;
}

.proof-scanner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 4px;
  border: 1px solid rgba(255, 0, 0, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 0, 0, 0.18), transparent 16% 84%, rgba(255, 0, 0, 0.14)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px);
  opacity: 0.44;
}

.proof-scan-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  opacity: 0;
}

.proof-scan-image {
  z-index: 1;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: rgba(0, 0, 0, 0.86);
  filter: saturate(1.04) contrast(1.04) brightness(0.82);
  animation: proofImageCycle 44s ease-in-out infinite;
}

.proof-scan-image:nth-of-type(1) {
  animation-delay: 0s;
}

.proof-scan-image:nth-of-type(2) {
  animation-delay: 4s;
}

.proof-scan-image:nth-of-type(3) {
  animation-delay: 8s;
}

.proof-scan-image:nth-of-type(4) {
  animation-delay: 12s;
}

.proof-scan-image:nth-of-type(5) {
  animation-delay: 16s;
}

.proof-scan-image:nth-of-type(6) {
  animation-delay: 20s;
}

.proof-scan-image:nth-of-type(7) {
  animation-delay: 24s;
}

.proof-scan-image:nth-of-type(8) {
  animation-delay: 28s;
}

.proof-scan-image:nth-of-type(9) {
  animation-delay: 32s;
}

.proof-scan-image:nth-of-type(10) {
  animation-delay: 36s;
}

.proof-scan-image:nth-of-type(11) {
  animation-delay: 40s;
}

.proof-video-hud {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

.proof-video-hud-top {
  top: 18px;
}

.proof-video-hud-bottom {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
}

.proof-rec {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff1c1c;
}

.proof-rec::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.9);
  animation: proofRecBlink 1.1s ease-in-out infinite;
}

.proof-frame-corner {
  position: absolute;
  z-index: 7;
  width: 48px;
  height: 48px;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.42));
}

.proof-frame-corner-tl {
  top: 18px;
  left: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.86);
  border-left: 2px solid rgba(255, 0, 0, 0.78);
}

.proof-frame-corner-tr {
  top: 18px;
  right: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.86);
  border-right: 2px solid rgba(255, 0, 0, 0.78);
}

.proof-frame-corner-bl {
  bottom: 18px;
  left: 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  border-left: 2px solid rgba(255, 0, 0, 0.78);
}

.proof-frame-corner-br {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid rgba(255, 0, 0, 0.78);
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
}

.proof-car-silhouette {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 36px;
  height: 66px;
  border-radius: 78px 110px 20px 16px;
  background:
    linear-gradient(100deg, transparent 0 13%, rgba(255, 255, 255, 0.08) 13% 25%, transparent 25% 38%, rgba(255, 255, 255, 0.12) 38% 64%, transparent 64%),
    linear-gradient(90deg, rgba(11, 17, 19, 0.96), rgba(255, 0, 0, 0.24));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    0 0 34px rgba(255, 0, 0, 0.16);
}

.proof-scanner-visual .proof-car-silhouette {
  display: none;
  left: 8%;
  right: 8%;
  top: 52%;
  bottom: auto;
  height: clamp(66px, 10vw, 96px);
  z-index: 1;
  border-radius: 96px 140px 22px 18px;
  background:
    linear-gradient(100deg, transparent 0 13%, rgba(255, 255, 255, 0.08) 13% 27%, transparent 27% 40%, rgba(255, 255, 255, 0.16) 40% 66%, transparent 66%),
    linear-gradient(90deg, rgba(8, 16, 20, 0.98), rgba(255, 0, 0, 0.34));
  transform: translateY(-50%);
  animation: proofCarPulse 3.8s ease-in-out infinite alternate;
}

.proof-scan-beam {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 8;
  width: 19%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.08), rgba(255, 255, 255, 0.22), rgba(255, 0, 0, 0.36), transparent);
  filter: blur(0.2px) drop-shadow(0 0 24px rgba(255, 0, 0, 0.5));
  animation: proofScannerBeam 4.8s ease-in-out infinite;
}

.proof-car-silhouette::before,
.proof-car-silhouette::after {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 7px solid rgba(3, 3, 3, 0.9);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 18%, transparent 20%),
    radial-gradient(circle, rgba(255, 0, 0, 0.55), rgba(0, 0, 0, 0.8) 68%);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.32);
}

.proof-car-silhouette::before {
  left: 18%;
}

.proof-car-silhouette::after {
  right: 15%;
}

.proof-card-body {
  position: relative;
  padding: 24px;
}

.proof-scan-content {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  z-index: 9;
  display: grid;
  align-content: center;
  width: auto;
  min-height: 132px;
  padding: clamp(18px, 3vw, 24px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(12, 24, 34, 0.92), rgba(48, 0, 0, 0.72)),
    rgba(5, 5, 5, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.proof-scan-slide {
  grid-area: 1 / 1;
  opacity: 1;
  transform: none;
  animation: none;
}

.proof-card-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(255, 0, 0, 0.52);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 0, 0, 0.14);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card-body h3 {
  margin: 14px 0 6px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.proof-tune-package {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 800;
}

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

.proof-metrics div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.proof-metrics strong {
  display: block;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 22px rgba(255, 0, 0, 0.24);
}

.proof-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-results-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.proof-results-cta {
  box-shadow: 0 20px 46px rgba(255, 0, 0, 0.24);
}

@keyframes lightTrailRight {
  from {
    transform: translate3d(-18%, 0, 0);
  }
  to {
    transform: translate3d(18%, 0, 0);
  }
}

@keyframes lightTrailLeft {
  from {
    transform: translate3d(18%, 0, 0);
  }
  to {
    transform: translate3d(-18%, 0, 0);
  }
}

@keyframes fogDrift {
  from {
    transform: translate3d(-3%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 2%, 0) scale(1.06);
  }
}

@keyframes sparksDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 320px 0, -420px 0, 380px 0;
  }
}

@keyframes heroPulse {
  from {
    opacity: 0.54;
  }
  to {
    opacity: 0.9;
  }
}

@keyframes navTicker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes proofLightSweep {
  from {
    transform: translate3d(-18%, 0, 0);
  }
  to {
    transform: translate3d(18%, 0, 0);
  }
}

@keyframes proofCardStreak {
  from {
    transform: translate3d(-4%, 0, 0);
    opacity: 0.55;
  }
  to {
    transform: translate3d(4%, 0, 0);
    opacity: 0.9;
  }
}

@keyframes proofScannerSweep {
  0%,
  100% {
    transform: translate3d(-58%, 0, 0);
    opacity: 0;
  }
  16%,
  70% {
    opacity: 0.72;
  }
  84% {
    transform: translate3d(58%, 0, 0);
    opacity: 0;
  }
}

@keyframes proofScannerBeam {
  0%,
  100% {
    transform: translate3d(-120%, 0, 0);
    opacity: 0;
  }
  18%,
  70% {
    opacity: 0.8;
  }
  86% {
    transform: translate3d(420%, 0, 0);
    opacity: 0;
  }
}

@keyframes proofCarPulse {
  from {
    filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.12));
  }
  to {
    filter: drop-shadow(0 0 28px rgba(255, 0, 0, 0.34));
  }
}

@keyframes proofSlideCycle {
  0%,
  27% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  33%,
  100% {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes proofImageCycle {
  0%,
  8.1% {
    opacity: 1;
    transform: scale(1);
  }
  10%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes proofRecBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.34;
  }
}

@media (max-width: 980px) {
  .proof-card-grid {
    grid-template-columns: 1fr;
  }

  .proof-scanner-card {
    min-height: 0;
    grid-template-rows: minmax(460px, 560px) auto;
  }

  .proof-scanner-visual {
    inset: auto;
    min-height: 500px;
  }

  .proof-scan-content {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    min-height: 118px;
    padding: 20px;
  }
}

@media (max-width: 760px) {
  .site-atmosphere {
    opacity: 0.72;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-subtitle {
    width: min(100%, 360px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-subtitle span {
    min-height: 32px;
    padding: 8px 8px;
    white-space: normal;
  }

  .hero-dashboard {
    margin-top: 36px;
  }

  .nav-ticker {
    height: 8px;
  }

  .nav-ticker-track {
    gap: 20px;
    font-size: 0.42rem;
    animation-duration: 54s;
  }

  .proof-results-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .proof-card-visual {
    min-height: 170px;
  }

  .proof-scanner-card {
    min-height: 0;
    grid-template-rows: minmax(390px, 480px) auto;
  }

  .proof-scanner-visual {
    inset: auto;
    min-height: 430px;
  }

  .proof-video-hud {
    left: 14px;
    right: 14px;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .proof-video-hud-bottom {
    display: none;
  }

  .proof-frame-corner {
    width: 34px;
    height: 34px;
  }

  .proof-frame-corner-tl,
  .proof-frame-corner-tr {
    top: 14px;
  }

  .proof-frame-corner-bl,
  .proof-frame-corner-br {
    bottom: 14px;
  }

  .proof-frame-corner-tl,
  .proof-frame-corner-bl {
    left: 14px;
  }

  .proof-frame-corner-tr,
  .proof-frame-corner-br {
    right: 14px;
  }

  .proof-scan-content {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    min-height: 112px;
    padding: 16px;
  }

  .proof-card-body {
    padding: 20px;
  }

  .atmosphere-streaks::before,
  .atmosphere-streaks::after {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.24));
  }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere-fog::before,
  .atmosphere-fog::after,
  .atmosphere-streaks::before,
  .atmosphere-streaks::after,
  .atmosphere-sparks,
  .hero::before,
  .nav-ticker-track,
  .proof-results-section::before,
  .proof-card-visual::before,
  .proof-scanner-card::before,
  .proof-scan-beam,
  .proof-scanner-visual .proof-car-silhouette,
  .proof-scan-slide,
  .proof-scan-image,
  .proof-rec::before {
    animation: none !important;
  }

  .proof-scan-slide {
    opacity: 1;
    transform: none;
  }

  .proof-scan-slide:not(:first-child) {
    display: none;
  }

  .proof-scan-image:first-of-type {
    opacity: 1;
    transform: scale(1);
  }

  .proof-scan-image:not(:first-of-type) {
    display: none;
  }
}

/* Vehicle result modal final polish */
.vehicle-modal {
  align-items: flex-start;
  justify-items: center;
  padding-top: clamp(104px, 15vh, 138px);
  padding-bottom: 32px;
  overflow-y: auto;
}

.vehicle-modal-card {
  max-height: none;
  overflow: visible;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 0, 0, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(19, 19, 19, 0.98), rgba(4, 4, 4, 0.98));
}

.vehicle-modal-content {
  overflow: visible;
  padding: clamp(18px, 3vw, 34px);
}

.dyno-sheet {
  width: 100%;
  min-height: 0;
  transform: translateY(8px);
}

.vehicle-modal-detail-grid {
  gap: 16px;
}

.vehicle-modal-stage-panel,
.vehicle-modal-result-panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.modal-stage-picker {
  grid-template-columns: 1fr;
}

.modal-stage-picker button {
  min-height: 74px;
}

@media (max-width: 980px) {
  .vehicle-modal {
    padding-top: clamp(112px, 16vh, 148px);
    padding-inline: 16px;
  }

  .vehicle-modal-card {
    width: min(760px, 100%);
  }

  .vehicle-modal-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dyno-sheet {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .vehicle-modal {
    padding-top: 118px;
    padding-inline: 12px;
    padding-bottom: 24px;
  }

  .vehicle-modal-card {
    border-radius: 8px;
  }

  .vehicle-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .vehicle-modal-content {
    padding: 16px;
    gap: 20px;
  }

  .dyno-sheet {
    margin-top: 8px;
    transform: none;
    border-radius: 7px;
  }

  .dyno-corner {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 58px);
    gap: 1px;
    font-size: 0.46rem;
  }

  .dyno-run {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 0.8fr 1fr 1.25fr 1.25fr;
    font-size: 0.46rem;
  }

  .dyno-curve-layer {
    top: 17.5%;
    height: 50%;
  }

  .vehicle-modal-stage-panel,
  .vehicle-modal-result-panel {
    padding: 18px;
  }

  .modal-stage-picker button {
    min-height: 76px;
    padding: 12px 14px;
  }

  .vehicle-modal-content h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 420px) {
  .vehicle-modal {
    padding-top: 124px;
  }

  .vehicle-modal-content {
    padding: 14px;
  }

  .dyno-run {
    grid-template-columns: 0.72fr 0.95fr 1.28fr 1.28fr;
  }
}
