/* ============================================================
   AW FAHRZEUGAUFBEREITUNG — „Xenonschnitt"
   Nachtschwarz + Xenon-Violett · Big Shoulders Display / Archivo
   ============================================================ */

:root {
  --night:    oklch(0.09 0 0);
  --night-2:  oklch(0.13 0.008 275);
  --night-3:  oklch(0.17 0.012 275);
  --beam:     oklch(0.80 0.11 275);
  --beam-hot: oklch(0.92 0.05 275);
  --xenon:    oklch(0.55 0.22 275);
  --xenon-deep: oklch(0.38 0.16 275);
  --ink:      oklch(0.96 0.005 275);
  --ink-body: oklch(0.84 0.01 275);
  --ink-dim:  oklch(0.70 0.015 275);
  --line:     oklch(0.28 0.02 275);
  --ok:       oklch(0.78 0.14 155);

  --font-display: "Big Shoulders Display", "Archivo", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;

  --space-s: clamp(1rem, 2vw, 1.5rem);
  --space-m: clamp(2rem, 4vw, 3.5rem);
  --space-l: clamp(4rem, 9vw, 8rem);
  --space-xl: clamp(6rem, 13vw, 12rem);

  --z-nav: 100;
  --z-overlay: 200;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--night);
  color: var(--ink-body);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--beam); text-decoration: none; }
a:hover { color: var(--beam-hot); }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 750;
}
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--beam-hot);
  text-shadow: 0 0 30px oklch(0.80 0.11 275 / 0.55);
}

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

::selection { background: var(--xenon); color: var(--ink); }

.wrap { width: min(1180px, 100% - clamp(2.5rem, 6vw, 5rem)); margin-inline: auto; }

/* ---------- Nav ---------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  padding: 0.9rem 0;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled {
  background: oklch(0.09 0 0 / 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo__img { height: clamp(2.2rem, 4vw, 2.7rem); width: auto; display: block; }
.nav .logo__word {
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.03em; color: var(--ink-dim); line-height: 1.2; white-space: nowrap;
}

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); list-style: none; }
.nav__links a {
  color: var(--ink-body); font-weight: 500; font-size: 0.95rem;
  padding: 0.3rem 0;
}
.nav__links a:hover { color: var(--beam-hot); }
.nav__links a.is-cta {
  background: var(--xenon); color: var(--ink);
  padding: 0.55rem 1.15rem; border-radius: 999px; font-weight: 600;
  box-shadow: 0 0 22px oklch(0.55 0.22 275 / 0.45);
  transition: box-shadow 0.3s, transform 0.3s;
}
.nav__links a.is-cta:hover { box-shadow: 0 0 34px oklch(0.55 0.22 275 / 0.7); transform: translateY(-1px); }

.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: calc(var(--z-overlay) + 1);
}
.nav__burger span {
  display: block; width: 26px; height: 2px; background: var(--ink);
  margin: 6px auto; transition: transform 0.35s, opacity 0.35s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; inset: 0; z-index: var(--z-overlay);
    flex-direction: column; justify-content: center; gap: 2.2rem;
    background: oklch(0.09 0 0 / 0.97); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; font-weight: 700; }
  .nav__links a.is-cta { font-size: 1.2rem; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.95rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.25s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.btn--beam {
  background: var(--xenon); color: var(--ink);
  box-shadow: 0 0 28px oklch(0.55 0.22 275 / 0.5);
}
.btn--beam:hover { color: var(--ink); box-shadow: 0 0 44px oklch(0.55 0.22 275 / 0.75); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: oklch(0.13 0.008 275 / 0.4); }
.btn--ghost:hover { border-color: var(--beam); color: var(--beam-hot); }
.btn--wa { background: oklch(0.62 0.17 155); color: oklch(0.13 0.03 155); }
.btn--wa:hover { background: oklch(0.68 0.17 155); color: oklch(0.13 0.03 155); transform: translateY(-2px); }
.btn svg { flex: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(3rem, 7vh, 5rem);
  isolation: isolate; overflow: clip;
}
.hero__bg, .hero__bg img { position: absolute; inset: 0; z-index: -3; height: 100%; width: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--night) 4%, oklch(0.09 0 0 / 0.55) 45%, oklch(0.09 0 0 / 0.75) 100%),
    oklch(0.20 0.05 275 / 0.25);
}

.quickcontact {
  display: flex; flex-direction: column; gap: 0.7rem;
  position: fixed; right: 1rem; top: 50%; translate: 0 -50%; z-index: 95;
}
.quickcontact__btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(0.09 0 0 / 0.65); backdrop-filter: blur(6px);
  border: 1px solid var(--line); box-shadow: 0 4px 18px oklch(0 0 0 / 0.4);
  transition: transform 0.25s, border-color 0.25s;
}
.quickcontact__btn:hover, .quickcontact__btn:active { transform: scale(1.08); }
.quickcontact__btn--wa { color: oklch(0.78 0.17 148); }
.quickcontact__btn--insta { color: oklch(0.72 0.19 350); }
@media (max-width: 760px) {
  .quickcontact { right: 0.7rem; }
  .quickcontact__btn { width: 42px; height: 42px; }
}

.beam {
  position: absolute; z-index: -2; pointer-events: none;
  width: 130vmax; height: 130vmax; left: 50%; top: 58%;
  translate: -50% -50%;
  background: conic-gradient(from 258deg at 50% 50%,
    transparent 0deg,
    oklch(0.80 0.11 275 / 0.22) 8deg,
    oklch(0.92 0.05 275 / 0.38) 12deg,
    oklch(0.80 0.11 275 / 0.22) 16deg,
    transparent 24deg);
  filter: blur(6px);
  mix-blend-mode: screen;
}
.beam--2 { rotate: 14deg; opacity: 0.5; }

.hero__content { position: relative; }
.hero__kicker {
  font-weight: 600; color: var(--beam); font-size: 1.05rem; letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(3rem, 9.5vw, 6rem);
  max-width: 12ch;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero h1 em {
  font-style: normal; color: var(--beam-hot);
  text-shadow: 0 0 34px oklch(0.80 0.11 275 / 0.65);
}
.hero__sub { max-width: 52ch; margin: 1.6rem 0 2.4rem; font-size: 1.1rem; color: var(--ink-body); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__meta {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid oklch(0.28 0.02 275 / 0.6);
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  font-size: 0.92rem; color: var(--ink-dim);
}
.hero__meta strong { color: var(--ink); font-weight: 600; display: block; font-size: 1rem; }

/* ---------- Sections ---------- */

