: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 {
  scroll-behavior: smooth;
}

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

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;
}

.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: 14px;
  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;
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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;
  background-image: url("assets/hero-werkstatt-vam.jpeg");
  filter: saturate(1.05) contrast(1.12);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  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%),
    repeating-linear-gradient(135deg, rgba(225, 6, 0, 0.14) 0 2px, transparent 2px 18px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

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

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

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: 680px;
  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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  transform: skewX(-10deg);
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 38px rgba(225, 6, 0, 0.28);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  border-color: var(--line);
  background: #0f1115;
}

.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-height: 260px;
  padding: 34px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.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);
}

.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;
}

.configurator::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(225, 6, 0, 0.16), transparent 36%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px);
}

.configurator > * {
  position: relative;
}

.configurator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.tuning-form,
.tuning-result {
  border: 1px solid var(--line);
  background: rgba(15, 17, 21, 0.9);
  box-shadow: var(--shadow);
}

.tuning-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 36px);
}

.tuning-form label {
  display: grid;
  gap: 10px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tuning-form input,
.tuning-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #08090c;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 0 16px;
  outline: none;
}

.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: #70747e;
  cursor: not-allowed;
}

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

.tuning-result {
  min-height: 338px;
  padding: clamp(24px, 4vw, 36px);
}

.result-empty {
  display: grid;
  align-content: center;
  min-height: 100%;
  color: var(--muted);
}

.result-empty span {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.result-title {
  margin-bottom: 24px;
}

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

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

.power-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}

.power-tile {
  padding: 18px;
  background: #08090c;
}

.power-tile strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

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

.gain-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--steel);
}

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

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.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;
}

.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);
}

.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;
  background-color: #050607;
  background-image:
    linear-gradient(90deg, rgba(7, 8, 10, 0.16), rgba(7, 8, 10, 0.02)),
    url("assets/fileservice-split.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.fileservice-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 86px);
}

.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("assets/fileservice-split.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.1);
  transform: scale(1.02);
}

.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;
  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: 18px;
  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 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("assets/audi-rs6-c7-dyno.jpeg");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.12);
  transform: scale(1.02);
}

.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;
  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: 18px;
  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("assets/audi-rs6-c7-dyno.jpeg") 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;
  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: 14px;
}

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

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

.legal-page {
  min-height: 80vh;
  padding-top: 140px;
}

.legal-page h1 {
  font-size: clamp(46px, 7vw, 88px);
}

.legal-content {
  max-width: 920px;
  color: var(--steel);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 22px;
}

.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;
}

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

  .hero {
    min-height: 840px;
  }

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

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

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

@media (max-width: 620px) {
  .brand-logo {
    width: 112px;
  }

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

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

  h1 {
    font-size: 46px;
  }

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

  .motorsport-hero,
  .partner-hero {
    min-height: 820px;
    padding: 110px 22px 42px;
  }

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

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

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

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

  .site-footer {
    flex-direction: column;
  }
}
