:root {
  --bg: #07080a;
  --bg-soft: #101216;
  --panel: #171a20;
  --text: #f6f7f9;
  --muted: #a9adb7;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e10600;
  --red-dark: #9b0505;
  --steel: #d7dbe2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

section[id],
main[id] {
  scroll-margin-top: 96px;
}

body.nav-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.2));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 10, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: clamp(126px, 15vw, 178px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
}

.language-toggle {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  min-width: 134px;
  padding: 0 32px 0 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.language-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.language-switcher.is-open .language-toggle::after {
  transform: translateY(-30%) rotate(225deg);
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(225, 6, 0, 0.72);
  background: rgba(225, 6, 0, 0.12);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.14), 0 14px 28px rgba(0, 0, 0, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.language-flag {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 4px 10px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.language-flag[data-language-flag="de"] {
  background: linear-gradient(180deg, #050505 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.language-flag[data-language-flag="ru"] {
  background: linear-gradient(180deg, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.language-flag[data-language-flag="en"] {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cpath fill='%23012169' d='M0 0h60v36H0z'/%3E%3Cpath stroke='%23fff' stroke-width='7.2' d='M0 0l60 36M60 0L0 36'/%3E%3Cpath stroke='%23c8102e' stroke-width='4.2' d='M0 0l60 36M60 0L0 36'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='M30 0v36M0 18h60'/%3E%3Cpath stroke='%23c8102e' stroke-width='7.2' d='M30 0v36M0 18h60'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.language-flag[data-language-flag="hy"] {
  background: linear-gradient(180deg, #d90012 0 33.33%, #0033a0 33.33% 66.66%, #f2a800 66.66% 100%);
}

.language-current {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 4;
  display: none;
  width: 184px;
  padding: 7px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 4px;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 0 11px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.language-option:hover,
.language-option[aria-selected="true"] {
  background: rgba(225, 6, 0, 0.2);
  color: #fff;
}

.language-select-native {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.google-translate-host,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
.goog-te-menu-frame,
iframe.skiptranslate,
body > .skiptranslate,
#goog-gt-tt,
.goog-te-gadget,
.goog-tooltip,
.goog-tooltip:hover {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html.translated-ltr,
html.translated-rtl,
body.translated-ltr,
body.translated-rtl,
body {
  top: 0 !important;
  margin-top: 0 !important;
}

.main-nav {
  position: fixed;
  top: 78px;
  right: clamp(18px, 4vw, 58px);
  z-index: 1;
  display: none;
  width: min(320px, calc(100vw - 28px));
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 12px;
  background: rgba(7, 8, 10, 0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.main-nav a {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a:last-child {
  border-bottom: 0;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(225, 6, 0, 0.2);
}

.legal-nav {
  justify-content: flex-start;
}

.legal-nav a {
  padding-inline: 16px;
}

.nav-toggle {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 0%, rgba(225, 6, 0, 0.34) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-115%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(225, 6, 0, 0.72);
  background: rgba(225, 6, 0, 0.12);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.14), 0 14px 28px rgba(0, 0, 0, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle:hover::before,
.nav-toggle:focus-visible::before {
  opacity: 1;
  transform: translateX(115%);
}

.nav-toggle:hover span,
.nav-toggle:focus-visible span {
  background: #fff;
}

body.nav-open .main-nav {
  display: flex;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 48px;
}

.hero.hero-compact {
  min-height: auto;
  align-items: start;
  padding-bottom: clamp(42px, 6vw, 70px);
}

.hero-media,
.fileservice-media {
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("hero-werkstatt-vam.jpeg?v=94");
  filter: saturate(1.05) contrast(1.12);
  transform: scale(1.02);
  overflow: clip;
  contain: paint;
}

.hero-media-video {
  background:
    radial-gradient(circle at 74% 38%, rgba(225, 6, 0, 0.18), transparent 32%),
    linear-gradient(105deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.78)),
    #07080a;
  background-image:
    radial-gradient(circle at 74% 38%, rgba(225, 6, 0, 0.18), transparent 32%),
    linear-gradient(105deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.78));
  background-color: #07080a;
  filter: none;
  transform: none;
}

.hero-media-video::before,
.hero-media-video::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-media-video::before {
  display: none;
}

.hero-media-video::after {
  z-index: 3;
  left: 0;
  right: 0;
  bottom: -2px;
  height: clamp(96px, 15vh, 170px);
  background: linear-gradient(180deg, rgba(7, 8, 10, 0), rgba(7, 8, 10, 0.48) 58%, rgba(7, 8, 10, 0.96));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.68) 36%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.68) 36%, #000 100%);
}

.hero-video-backdrop,
.hero-video-main,
.hero-video-crop {
  position: absolute;
  display: block;
  pointer-events: none;
}

.hero-video-backdrop::-webkit-media-controls,
.hero-video-crop::-webkit-media-controls,
.hero-video-backdrop::-webkit-media-controls-panel,
.hero-video-crop::-webkit-media-controls-panel,
.hero-video-backdrop::-webkit-media-controls-start-playback-button,
.hero-video-crop::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
  pointer-events: none;
}

.hero-video-backdrop {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 50%;
  filter: grayscale(0.68) brightness(0.74) saturate(0.48) contrast(1.02);
  opacity: 0.9;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-video-main {
  z-index: 1;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-video-crop {
  inset: 0;
  width: 100%;
  height: 100%;
  background: #050608;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.86) saturate(1.05) contrast(1.04);
  transform: none;
}

.hero-video-crop.hero-video-mobile {
  display: none;
}

.hero-video-crop.hero-video-desktop {
  display: block;
}

@keyframes mobileHeroFallbackPan {
  0%, 100% {
    transform: scale(1.12) translate3d(-3%, 0, 0);
  }

  50% {
    transform: scale(1.2) translate3d(3%, -1%, 0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.72) 40%, rgba(7, 8, 10, 0.22) 72%),
    linear-gradient(0deg, #07080a 0%, rgba(7, 8, 10, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 820px;
}

.hero-media-video ~ .hero-content {
  max-width: min(820px, 64vw);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: min(680px, 100%);
  color: var(--steel);
  font-size: 19px;
}

.hero-actions,
.contact-actions,
.fileservice-actions,
.configurator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  --button-x: 0px;
  --button-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 44px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  transform: translate3d(var(--button-x), var(--button-y), 0) skewX(-10deg);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 520ms ease,
    transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.26) 44%, transparent 58%),
    linear-gradient(135deg, rgba(225, 6, 0, 0.18), transparent 48%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.button::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: currentColor;
  opacity: 0.34;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: opacity 180ms ease, transform 220ms ease;
  pointer-events: none;
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, #ff211a 0%, var(--red) 45%, #8f0303 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(225, 6, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0f1115;
  color: #fff;
}

.button:hover:not(:disabled),
.button:focus-visible:not(:disabled) {
  --button-y: -2px;
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(225, 6, 0, 0.16);
  outline: none;
}

.button.primary:hover:not(:disabled),
.button.primary:focus-visible:not(:disabled) {
  box-shadow: 0 24px 52px rgba(225, 6, 0, 0.42), 0 0 0 3px rgba(225, 6, 0, 0.18);
}

.button:hover:not(:disabled)::before,
.button:focus-visible:not(:disabled)::before {
  opacity: 1;
  transform: translateX(120%);
}

.button:hover:not(:disabled)::after,
.button:focus-visible:not(:disabled)::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.button:active:not(:disabled) {
  --button-y: 0px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32), 0 0 0 2px rgba(225, 6, 0, 0.12);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  box-shadow: none;
}

.button:disabled::before,
.button:disabled::after {
  display: none;
}

.button.button--reveal {
  --button-x: -28px;
  --button-y: 18px;
  opacity: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button.button--reveal.is-visible {
  --button-x: 0px;
  --button-y: 0px;
  opacity: 1;
}

.button.button--reveal.is-visible:disabled {
  opacity: 0.46;
}

.section-dark,
.section-light,
.notice,
.contact {
  padding: clamp(70px, 9vw, 125px) clamp(18px, 5vw, 72px);
}

.section-dark {
  background: #07080a;
}

.section-light {
  background: #f4f5f7;
  color: #111318;
}

.section-grid,
.notice {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro-copy {
  color: var(--steel);
  font-size: 18px;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #0d0f13;
  border-block: 1px solid var(--line);
}

.service-band article {
  min-width: 0;
  min-height: 260px;
  padding: 34px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
  overflow-wrap: break-word;
}

.service-band span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-weight: 900;
}

.service-band p,
.stage-card p,
.fileservice-content p,
.notice p,
.contact-panel p {
  color: var(--muted);
}

.service-band h3 {
  overflow-wrap: break-word;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.configurator {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #07080a 0%, rgba(7, 8, 10, 0.92) 10%, rgba(7, 8, 10, 0.4) 28%, rgba(7, 8, 10, 0.04) 48%),
    radial-gradient(circle at 18% 30%, rgba(174, 18, 18, 0.22), rgba(132, 12, 12, 0.1) 24%, transparent 48%),
    radial-gradient(circle at 76% 36%, rgba(160, 16, 16, 0.1), transparent 34%),
    radial-gradient(circle at 86% 30%, rgba(215, 219, 226, 0.07), transparent 28%),
    linear-gradient(180deg, #07080a 0%, #10080a 42%, #050608 100%);
}

.configurator::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(7, 8, 10, 0.72) 0%, rgba(7, 8, 10, 0) 34%),
    radial-gradient(circle at 50% 36%, rgba(150, 16, 16, 0.1), transparent 42%);
  opacity: 0.72;
}

.configurator > * {
  position: relative;
}

.configurator-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  max-width: 1240px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .configurator-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tuning-form {
    grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
    align-items: end;
  }

  .tuning-form::before {
    grid-column: 1 / -1;
  }

  .select-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-column: 1;
  }

  .result-trigger {
    grid-column: 2;
    align-self: end;
    width: auto;
    min-width: 180px;
  }
}

.tuning-form,
.tuning-result {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(10, 12, 16, 0.9);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.tuning-result[hidden] {
  display: none !important;
}

.tuning-form {
  position: relative;
  overflow: hidden;
  display: grid;
  align-self: start;
  gap: 18px;
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(180deg, rgba(24, 27, 34, 0.96), rgba(8, 9, 13, 0.98));
}

.tuning-form::before {
  content: "Fahrzeugdaten";
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.tuning-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.68), rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.select-grid {
  counter-reset: config-step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.select-grid label {
  counter-increment: config-step;
  position: relative;
  display: grid;
  align-content: center;
  min-height: 72px;
  min-width: 0;
  padding: 12px 14px 12px 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 6, 10, 0.78);
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.select-grid label::before {
  content: "0" counter(config-step);
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(225, 6, 0, 0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.select-grid label:focus-within {
  border-color: rgba(225, 6, 0, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 10, 0.9);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.price-year-field[hidden],
.price-year-field.is-hidden {
  display: none;
}

.tuning-form input,
.tuning-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 2px solid rgba(225, 6, 0, 0.42);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    #06070a;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  padding: 0 38px 0 12px;
  outline: none;
  text-align: left;
  text-overflow: ellipsis;
}

.tuning-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.tuning-form input:focus,
.tuning-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.18);
}

.tuning-form select:disabled {
  color: #737780;
  cursor: not-allowed;
  opacity: 0.72;
}

.result-trigger {
  justify-self: start;
  width: 100%;
}

@media (min-width: 900px) {
  .tuning-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .tuning-form::before {
    grid-column: 1 / -1;
  }

  .select-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 210px));
    gap: 14px;
    justify-content: start;
  }

  .select-grid label {
    min-height: 68px;
    padding: 12px 13px 12px 48px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
      rgba(5, 6, 10, 0.82);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 12px 24px rgba(0, 0, 0, 0.24);
  }

  .select-grid label::after {
    content: "";
    position: absolute;
    left: 48px;
    right: 13px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
  }

  .tuning-form select {
    min-height: 42px;
    font-size: 12px;
  }

  .result-trigger {
    grid-column: auto;
    justify-self: start;
    width: auto;
    min-width: 190px;
  }
}

.tuning-result {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(22px, 3vw, 30px);
  scroll-margin-top: 112px;
  background:
    radial-gradient(circle at 80% 18%, rgba(225, 6, 0, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(18, 20, 26, 0.98), rgba(5, 6, 9, 0.98));
}

.tuning-result::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.tuning-result::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(18px, 3vw, 30px);
  width: 104px;
  height: 2px;
  background: rgba(225, 6, 0, 0.72);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.32);
  pointer-events: none;
}

.result-title {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-title span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-title h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.02em;
}

.stage-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 430px;
  margin: 0 0 18px;
}

.stage-choice {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(225, 6, 0, 0.48);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(7, 8, 11, 0.96);
  color: #fff;
  cursor: pointer;
  text-align: center;
  transform: skewX(-10deg);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.stage-choice span {
  display: block;
  transform: skewX(10deg);
}

.stage-choice span {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.stage-choice[data-stage-choice="stage2"] {
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.34), rgba(118, 3, 3, 0.58)),
    rgba(7, 8, 11, 0.96);
}

.stage-choice.is-active {
  border-color: rgba(225, 6, 0, 0.72);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.72), rgba(118, 3, 3, 0.96)),
    #08090c;
  box-shadow: 0 14px 34px rgba(225, 6, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: skewX(-10deg) translateY(-1px);
}

.stage-choice:hover,
.stage-choice:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  outline: none;
  transform: skewX(-10deg) translateY(-1px);
}

.stage-note {
  max-width: 640px;
  margin: 0 0 18px;
  padding: 13px 15px;
  border: 1px solid rgba(225, 6, 0, 0.42);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 8, 11, 0.86);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-bottom: 22px;
}

.power-tile:nth-child(2),
.power-tile:nth-child(4) {
  margin-top: 0;
}

.power-tile:nth-child(1) { order: 1; }
.power-tile:nth-child(3) { order: 2; }
.power-tile:nth-child(2) { order: 3; }
.power-tile:nth-child(4) { order: 4; }

.power-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 17px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    #08090c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.power-tile.stage-one {
  position: relative;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.36), rgba(8, 9, 12, 0.98) 56%),
    #08090c;
  box-shadow: inset 0 0 0 1px rgba(225, 6, 0, 0.42);
}