.section { padding: var(--space-xl) 0; position: relative; }
.section--tight { padding: var(--space-l) 0; }
.section--panel { background: var(--night-2); }

.section-head { max-width: 62ch; margin-bottom: var(--space-m); }
.section-head h2 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); margin-bottom: 1rem; }
.section-head h2 em { font-style: normal; color: var(--beam-hot); }
.section-head p { color: var(--ink-body); max-width: 58ch; }

/* ---------- Problem / Nacht ---------- */

.problem { display: grid; gap: var(--space-m); grid-template-columns: 1.1fr 0.9fr; align-items: center; }
@media (max-width: 900px) { .problem { grid-template-columns: 1fr; } }
.problem__media { position: relative; border-radius: 14px; overflow: hidden; }
.problem__media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.problem__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 40%, oklch(0.09 0 0 / 0.55));
}
.problem__list { list-style: none; display: grid; gap: 1.3rem; margin-top: 1.8rem; }
.problem__list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.problem__list svg { margin-top: 0.35rem; color: var(--beam); }
.problem__list strong { color: var(--ink); display: block; }

/* ---------- Festpreis Scheinwerfer ---------- */

.price-stage { position: relative; overflow: clip; }
.price-stage .beam { top: -20%; left: 18%; opacity: 0.35; }

.pricegrid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem; margin-block: var(--space-m);
}
.pricecard {
  border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: linear-gradient(170deg, var(--night-3), var(--night-2) 70%);
  position: relative; overflow: hidden;
}
.pricecard--hot { border-color: oklch(0.55 0.22 275 / 0.8); box-shadow: 0 0 44px oklch(0.55 0.22 275 / 0.22); }
.pricecard__tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--beam-hot); border: 1px solid oklch(0.55 0.22 275 / 0.6);
  padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.pricecard h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.pricecard .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 4.6rem); color: var(--ink); line-height: 1;
}
.pricecard .num sup { font-size: 0.4em; color: var(--beam); }
.pricecard p { color: var(--ink-body); font-size: 0.98rem; }

.hinweis {
  border: 1px solid oklch(0.75 0.14 85 / 0.5);
  background: oklch(0.75 0.14 85 / 0.07);
  border-radius: 12px; padding: 1.2rem 1.4rem;
  display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start;
  font-size: 0.97rem; max-width: 62ch;
}
.hinweis svg { color: oklch(0.8 0.14 85); margin-top: 0.2rem; }
.hinweis strong { color: var(--ink); }

/* ---------- Vorher / Nachher ---------- */

.ba {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 16 / 9; max-height: 640px; width: 100%;
  touch-action: none; user-select: none;
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .ba { aspect-ratio: 4 / 5; } }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--split, 50%)); }
.ba__label {
  position: absolute; top: 1rem; z-index: 3;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.1em; padding: 0.35rem 0.9rem; border-radius: 999px;
  background: oklch(0.09 0 0 / 0.65); backdrop-filter: blur(6px); color: var(--ink);
}
.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; color: var(--beam-hot); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--split, 50%); z-index: 4;
  width: 2px; background: var(--beam-hot);
  box-shadow: 0 0 18px oklch(0.80 0.11 275 / 0.9);
  cursor: ew-resize;
}
.ba__handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%;
  translate: -50% -50%;
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--xenon); color: var(--ink);
  font-size: 0.8rem; letter-spacing: 0.05em;
  box-shadow: 0 0 30px oklch(0.55 0.22 275 / 0.8);
}
.ba input[type="range"] {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}

/* ---------- Leistungen ---------- */

.leistungen-kat { border-bottom: 1px solid var(--line); }
.leistungen-kat:first-of-type { border-top: 1px solid var(--line); }
.leistungen-kat summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: clamp(1.1rem, 2.5vw, 1.5rem) 0.4rem;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem); letter-spacing: 0.08em; color: var(--beam-hot);
}
.leistungen-kat summary::-webkit-details-marker { display: none; }
.leistungen-kat summary::after {
  content: "+"; font-size: 1.5rem; line-height: 1; color: var(--ink-dim); flex: none;
  transition: transform 0.3s;
}
.leistungen-kat[open] summary::after { transform: rotate(45deg); }
.leistungen-kat .services { border-top: 1px solid var(--line); margin-bottom: 0.6rem; }
.services { list-style: none; border-top: 1px solid var(--line); }
.services li { border-bottom: 1px solid var(--line); }
.services a, .services .svc {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem;
  padding: clamp(1.1rem, 2.5vw, 1.7rem) 0.4rem;
  color: var(--ink); position: relative; transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.services .svc__name {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 650;
  font-size: clamp(1.3rem, 3.2vw, 2rem); letter-spacing: 0.02em;
}
.services .svc__hint { color: var(--ink-dim); font-size: 0.92rem; text-align: right; max-width: 26ch; }
.services .svc::before {
  content: ""; position: absolute; left: 0; top: 50%; translate: 0 -50%;
  width: 0; height: 60%;
  background: linear-gradient(90deg, oklch(0.55 0.22 275 / 0.55), transparent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.services .svc:hover { padding-left: 1.4rem; }
.services .svc:hover::before { width: 34%; }
@media (max-width: 640px) {
  .services .svc { grid-template-columns: 1fr; gap: 0.2rem; }
  .services .svc__hint { text-align: left; }
}

/* ---------- Ablauf ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); counter-reset: step; }
.step { position: relative; padding-top: 1.2rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800;
  font-size: 3.6rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px oklch(0.55 0.22 275 / 0.85);
  display: block; margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.98rem; }

/* ---------- Über ---------- */

.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-m); align-items: center; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about__media { position: relative; border-radius: 14px; overflow: hidden; }
.about__media img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.about__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(15deg, oklch(0.09 0 0 / 0.5), transparent 55%); }
.about blockquote {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 650;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--ink); line-height: 1.15;
  border-left: 0; margin: 1.6rem 0;
}
.about blockquote em { font-style: normal; color: var(--beam-hot); }
.about__facts { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 1.8rem; }
.about__facts .num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; color: var(--ink); line-height: 1;
}

.keramik { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-m); align-items: center; }
@media (max-width: 900px) { .keramik { grid-template-columns: 1fr; } }
.keramik__media { position: relative; border-radius: 14px; overflow: hidden; }
.keramik__media img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.keramik__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(15deg, oklch(0.09 0 0 / 0.5), transparent 55%); }