.power-tile.stage-one strong {
  color: #fff;
  text-shadow: 0 0 18px rgba(225, 6, 0, 0.5);
}

.power-tile.stage-one span {
  color: #fff;
}

.power-tile strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.power-tile span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gain-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  max-width: 640px;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--steel);
}

.gain-line strong {
  color: var(--red);
}

.price-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 24px;
  align-items: end;
  max-width: 640px;
  margin: 22px 0 24px;
  padding: 22px 24px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  border-left: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(225, 6, 0, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(225, 6, 0, 0.16), rgba(255, 255, 255, 0.055) 38%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(19, 21, 27, 0.98), rgba(7, 8, 11, 0.98));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.42), transparent);
  pointer-events: none;
}

.price-box::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(225, 6, 0, 0.24);
  transform: rotate(18deg);
  pointer-events: none;
}

.price-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 7px;
}

.price-copy span {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.price-copy strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px 14px;
  text-align: right;
}

.price-old {
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-row del {
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  font-weight: 900;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.price-row strong {
  color: #fff;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 0.92;
  text-shadow: 0 0 22px rgba(225, 6, 0, 0.34);
}

.price-row strong.price-request {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1;
}

.price-row sup {
  margin-left: 2px;
  color: var(--red);
  font-size: 0.5em;
}

.price-box small {
  position: relative;
  z-index: 1;
  display: block;
  grid-column: 1 / -1;
  max-width: 590px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(215, 219, 226, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.power-grid,
.stage-switch,
.stage-note,
.gain-line,
.price-box,
.result-actions {
  margin-right: min(390px, 34vw);
}

@media (min-width: 980px) {
  .tuning-result:not([hidden]) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    grid-template-areas:
      "title title"
      "stage visual"
      "note visual"
      "power visual"
      "gain-a price"
      "gain-b price"
      "actions price";
    gap: 18px 28px;
    align-items: start;
  }

  .tuning-result .result-title {
    grid-area: title;
    margin-bottom: 2px;
  }

  .tuning-result .stage-switch {
    grid-area: stage;
    align-self: start;
    margin-bottom: 0;
  }

  .tuning-result .stage-note {
    grid-area: note;
    margin-bottom: 0;
  }

  .tuning-result .power-grid {
    grid-area: power;
  }

  .tuning-result .gain-visuals {
    grid-area: visual;
  }

  .tuning-result .gain-line {
    grid-column: auto;
  }

  .tuning-result .gain-line.gain-hp {
    grid-area: gain-a;
  }

  .tuning-result .gain-line.gain-nm {
    grid-area: gain-b;
  }

  .tuning-result .price-box {
    grid-area: price;
  }

  .tuning-result .result-actions {
    grid-area: actions;
    align-self: end;
  }

  .power-grid,
  .stage-switch,
  .stage-note,
  .gain-line,
  .price-box,
  .result-actions {
    margin-right: 0;
  }

  .gain-visuals {
    float: none;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    justify-content: stretch;
    gap: 18px;
    margin: 4px 0 0;
  }

  .gain-wheel {
    align-content: start;
  }

  .wheel-tire {
    width: min(142px, 100%);
  }

  .price-box {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 14px;
    max-width: none;
    margin: 0;
    padding: 20px;
  }

  .price-row {
    justify-content: flex-start;
    text-align: left;
  }

  .price-row strong {
    font-size: clamp(42px, 4.2vw, 56px);
  }
}
.gain-visuals {
  float: right;
  display: grid;
  grid-template-columns: repeat(2, 180px);
  justify-content: end;
  gap: 22px;
  margin: 2px 4px 22px 34px;
}

.gain-wheel {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  isolation: isolate;
}

.gain-wheel::before,
.gain-wheel::after,
.wheel-smoke {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  filter: blur(7px);
  background:
    radial-gradient(circle, rgba(245, 247, 250, 0.55) 0 24%, rgba(150, 156, 166, 0.22) 42%, transparent 70%);
  animation: smoke-drift 2.7s ease-out var(--delay) 2;
}

.gain-wheel::before {
  width: 82px;
  height: 34px;
  left: 4%;
  bottom: 14px;
}

.gain-wheel::after {
  width: 62px;
  height: 28px;
  right: 8%;
  bottom: 24px;
  animation-delay: calc(var(--delay) + 240ms);
}

.wheel-smoke {
  width: 72px;
  height: 30px;
  left: 18%;
  top: 48%;
  animation-delay: calc(var(--delay) + 430ms);
}

.wheel-tire {
  position: relative;
  display: grid;
  place-items: center;
  width: 158px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle, #16181d 0 42%, #030406 43% 71%, #171a20 72% 100%);
  box-shadow:
    inset 0 0 0 9px #040506,
    inset 0 0 0 18px rgba(255, 255, 255, 0.05),
    0 16px 30px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(225, 6, 0, 0.22);
  animation: tire-spin 1.35s cubic-bezier(0.2, 0.85, 0.2, 1) var(--delay) 1 both;
}

.wheel-tire::before,
.wheel-tire::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.wheel-tire::before {
  inset: 12px;
  background: conic-gradient(var(--red) 0 var(--gain-angle), rgba(255, 255, 255, 0.16) var(--gain-angle) 360deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.wheel-tire::after {
  inset: 31px;
  background: #090a0e;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 18px rgba(0, 0, 0, 0.86);
}

.wheel-rim {
  position: absolute;
  inset: 31px;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f8fafc 0 10%, #111318 11% 22%, transparent 23%),
    repeating-conic-gradient(from 0deg, rgba(235, 239, 244, 0.94) 0 12deg, rgba(118, 126, 138, 0.26) 12deg 25deg);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.22),
    0 0 18px rgba(255, 255, 255, 0.22);
  animation:
    rim-spin 720ms linear var(--delay) 2 both,
    rim-dissolve 680ms ease-out calc(var(--delay) + 1.5s) forwards;
}

.wheel-rim::before {
  content: "";
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background: #050608;
  box-shadow: 0 0 0 5px rgba(245, 247, 250, 0.86);
}

 .gain-value {
  z-index: 3;
  display: grid;
  place-items: center;
  position: absolute;
  inset: 21.5%;
  width: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f5f6f8;
  color: #07080a;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.68);
  animation: gain-reveal 620ms ease-out calc(var(--delay) + 1.92s) forwards;
}

.gain-value strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
}

.gain-caption {
  display: block;
  margin-top: 12px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (min-width: 980px) {
  .tuning-result .gain-visuals {
    float: none;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    justify-content: stretch;
    gap: 18px;
    margin: 4px 0 0;
  }

  .tuning-result .wheel-tire {
    width: min(142px, 100%);
  }
}

@keyframes tire-spin {
  0% {
    transform: rotate(0deg) scale(0.96);
  }

  68% {
    transform: rotate(650deg) scale(1.04);
  }

  100% {
    transform: rotate(720deg) scale(1);
  }
}

@keyframes rim-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rim-dissolve {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: rotate(0deg) scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(10px);
    transform: rotate(120deg) scale(0.18);
  }
}

@keyframes gain-reveal {
  0% {
    opacity: 0;
    transform: scale(0.68);
  }

  72% {
    opacity: 1;
    transform: scale(1.08);
  }

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

@keyframes smoke-drift {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.45);
  }

  22% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(-36px, -26px, 0) scale(1.55);
  }
}

.config-note {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.stage-card {
  min-height: 320px;
  padding: 28px;
  background: #fff;
  border: 1px solid #d9dde5;
  box-shadow: 0 12px 40px rgba(9, 12, 18, 0.08);
}

.stage-card.featured {
  background: #111318;
  color: #fff;
  border-color: #111318;
  box-shadow: var(--shadow);
}

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

.reviews .button {
  margin-top: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

.review-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #101216;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.review-card.featured-review {
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.18), rgba(16, 18, 22, 0.98) 48%),
    #101216;
  border-color: rgba(225, 6, 0, 0.45);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.review-head span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  transform: skewX(-10deg);
}