.warum { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-m); align-items: center; }
@media (max-width: 900px) { .warum { grid-template-columns: 1fr; } }
.warum__media { position: relative; border-radius: 14px; overflow: hidden; }
.warum__media img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.warum__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(15deg, oklch(0.09 0 0 / 0.5), transparent 55%); }
.warum__list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; }
.warum__list li { padding-left: 1.6rem; position: relative; color: var(--ink-body); line-height: 1.5; }
.warum__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 700; }
.about__facts .num span { color: var(--beam); }
.about__facts small { color: var(--ink-dim); font-size: 0.9rem; display: block; margin-top: 0.3rem; }
.cert {
  display: flex; align-items: center; gap: 0.9rem; margin-top: 1.8rem; padding: 0.8rem 1.1rem;
  border: 1px solid var(--line); border-radius: 14px; text-decoration: none; max-width: fit-content;
  background: linear-gradient(175deg, var(--night-3), var(--night-2) 78%); transition: border-color 0.3s;
}
.cert:hover { border-color: var(--beam-hot); }
.cert img { width: 42px; height: 56px; object-fit: cover; border-radius: 4px; flex: none; }
.cert span { font-size: 0.85rem; font-weight: 700; color: var(--ink); line-height: 1.4; }
.cert small { font-weight: 500; color: var(--ink-dim); }

/* ---------- Insta / Kontakt ---------- */

.contact {
  text-align: center; position: relative; overflow: clip;
}
.contact .beam { top: 110%; left: 50%; opacity: 0.5; }
.contact h2 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 1.2rem; }
.contact p { max-width: 54ch; margin: 0 auto 2.2rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.contact__note { margin-top: 2rem; font-size: 0.95rem; color: var(--ink-dim); }
.contact__note strong { color: oklch(0.8 0.14 85); }

/* ---------- Footer ---------- */

.footer {
  position: relative; overflow: clip; isolation: isolate;
  border-top: 1px solid var(--line);
  background: var(--night-2);
  padding-top: var(--space-l);
}
.footer__beam { top: 0; opacity: 0.4; }

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: var(--space-m) 2rem;
  padding-bottom: var(--space-m);
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.footer__brand .logo { display: inline-flex; }
.footer__claim { max-width: 34ch; font-size: 0.95rem; color: var(--ink-body); }

.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem; }
.footer__label {
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim);
}
.footer__col a { color: var(--ink-body); font-size: 0.95rem; }
.footer__col a:hover { color: var(--beam-hot); }
.footer__col span { color: var(--ink-dim); font-size: 0.9rem; }

.footer__wa { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--ink); }
.footer__wa svg { color: oklch(0.72 0.17 155); flex: none; }
.footer__wa:hover { color: var(--beam-hot); }
.footer__wa:hover svg { color: var(--beam-hot); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 1.8rem;
  font-size: 0.82rem; color: var(--ink-dim);
}

@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ============================================================
   ANGEBOTE / KONFIGURATOR
   ============================================================ */

.subhero {
  padding: clamp(8rem, 18vh, 12rem) 0 var(--space-l);
  position: relative; overflow: clip; isolation: isolate;
}
.subhero .beam { top: -30%; opacity: 0.55; }
.subhero h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); max-width: 14ch; }
.subhero h1 em { font-style: normal; color: var(--beam-hot); text-shadow: 0 0 30px oklch(0.80 0.11 275 / 0.6); }
.subhero p { max-width: 56ch; margin-top: 1.4rem; }

/* Angebot des Monats */
.monatsangebot {
  display: grid; grid-template-columns: 1.05fr 0.95fr; border-radius: 18px; overflow: hidden;
  border: 1px solid oklch(0.55 0.22 275 / 0.7);
  box-shadow: 0 0 60px oklch(0.55 0.22 275 / 0.2);
  background: var(--night-2);
}
@media (max-width: 860px) { .monatsangebot { grid-template-columns: 1fr; } }
.monatsangebot__media { position: relative; min-height: 300px; }
.monatsangebot__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.monatsangebot__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, var(--night-2)); }
@media (max-width: 860px) { .monatsangebot__media::after { background: linear-gradient(to bottom, transparent 55%, var(--night-2)); } }
.monatsangebot__body { padding: clamp(1.8rem, 4vw, 3rem); }
.monatsangebot__badge {
  display: inline-block; background: var(--xenon); color: var(--ink);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.monatsangebot h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
.monatsangebot .prices { display: flex; align-items: baseline; gap: 1.2rem; margin: 1.2rem 0; }
.monatsangebot .prices .now {
  font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; color: var(--beam-hot); line-height: 1;
}
.monatsangebot .prices .was { color: var(--ink-dim); text-decoration: line-through; font-size: 1.2rem; }
.monatsangebot ul { list-style: none; display: grid; gap: 0.5rem; margin: 1.2rem 0 1.8rem; font-size: 0.97rem; }
.monatsangebot ul li::before { content: "— "; color: var(--beam); }

/* Pakete */
.pakete { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; align-items: stretch; }
.paket {
  border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  background: linear-gradient(175deg, var(--night-3), var(--night-2) 75%);
  display: flex; flex-direction: column; gap: 1.1rem;
  position: relative; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.paket:hover { transform: translateY(-4px); }
.paket--silber { border-color: oklch(0.55 0.22 275 / 0.75); box-shadow: 0 0 50px oklch(0.55 0.22 275 / 0.18); }
.paket__tier {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 800;
  font-size: 1.05rem; letter-spacing: 0.16em;
}
.paket--bronze .paket__tier { color: oklch(0.72 0.1 60); }
.paket--silber .paket__tier { color: var(--beam-hot); }
.paket--gold .paket__tier { color: oklch(0.85 0.13 90); }
.paket--premium { border-color: oklch(0.85 0.05 275 / 0.8); box-shadow: 0 0 60px oklch(0.8 0.11 275 / 0.25); }
.paket--premium .paket__tier { color: var(--ink); }
.paket--scheinwerfer .paket__tier { color: oklch(0.8 0.15 75); }
.paket--cabrio .paket__tier { color: oklch(0.75 0.12 210); }
.paket--polieren .paket__tier { color: oklch(0.75 0.14 140); }
.paket__price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--ink); line-height: 1; }
.paket__price small { font-size: 0.32em; font-family: var(--font-body); font-weight: 500; color: var(--ink-dim); letter-spacing: 0.05em; }
.paket ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.96rem; flex: 1; }
.paket ul li { padding-left: 1.4rem; position: relative; }
.paket ul li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.paket ul li.minus { color: var(--ink-dim); }
.paket ul li.minus::before { content: "–"; color: var(--ink-dim); }
.paket .btn { justify-content: center; }
.paket__flag {
  position: absolute; top: -0.85rem; left: 50%; translate: -50%;
  background: var(--xenon); color: var(--ink); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 999px;
  white-space: nowrap;
}

/* Konfigurator */
.konfig { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }
@media (max-width: 960px) { .konfig { grid-template-columns: 1fr; } }

.konfig__steps { display: grid; gap: var(--space-m); }
.kstep__title {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  color: var(--ink); font-size: 1.45rem; margin-bottom: 0.35rem;
  display: flex; align-items: baseline; gap: 0.7rem;
}
.kstep__title .n { color: var(--beam); font-size: 0.9em; }
.kstep__sub { color: var(--ink-dim); font-size: 0.94rem; margin-bottom: 1.1rem; }

.optgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.8rem; }
.opt {
  position: relative; border: 1px solid var(--line); border-radius: 12px;
  background: var(--night-3); padding: 1rem 1.1rem; cursor: pointer;
  display: grid; gap: 0.3rem; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.opt:hover { border-color: oklch(0.55 0.22 275 / 0.6); }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt strong { color: var(--ink); font-weight: 600; font-size: 1rem; }
.opt small { color: var(--ink-dim); font-size: 0.85rem; line-height: 1.4; }
.opt .delta { color: var(--beam); font-weight: 600; font-size: 0.88rem; }
.opt:has(input:checked) {
  border-color: var(--beam);
  background: oklch(0.38 0.16 275 / 0.22);
  box-shadow: 0 0 24px oklch(0.55 0.22 275 / 0.3), inset 0 0 0 1px var(--beam);
}
.opt.is-disabled { opacity: 0.4; cursor: not-allowed; }
.opt.is-disabled input { cursor: not-allowed; }
.opt:has(input:focus-visible) { outline: 2px solid var(--beam); outline-offset: 3px; }
.opt svg { width: 60px; height: 30px; color: var(--ink-dim); justify-self: start; }
.opt:has(input:checked) svg { color: var(--beam-hot); }

.kontaktfelder { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 640px) { .kontaktfelder { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  background: var(--night-3); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font: inherit; padding: 0.75rem 0.9rem;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); opacity: 1; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--beam); outline-offset: 0; border-color: var(--beam);
}