.review-head strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

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

.stars {
  margin-bottom: 18px;
  color: #ffbf2f;
  font-size: 22px;
  letter-spacing: 0;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
}

.contact-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
}

.contact-location-info {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.location-copy {
  align-self: center;
}

.location-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #3b4049;
  font-size: 18px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.map-frame {
  position: relative;
  min-height: 430px;
  border: 1px solid #d3d7df;
  background: #111318;
  box-shadow: 0 20px 60px rgba(9, 12, 18, 0.14);
  overflow: hidden;
}

.map-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.map-card {
  position: absolute;
  left: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  max-width: min(420px, calc(100% - 36px));
  padding: 18px 22px;
  background: rgba(7, 8, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card strong {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.map-card span {
  margin-top: 6px;
  font-size: clamp(15px, 1.8vw, 20px);
}

.contact-form-panel {
  scroll-margin-top: 120px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(7, 8, 10, 0.98));
  color: #fff;
  box-shadow: 0 22px 70px rgba(9, 12, 18, 0.18);
}

.contact-form-panel p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form label span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--red);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.1), transparent 46%),
    #06070a;
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: 0;
}

.contact-form input {
  min-height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.18);
}

.form-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.form-consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  accent-color: var(--red);
}

.form-consent span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.form-consent a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
}