/* Summary panel */
.summary {
  position: sticky; top: 90px;
  border: 1px solid oklch(0.55 0.22 275 / 0.65); border-radius: 18px;
  background: linear-gradient(180deg, var(--night-3), var(--night-2));
  box-shadow: 0 0 50px oklch(0.55 0.22 275 / 0.15);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.summary h3 { font-size: 1.35rem; margin-bottom: 1.2rem; }
.summary__rows { display: grid; gap: 0.65rem; font-size: 0.95rem; border-bottom: 1px solid var(--line); padding-bottom: 1.1rem; margin-bottom: 1.1rem; }
.summary__rows .row { display: flex; justify-content: space-between; gap: 1rem; }
.summary__rows .row span:last-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.summary__total .label { font-weight: 600; color: var(--ink); }
.summary__total .price {
  font-family: var(--font-display); font-weight: 800; font-size: 2.9rem; color: var(--beam-hot); line-height: 1;
}
.summary__hint { font-size: 0.82rem; color: var(--ink-dim); margin-bottom: 1.4rem; }
.summary__actions { display: grid; gap: 0.7rem; }
.summary__actions .btn { justify-content: center; width: 100%; }
.summary__legal { margin-top: 1rem; font-size: 0.78rem; color: var(--ink-dim); text-align: center; }

/* ============================================================
   HERO TRUST + SERVICE-LEISTE (Homepage)
   ============================================================ */

.hero__trust {
  display: flex; align-items: center; gap: 0.8rem; margin-top: 2rem;
  font-size: 0.95rem; color: var(--ink-body); text-decoration: none;
}
.hero__stars { display: inline-flex; gap: 0.15rem; color: oklch(0.85 0.15 90); }
.hero__trust strong { color: var(--ink); font-weight: 600; }
.hero__trust span { color: var(--ink-dim); }

.hero__location {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.8rem;
  font-size: 0.88rem; color: var(--ink-dim); text-decoration: none; max-width: fit-content;
  transition: color 0.25s;
}
.hero__location:hover { color: var(--beam-hot); }
.hero__location svg { flex: none; color: var(--beam-hot); }

.hero__strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid oklch(0.28 0.02 275 / 0.5);
  background: oklch(0.09 0 0 / 0.55); backdrop-filter: blur(10px);
}
.hero__strip .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; padding-block: 0;
}
.hero__strip .cell {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.1rem clamp(0.5rem, 2vw, 1.5rem);
  font-family: var(--font-display); text-transform: uppercase; font-weight: 650;
  font-size: clamp(0.72rem, 1.4vw, 0.95rem); letter-spacing: 0.04em; color: var(--ink);
}
.hero__strip .cell + .cell { border-left: 1px solid oklch(0.28 0.02 275 / 0.5); }
.hero__strip .cell svg { flex: none; color: var(--beam); }
@media (max-width: 760px) {
  .hero__strip { position: static; background: var(--night-2); }
  .hero__strip .wrap { grid-template-columns: 1fr; width: 100%; }
  .hero__strip .cell { padding-inline: clamp(2.5rem, 6vw, 5rem); }
  .hero__strip .cell + .cell { border-left: 0; border-top: 1px solid oklch(0.28 0.02 275 / 0.5); }
}
.hero { padding-bottom: 0; }
.hero__content { padding-bottom: clamp(6rem, 14vh, 9rem); }
@media (max-width: 760px) { .hero__content { padding-bottom: clamp(2.5rem, 7vh, 4rem); } }

/* ============================================================
   ERGEBNIS-GALERIE
   ============================================================ */

.ergebnisse { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: var(--space-m); align-items: center; }
@media (max-width: 900px) { .ergebnisse { grid-template-columns: 1fr; } }

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, 1fr); gap: 0.7rem;
}
.gallery figure {
  position: relative; overflow: hidden; border-radius: 12px; margin: 0;
  border: 1px solid var(--line); aspect-ratio: 1; min-height: 0;
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, oklch(0.09 0 0 / 0.45));
  opacity: 0; transition: opacity 0.4s;
}
.gallery figure:hover::after { opacity: 1; }
/* Bento: eine hohe + eine breite Kachel, Rest quadratisch */
.gallery .tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery .wide { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .gallery .tall { grid-row: span 1; aspect-ratio: 1; }
}
.gallery__pair { display: flex; gap: 2px; }
.gallery__pair-half { position: relative; flex: 1; overflow: hidden; }
.gallery__pair-half img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__pair-half span {
  position: absolute; bottom: 0.6rem; left: 0.6rem; z-index: 2;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.1em; padding: 0.25rem 0.6rem; border-radius: 999px;
  background: oklch(0.09 0 0 / 0.65); backdrop-filter: blur(6px); color: var(--ink);
}
.gallery__pair-half:last-child span { color: var(--beam-hot); }