.contact-form-status.is-visible {
  display: block;
}

.contact-form-status.is-success {
  border-color: rgba(45, 212, 120, 0.5);
  background: rgba(45, 212, 120, 0.12);
}

.contact-form-status.is-error {
  border-color: rgba(225, 6, 0, 0.55);
  background: rgba(225, 6, 0, 0.14);
}

@media (min-width: 921px) {
  .contact-form {
    flex: 1;
    gap: clamp(20px, 1.8vw, 28px);
  }

  .contact-form-grid {
    gap: clamp(16px, 1.55vw, 24px);
  }

  .contact-form input {
    min-height: 52px;
  }

  .contact-form textarea {
    min-height: 166px;
  }
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mail-link.dark-link {
  color: #111318;
}

.stage-top {
  display: grid;
  gap: 8px;
  margin-bottom: 72px;
}

.stage-top span {
  color: var(--red);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.stage-top strong {
  text-transform: uppercase;
}

.fileservice {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 720px;
  background: #090a0d;
}

.fileservice-media {
  min-height: 520px;
  min-width: 0;
  background-color: #050607;
  background-image:
    linear-gradient(90deg, rgba(7, 8, 10, 0.16), rgba(7, 8, 10, 0.02)),
    url("fileservice-split.png?v=94");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.fileservice-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(38px, 5.6vw, 76px);
}

.fileservice-content h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.45vw, 48px);
  line-height: 1.05;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.fileservice-content p {
  max-width: 720px;
}

.seo-hub,
.seo-page-section {
  position: relative;
  overflow: hidden;
}

.seo-hub::before,
.seo-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 6, 0, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 42%);
}