.ergebnisse__facts { display: flex; gap: 2.2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.ergebnisse__facts .num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.ergebnisse__facts .num span { color: var(--beam); }
.ergebnisse__facts small { color: var(--ink-dim); font-size: 0.88rem; display: block; margin-top: 0.3rem; }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin: 2rem 0 0; }
.review {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem;
  background: linear-gradient(175deg, var(--night-3), var(--night-2) 78%);
}
.review__stars { color: var(--beam-hot); font-size: 1rem; letter-spacing: 0.15em; }
.review p { margin: 0.9rem 0; color: var(--ink-dim); font-size: 0.95rem; line-height: 1.6; }
.review cite { font-style: normal; font-weight: 700; color: var(--ink); }

/* ============================================================
   3 SCHRITTE (groß, mit Aktion)
   ============================================================ */

.flow3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: f; }
@media (max-width: 820px) { .flow3 { grid-template-columns: 1fr; } }
.flow3__card {
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(175deg, var(--night-3), var(--night-2) 78%);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  display: flex; flex-direction: column; gap: 0.7rem; position: relative; overflow: hidden;
  min-height: 260px;
}
.flow3__card--active { border-color: oklch(0.55 0.22 275 / 0.8); box-shadow: 0 0 50px oklch(0.55 0.22 275 / 0.2); }
.flow3__n {
  counter-increment: f; font-family: var(--font-display); font-weight: 800;
  font-size: 3.4rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px oklch(0.55 0.22 275 / 0.85);
}
.flow3__card--active .flow3__n { color: var(--beam-hot); -webkit-text-stroke: 0; }
.flow3__card h3 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.flow3__card p { color: var(--ink-body); font-size: 0.98rem; flex: 1; }
.flow3__card .btn { margin-top: 0.5rem; align-self: flex-start; }
.flow3__card .muted-step { font-size: 0.9rem; color: var(--ink-dim); font-weight: 600; margin-top: auto; }

/* ============================================================
   PAKETE Homepage: Auswahl-Interaktion
   ============================================================ */

.paket[data-select] { cursor: pointer; }
.paket.is-picked { border-color: var(--beam); box-shadow: 0 0 55px oklch(0.55 0.22 275 / 0.3); }
.paket.is-picked::after {
  content: "✓ Gewählt"; position: absolute; top: 1rem; right: 1rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  color: var(--ink); background: var(--xenon); padding: 0.25rem 0.7rem; border-radius: 999px;
}

/* ============================================================
   MULTI-STEP WIZARD (Anfrage)
   ============================================================ */

.wizard {
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(180deg, var(--night-2), var(--night));
  overflow: hidden;
}
.wizard__top {
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.4rem) 0;
}
.wizard__progress {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem;
}
.wizard__dot {
  flex: 1; height: 4px; border-radius: 999px; background: var(--line);
  position: relative; overflow: hidden;
}
.wizard__dot::after {
  content: ""; position: absolute; inset: 0; width: 0;
  background: linear-gradient(90deg, var(--xenon), var(--beam-hot));
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.wizard__dot.is-done::after, .wizard__dot.is-active::after { width: 100%; }
.wizard__dot.is-active::after { width: 100%; box-shadow: 0 0 12px oklch(0.80 0.11 275 / 0.7); }
.wizard__meta { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 1.4rem; }
.wizard__meta .step-name { color: var(--beam); font-weight: 600; }

.wizard__panels { position: relative; }
.wpanel {
  padding: 0 clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2rem);
  display: none; animation: wfade 0.45s cubic-bezier(0.22,1,0.36,1);
}
.wpanel.is-active { display: block; }
@keyframes wfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wpanel h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.4rem; }
.wpanel__sub { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 1.4rem; }

.wizard__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.4rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line); background: oklch(0.11 0.006 275 / 0.6);
  flex-wrap: wrap;
}
.wizard__price { display: flex; align-items: baseline; gap: 0.6rem; }
.wizard__price .label { font-size: 0.85rem; color: var(--ink-dim); }
.wizard__price .val { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--beam-hot); line-height: 1; }
.wizard__nav { display: flex; gap: 0.7rem; margin-left: auto; }
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.95rem; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

.wsummary { display: grid; gap: 0.6rem; margin: 1.2rem 0; padding: 1.2rem 1.4rem; border: 1px solid var(--line); border-radius: 14px; background: var(--night-3); font-size: 0.95rem; }
.wsummary .row { display: flex; justify-content: space-between; gap: 1rem; }
.wsummary .row span:last-child { color: var(--ink); font-weight: 600; text-align: right; }

/* ---------- Reveal (Motion-Grundzustand: sichtbar) ---------- */