.seo-hub > *,
.seo-page-section > * {
  position: relative;
  z-index: 1;
}

.seo-hub .section-grid > *,
.seo-page-copy > *,
.seo-page-hero > div {
  min-width: 0;
  max-width: 100%;
}

.seo-hub h2,
.seo-page-hero h1,
.seo-page-copy h2 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.seo-hub .section-grid,
.seo-page-copy {
  display: grid;
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.8vw, 32px);
  align-items: start;
}

.seo-hub h2 {
  max-width: 980px;
  font-size: clamp(32px, 3.25vw, 46px);
  line-height: 1.08;
}

.seo-hub .intro-copy,
.seo-page-copy > div:last-child {
  max-width: 860px;
}

.seo-link-grid,
.faq-grid,
.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(32px, 5vw, 56px);
  background: transparent;
  border: 0;
}

.seo-link-grid article,
.seo-topic-grid article,
.faq-grid details {
  min-width: 0;
  min-height: 0;
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(16, 18, 22, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-link-grid span,
.seo-topic-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.seo-link-grid h3,
.seo-topic-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.16;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.seo-link-grid p,
.seo-topic-grid p,
.faq-grid p,
.seo-page-copy p {
  color: var(--steel);
}

.seo-link-grid a,
.seo-page-copy a {
  display: inline-flex;
  margin-top: 14px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-link-grid a:hover,
.seo-page-copy a:hover {
  color: var(--red);
}

.seo-more {
  max-width: 980px;
  margin: 26px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-more summary {
  cursor: pointer;
  padding: 18px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.seo-more summary::marker {
  color: var(--red);
}

.seo-more-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 0 0 20px;
}

.seo-more-links a {
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-more-links a:hover {
  color: var(--red);
}

.faq-block {
  margin-top: clamp(42px, 7vw, 82px);
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading.compact h2 {
  max-width: 920px;
}

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

.faq-grid details {
  min-height: 0;
}

.faq-grid summary {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.faq-grid summary::marker {
  color: var(--red);
}

.faq-grid p {
  margin-top: 14px;
}

.seo-page {
  min-height: 100vh;
  background: #07080a;
  color: #fff;
}

.seo-page-hero {
  position: relative;
  display: grid;
  min-height: auto;
  align-items: center;
  overflow: hidden;
  padding: clamp(150px, 15vw, 190px) clamp(18px, 5vw, 72px) clamp(76px, 8vw, 108px);
  background:
    linear-gradient(105deg, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.74) 46%, rgba(7, 8, 10, 0.36) 100%),
    linear-gradient(0deg, #07080a 0%, rgba(7, 8, 10, 0) 42%),
    url("hero-werkstatt-vam.jpeg?v=94") center / cover no-repeat;
}

.seo-page-hero h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.05;
  text-transform: uppercase;
}

.seo-page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--steel);
  font-size: 20px;
}

.seo-page-copy h2 {
  max-width: 920px;
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.07;
}

.seo-page-copy .check-list {
  margin-top: 0;
}

.partner-page {
  min-height: 100vh;
  overflow: hidden;
  background: #07080a;
  color: #fff;
}

.partner-hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 54px;
}

.partner-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("fileservice-split.png?v=94");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.1);
}

.partner-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.75) 44%, rgba(7, 8, 10, 0.34) 100%),
    linear-gradient(0deg, #07080a 0%, rgba(7, 8, 10, 0) 40%),
    repeating-linear-gradient(135deg, rgba(225, 6, 0, 0.13) 0 2px, transparent 2px 18px);
}

.partner-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 930px;
}

.partner-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.98;
  text-transform: uppercase;
}

.partner-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--steel);
  font-size: 20px;
}

.partner-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner-stats span {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: rgba(12, 14, 18, 0.78);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.partner-stats strong {
  color: #fff;
  font-size: 20px;
}

.partner-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.partner-split > *,
.motorsport-split > *,
.partner-copy,
.motorsport-copy {
  min-width: 0;
  max-width: 100%;
}

.partner-split h2 {
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.02;
}

.partner-copy {
  color: var(--steel);
  font-size: 18px;
}

.partner-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #0d0f13;
  border-block: 1px solid var(--line);
}

.partner-process article {
  min-height: 280px;
  padding: 34px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

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

.partner-process span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--red);
  font-weight: 900;
}

.partner-process p {
  color: var(--muted);
}

.partner-benefits {
  position: relative;
  scroll-margin-top: 110px;
}

.partner-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner-benefit-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #111318;
}

.partner-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.22);
  transform: skewX(-12deg);
}

.partner-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transform: skewX(12deg);
}

.partner-benefit-grid h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.partner-benefit-grid p {
  color: var(--muted);
  font-size: 16px;
}

.partner-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #f4f5f7;
  color: #111318;
}

.partner-cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.4vw, 58px);
}

.partner-cta-band .eyebrow {
  margin-bottom: 10px;
}

.partner-footer {
  background: #07080a;
}

.motorsport-page {
  min-height: 100vh;
  overflow: hidden;
  background: #07080a;
  color: #fff;
}

.motorsport-hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 54px;
}

.motorsport-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("audi-rs6-c7-dyno.jpeg?v=94");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.12);
}

.motorsport-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.76) 45%, rgba(7, 8, 10, 0.34) 100%),
    linear-gradient(0deg, #07080a 0%, rgba(7, 8, 10, 0) 42%),
    repeating-linear-gradient(135deg, rgba(225, 6, 0, 0.13) 0 2px, transparent 2px 18px);
}

.motorsport-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 950px;
}

.motorsport-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.98;
  text-transform: uppercase;
}

.motorsport-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--steel);
  font-size: 20px;
}

.motorsport-flags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 840px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.motorsport-flags span {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: rgba(12, 14, 18, 0.82);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.motorsport-flags strong {
  color: #fff;
  font-size: 20px;
}

.motorsport-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.motorsport-split h2 {
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.02;
}

.motorsport-copy {
  color: var(--steel);
  font-size: 18px;
}

.motorsport-note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.motorsport-note-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  gap: 14px;
  padding: 30px clamp(18px, 3vw, 34px);
  background: #111318;
}

.motorsport-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.22);
  transform: skewX(-12deg);
}

.motorsport-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transform: skewX(12deg);
}

.motorsport-note-grid h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.motorsport-note-grid p {
  color: var(--muted);
  font-size: 16px;
}

.motorsport-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(70px, 9vw, 125px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(225, 6, 0, 0.16), transparent 34%),
    #07080a;
  border-bottom: 1px solid var(--line);
}

.motorsport-stage h2 {
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.02;
}

.motorsport-stage-list {
  display: grid;
  gap: 14px;
}

.motorsport-stage-list div {
  padding: 22px 24px;
  background: #111318;
  border-left: 5px solid var(--red);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.motorsport-stage-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

.motorsport-stage-list p {
  margin: 0;
  color: var(--muted);
}

.motorsport-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #f4f5f7;
  color: #111318;
}

.motorsport-cta h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.4vw, 58px);
}

.motorsport-cta .eyebrow {
  margin-bottom: 10px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--steel);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--red);
  transform: skewX(-14deg);
}

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