.gs-line > span { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.15s !important; }
  .beam { display: none; }
  .wpanel { animation: none; }
}

/* ============================================================
   ANFAHRT / MAPBOX
   ============================================================ */

.mapbox {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: var(--night-2); min-height: 200px;
}
.mapbox iframe { display: block; width: 100%; }
/* Klaro rendert vor dem eingebetteten iframe automatisch einen Consent-Hinweis (.context-notice) */
.mapbox .context-notice {
  background: var(--night-2) !important; border-radius: 16px; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem;
  padding: var(--space-s);
}
.mapbox .context-notice .cm-btn {
  font-family: var(--font-body); background: var(--beam) !important; color: var(--night) !important;
  border: 0 !important; border-radius: 999px !important; font-weight: 600;
}

/* ============================================================
   KLARO — Consent-Banner im Site-Theme
   ============================================================ */

.klaro .cookie-notice, .klaro .cookie-modal .cm-modal {
  background: var(--night-2) !important; color: var(--ink-body) !important;
  border: 1px solid var(--line) !important; border-radius: 16px !important;
  font-family: var(--font-body) !important;
}
.klaro .cookie-notice h1, .klaro .cookie-notice h2,
.klaro .cookie-modal h1, .klaro .cookie-modal h2 {
  font-family: var(--font-display) !important; color: var(--ink) !important; text-transform: uppercase;
}
.klaro .cookie-notice a, .klaro .cookie-modal a { color: var(--beam-hot) !important; }
.klaro .cn-body p, .klaro .cm-body p { color: var(--ink-body) !important; }
.klaro .cookie-notice .cn-buttons .cn-learn-more,
.klaro .cookie-notice .cn-buttons .cn-decline,
.klaro .cookie-modal .cm-btn-decline {
  background: transparent !important; color: var(--ink-body) !important;
  border: 1px solid var(--line) !important; border-radius: 999px !important;
}
.klaro .cookie-notice .cn-buttons .cn-ok,
.klaro .cookie-modal .cm-btn-success,
.klaro .cookie-modal .cm-btn-accept-all {
  background: var(--beam) !important; color: var(--night) !important;
  border: 0 !important; border-radius: 999px !important; font-weight: 600;
}
.klaro .slider .slider-button { background: var(--beam-hot) !important; }
.klaro .cm-list-input:checked ~ .cm-list-label .slider { background: var(--beam) !important; }

/* ============================================================
   RECHTLICHE SEITEN (Impressum / Datenschutz)
   ============================================================ */

.legal { padding-top: clamp(7rem, 14vh, 9rem); }
.legal__content { max-width: 72ch; }
.legal__content h1 {
  font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: var(--space-s);
}
.legal__content h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin-top: 2.4rem; margin-bottom: 0.8rem;
}
.legal__content p { margin-bottom: 1rem; color: var(--ink-body); }
.legal__content a { text-decoration: underline; text-underline-offset: 2px; }
.legal__list { margin: 0 0 1rem 1.2rem; color: var(--ink-body); }
.legal__list li { margin-bottom: 0.4rem; }

/* ============================================================
   FÜR WELCHE FAHRZEUGE (Tag-Liste)
   ============================================================ */

.fahrzeugtags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem;
}
.fahrzeugtags li {
  border: 1px solid var(--line); border-radius: 999px; padding: 0.7rem 1.4rem;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.03em; color: var(--ink);
  background: linear-gradient(175deg, var(--night-3), var(--night-2) 78%);
  transition: border-color 0.3s, color 0.3s;
}
.fahrzeugtags li:hover { border-color: var(--beam-hot); color: var(--beam-hot); }

/* Anfahrt SEO-Absatz */
.anfahrt__seo { margin-top: 1.2rem; color: var(--ink-dim); font-size: 0.92rem; max-width: 74ch; }

/* ============================================================
   NUR POLIEREN — Preistabelle
   ============================================================ */

.polier-table__wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--line); }
.polier-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.95rem; }
.polier-table th, .polier-table td { padding: 0.9rem 1.2rem; text-align: left; white-space: nowrap; }
.polier-table thead th {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-weight: 700; color: var(--beam-hot); background: var(--night-3);
  border-bottom: 1px solid var(--line);
}
.polier-table tbody td { border-bottom: 1px solid var(--line); color: var(--ink-body); }
.polier-table tbody tr:last-child td { border-bottom: 0; }
.polier-table tbody td:first-child { color: var(--ink); font-weight: 600; }
.polier-table tbody tr:hover td { background: oklch(0.17 0.012 275 / 0.6); }