.contact {
  background:
    linear-gradient(100deg, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.68) 42%, rgba(7, 8, 10, 0.18) 100%),
    url("audi-rs6-c7-dyno.jpeg?v=94") center/cover;
}

.contact-panel {
  max-width: 760px;
}

.mail-link {
  display: inline-block;
  margin-top: 22px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #050608;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer__brand {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__brand sup {
  font-size: 0.68em;
  line-height: 0;
}

.site-footer__meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__links a {
  color: #fff;
  font-weight: 800;
}

.site-footer__contact {
  color: var(--muted);
  font-size: 12px;
}

.site-footer__contact span {
  display: inline;
}

.site-footer__credit {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.legal-page {
  position: relative;
  min-height: 100vh;
  padding: clamp(128px, 11vw, 168px) clamp(18px, 5vw, 72px) clamp(70px, 8vw, 110px);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #101217 0%, #07080a 46%, #050608 100%);
  overflow: clip;
}

.legal-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) 0 0/42px 42px,
    linear-gradient(135deg, transparent 74%, rgba(225, 6, 0, 0.12) 74%) 0 0/42px 42px;
  opacity: 0.28;
  pointer-events: none;
}

.legal-page > .eyebrow,
.legal-page > h1,
.legal-content {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-page h1 {
  max-width: 1240px;
  font-size: clamp(42px, 5.25vw, 74px);
  line-height: 0.98;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.legal-content {
  margin-top: clamp(26px, 4vw, 42px);
  padding: clamp(28px, 3.4vw, 50px) clamp(24px, 4.4vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--red);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.08), transparent 34%),
    rgba(8, 9, 12, 0.78);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
  color: var(--steel);
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  max-width: 1040px;
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.72;
}

.legal-content a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.privacy-copy {
  margin: 0;
  white-space: pre-wrap;
  color: var(--steel);
  font: inherit;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: clamp(14px, 3vw, 34px);
  z-index: 80;
  display: grid;
  gap: 18px;
  width: min(960px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.18), transparent 34%),
    rgba(7, 8, 10, 0.97);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  color: #fff;
  overflow: auto;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent.is-hiding {
  opacity: 0;
  transform: translate(-50%, 12px);
}

.cookie-consent__intro {
  min-width: 0;
}

.cookie-consent__intro span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-consent__intro h2 {
  margin: 4px 0 8px;
  font-size: clamp(28px, 3vw, 42px);
}

.cookie-consent__intro p {
  margin: 0;
  color: var(--steel);
  font-size: 16px;
  line-height: 1.55;
}

.cookie-consent__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.cookie-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
}

.cookie-option input:disabled {
  opacity: 0.8;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-option small {
  margin-top: 6px;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent__privacy {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent__actions .button {
  min-width: 170px;
}

.cookie-consent__actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.cookie-consent__actions .button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 920px) {
  .main-nav {
    top: 70px;
    right: 14px;
  }

  .hero {
    min-height: 840px;
  }

  .section-grid,
  .notice,
  .location,
  .contact-location,
  .fileservice,
  .partner-split,
  .partner-process,
  .partner-benefit-grid,
  .partner-cta-band,
  .motorsport-split,
  .motorsport-note-grid,
  .motorsport-stage,
  .motorsport-cta,
  .review-grid,
  .seo-page-copy,
  .stage-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-hub .section-grid,
  .seo-page-copy {
    grid-template-columns: 1fr;
  }

.configurator-shell {
    max-width: none;
  }

  .select-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 112px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle {
    height: 42px;
    min-width: 106px;
    padding: 0 28px 0 10px;
  }

  .language-flag {
    width: 20px;
    height: 14px;
  }

  .language-current {
    font-size: 11px;
  }

  .language-menu {
    width: 172px;
  }

  .language-option {
    min-height: 38px;
    font-size: 11px;
  }

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

  .contact-form-panel {
    padding: 22px;
  }

  .hero {
    min-height: 780px;
    padding-top: 104px;
  }

  .hero.hero-compact {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-video-main {
    top: 106px;
    right: 18px;
    bottom: 30px;
    width: min(42vw, 340px);
    min-width: 210px;
  }

  h1 {
    font-size: 46px;
  }

  .hero h1 {
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.08;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    padding-inline: 12px;
    width: min(100%, 330px);
  }

  .hero-actions .button {
    width: 100%;
  }

  h2,
  h3,
  .section-heading h2,
  .stage-card strong,
  .site-footer__brand,
  .site-footer__contact {
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
  }

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

  .power-tile:nth-child(1) { order: 1; }
  .power-tile:nth-child(3) { order: 2; }
  .power-tile:nth-child(2) { order: 3; }
  .power-tile:nth-child(4) { order: 4; }

  .power-tile:nth-child(2),
  .power-tile:nth-child(4) {
    margin-top: 0;
  }

  .power-grid,
  .stage-switch,
  .stage-note,
  .gain-line,
  .price-box,
  .result-actions {
    margin-right: 0;
  }

  .tuning-form,
  .tuning-result {
    width: 100%;
    max-width: 100%;
  }

  .gain-visuals {
    float: none;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 124px));
    justify-content: center;
    gap: 14px;
    margin: 18px 0 20px;
  }

  .tuning-result {
    display: flex;
    flex-direction: column;
  }

  .gain-visuals {
    order: 4;
  }

  .price-box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px 16px;
    order: 5;
  }

  .price-row {
    justify-content: flex-start;
    text-align: left;
  }

  .price-row strong {
    font-size: clamp(38px, 12vw, 48px);
  }

  .result-actions {
    order: 6;
  }

  .wheel-tire {
    width: min(116px, 100%);
  }

  .gain-caption {
    font-size: 10px;
  }

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

  .result-trigger {
    width: 100%;
  }

  .select-grid label {
    min-height: 72px;
  }

  .service-band,
  .partner-stats,
  .motorsport-flags,
  .partner-process,
  .partner-benefit-grid,
  .motorsport-note-grid,
  .seo-link-grid,
  .seo-topic-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .motorsport-hero,
  .partner-hero,
  .seo-page-hero {
    min-height: auto;
    padding: 116px 22px 48px;
  }

  .motorsport-hero h1,
  .partner-hero h1,
  .seo-page-hero h1 {
    font-size: clamp(25px, 6.6vw, 30px);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .fileservice-content h2,
  .seo-hub h2,
  .seo-page-copy h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.12;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .seo-page-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-page-hero .button {
    width: 100%;
    max-width: 330px;
  }

  .legal-page h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.06;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-media-video {
    background-image:
      linear-gradient(105deg, rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0.42)),
      url("audi-rs6-c7-dyno.jpeg");
    background-position: center;
    background-size: cover;
  }

  .hero-media-video::before {
    display: block;
    z-index: 0;
    inset: 0;
    width: auto;
    height: auto;
    background:
      linear-gradient(105deg, rgba(7, 8, 10, 0.42), rgba(7, 8, 10, 0.22)),
      url("audi-rs6-c7-dyno.jpeg") center / cover no-repeat;
    filter: brightness(0.56) saturate(0.88) contrast(1.05);
    opacity: 0.92;
    transform: none;
    animation: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-media-video::after {
    display: block;
    z-index: 1;
    inset: 0;
    width: auto;
    height: auto;
    background:
      linear-gradient(100deg, rgba(7, 8, 10, 0.94) 0%, rgba(7, 8, 10, 0.64) 54%, rgba(7, 8, 10, 0.22) 100%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-video-main {
    z-index: 2;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
    opacity: 0;
    clip-path: none;
    box-shadow: none;
    transition: opacity 240ms ease;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-media-video.is-video-playing .hero-video-main {
    opacity: 0.86;
  }

  .hero-video-crop {
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: brightness(0.82) saturate(1.02) contrast(1.04);
    transform: none;
  }

  .hero-video-crop.hero-video-mobile {
    display: block;
  }

  .hero-video-crop.hero-video-desktop {
    display: none;
  }

  .hero-media-video ~ .hero-content {
    max-width: 820px;
  }

  .hero-video-backdrop {
    display: none;
  }

  .motorsport-split,
  .motorsport-stage,
  .partner-benefits,
  .partner-split {
    padding-inline: 22px;
  }


  .service-band article,
  .partner-process article,
  .partner-benefit-grid article,
  .motorsport-note-grid article,
  .seo-link-grid article,
  .seo-topic-grid article {
    min-height: 0;
  }

  .stage-card {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 22px 18px 24px;
    text-align: center;
  }

  .site-footer__meta {
    width: 100%;
    gap: 14px;
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand {
    width: 100%;
    color: #fff;
    font-size: 11px;
    line-height: 1.35;
  }

  .site-footer__brand::before {
    display: none;
  }

  .site-footer__links {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .site-footer__links a {
    display: inline-flex;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-color: rgba(225, 6, 0, 0.5);
    text-underline-offset: 4px;
  }

  .site-footer__links a[href*="#leistungen"],
  .site-footer__links a[href*="#kontakt"] {
    display: none;
  }

  .site-footer__contact {
    display: grid;
    gap: 6px;
    justify-items: center;
    width: 100%;
    line-height: 1.4;
  }

  .site-footer__contact span {
    display: none;
  }

  .site-footer__contact a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(225, 6, 0, 0.28);
    background: rgba(225, 6, 0, 0.08);
    color: #fff;
    font-weight: 900;
  }

  .site-footer__credit {
    display: block;
    color: rgba(169, 173, 183, 0.84);
    font-size: 10px;
    letter-spacing: 0.03em;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-consent__options {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .cookie-consent__actions .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 6px;
    padding-inline: 10px;
  }

  .brand-logo {
    width: 96px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-toggle {
    height: 40px;
    min-width: 96px;
    padding: 0 24px 0 8px;
  }

  .language-toggle::after {
    right: 9px;
    width: 6px;
    height: 6px;
  }

  .language-flag {
    width: 18px;
    height: 13px;
  }

  .language-current {
    font-size: 10px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-toggle span {
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::before,
  .button::after,
  .language-toggle,
  .nav-toggle,
  .nav-toggle::before,
  .nav-toggle span,
  .wheel-tire,
  .wheel-rim,
  .gain-value,
  .gain-wheel::before,
  .gain-wheel::after,
  .wheel-smoke {
    animation: none;
    transition: none;
  }

  .button:hover:not(:disabled),
  .button:focus-visible:not(:disabled),
  .button:active:not(:disabled) {
    transform: skewX(-10deg);
  }

  .language-toggle:hover,
  .language-toggle:focus-visible,
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: none;
  }

  .button.button--reveal {
    --button-x: 0px;
    --button-y: 0px;
    opacity: 1;
  }

  .wheel-rim {
    opacity: 0;
    transform: scale(0.2);
  }

  .gain-value {
    opacity: 1;
    transform: none;
  }
}
