/* ==========================================================================
   DQcoding — Design System v2
   "Precision Engineering": kalte Daten (Cyan) trifft heisse Leistung (Amber)
   ========================================================================== */

/* --------------------------------------------------------------------------
   01 · TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Farb-Basis: Werkstatt bei Nacht */
  --c-void:        #040507;
  --c-bg:          #06070A;
  --c-bg-2:        #0A0C11;
  --c-surface:     #10131A;
  --c-surface-2:   #161A23;
  --c-elevated:    #1C2130;

  /* Linien & Glas */
  --c-line:        rgba(255, 255, 255, 0.07);
  --c-line-strong: rgba(255, 255, 255, 0.14);
  --c-glass:       rgba(255, 255, 255, 0.025);

  /* Text */
  --c-text:        #EEF1F6;
  --c-text-soft:   #B4BCC9;
  --c-muted:       #79828F;
  --c-faint:       #4A515C;

  /* Akzente — die zwei Pole der Marke */
  --c-ice:         #16E0F5;   /* Daten · Codierung · Diagnose */
  --c-ice-deep:    #0891A8;
  --c-heat:        #FF6A17;   /* Leistung · Tuning · Hitze   */
  --c-heat-deep:   #C1410B;
  --c-signal:      #25D366;   /* WhatsApp / Verfügbar        */

  /* Abgeleitete Effekte */
  --glow-ice:      0 0 0 1px rgba(22,224,245,.25), 0 0 32px -8px rgba(22,224,245,.55);
  --glow-heat:     0 0 0 1px rgba(255,106,23,.28), 0 0 34px -8px rgba(255,106,23,.6);
  --shadow-lift:   0 24px 60px -24px rgba(0,0,0,.9), 0 2px 8px -2px rgba(0,0,0,.6);

  /* Typografie */
  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Fluid Type Scale (clamp: mobil → desktop) */
  --t-hero:  clamp(2.9rem, 1.2rem + 7.6vw, 8.5rem);
  --t-h2:    clamp(2rem,   1.2rem + 3.4vw, 4.1rem);
  --t-h3:    clamp(1.3rem, 1.05rem + 1.1vw, 1.95rem);
  --t-lead:  clamp(1.02rem, 0.95rem + 0.42vw, 1.32rem);
  --t-body:  clamp(0.95rem, 0.92rem + 0.16vw, 1.04rem);
  --t-small: 0.82rem;
  --t-micro: 0.68rem;

  /* Raster & Rhythmus */
  --gutter:    clamp(1.15rem, 0.6rem + 2.4vw, 3.5rem);
  --max:       1380px;
  --max-text:  62ch;
  --sec-y:     clamp(5rem, 3rem + 9vw, 11.5rem);
  --radius:    16px;
  --radius-lg: 26px;

  /* Motion — physikalisch plausible Kurven */
  --e-out:    cubic-bezier(.16, 1, .3, 1);      /* Ausrollen, wie Masse   */
  --e-inout:  cubic-bezier(.65, 0, .35, 1);
  --e-spring: cubic-bezier(.34, 1.56, .64, 1);  /* Überschwingen, Feder   */
  --d-fast:   .28s;
  --d-mid:    .55s;
  --d-slow:   1.05s;

  --nav-h: 76px;
  color-scheme: dark;
}

/* --------------------------------------------------------------------------
   02 · RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 18px);
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  font-feature-settings: "cv02","cv03","cv04","ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100dvh;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--c-ice); color: #04141a; }

:focus-visible {
  outline: 2px solid var(--c-ice);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--c-ice-deep), #1a2230);
  border-radius: 99px;
  border: 3px solid var(--c-bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--c-ice); }

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 999;
  background: var(--c-ice); color: #04141a; padding: .7rem 1.2rem;
  border-radius: 8px; font-weight: 700; transition: top var(--d-fast);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   03 · LAYOUT-PRIMITIVE
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }

/* Feine Rasterlinie zwischen Sektionen */
.section + .section::before {
  content: "";
  position: absolute; inset-inline: var(--gutter); top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line-strong) 22%, var(--c-line-strong) 78%, transparent);
}

/* Sektions-Kopf mit Nummerierung wie ein Datenblatt */
.sec-head { margin-bottom: clamp(2.4rem, 1.5rem + 3vw, 4.6rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono);
  font-size: var(--t-micro);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-ice);
  margin-bottom: 1.35rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.eyebrow--heat { color: var(--c-heat); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.033em;
  text-wrap: balance;
}

.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); line-height: 1.12; letter-spacing: -.02em; }

.lead {
  font-size: var(--t-lead);
  color: var(--c-text-soft);
  line-height: 1.62;
  max-width: var(--max-text);
  text-wrap: pretty;
}

.muted { color: var(--c-muted); }

/* Farbiger Text-Akzent mit Verlauf */
.grad {
  background: linear-gradient(104deg, var(--c-ice) 0%, #7FD8FF 38%, var(--c-heat) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-heat {
  background: linear-gradient(100deg, #FFC38A, var(--c-heat));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.outline-text {
  -webkit-text-stroke: 1.4px var(--c-line-strong);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --------------------------------------------------------------------------
   04 · HINTERGRUND-ATMOSPHÄRE
   -------------------------------------------------------------------------- */
.bg-field {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 78% -8%,  rgba(22,224,245,.13), transparent 62%),
    radial-gradient(760px 540px at 4% 22%,   rgba(255,106,23,.085), transparent 60%),
    radial-gradient(1100px 800px at 50% 108%, rgba(22,224,245,.07), transparent 66%),
    var(--c-bg);
}

/* Technisches Raster — wie Millimeterpapier im Werkstattbuch */
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 130% 90% at 50% 0%, #000 12%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 130% 90% at 50% 0%, #000 12%, transparent 76%);
}

/* Filmkorn — nimmt dem Dark-Design das "digital Flache" */
.bg-grain {
  position: fixed; inset: -120%; z-index: 1; pointer-events: none;
  opacity: .032; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(9) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  10% { transform: translate(-3%,-5%) }  20% { transform: translate(-9%,3%) }
  30% { transform: translate(5%,-11%) }  40% { transform: translate(-3%,13%) }
  50% { transform: translate(-11%,5%) }  60% { transform: translate(7%,0) }
  70% { transform: translate(0,7%) }     80% { transform: translate(3%,17%) }
  90% { transform: translate(-7%,7%) }
}

/* --------------------------------------------------------------------------
   05 · NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height var(--d-mid) var(--e-out),
              background var(--d-mid) var(--e-out),
              border-color var(--d-mid) var(--e-out),
              backdrop-filter var(--d-mid);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  height: 64px;
  background: rgba(6,7,10,.76);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--c-line);
}
/* Nach oben scrollen blendet Nav ein, nach unten aus */
.nav.is-hidden { transform: translateY(-102%); }
.nav { transition-property: height, background, border-color, transform; }

.nav__inner {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1.6rem;
}

.brand { display: flex; align-items: center; gap: .72rem; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text {
  font-family: var(--f-display);
  font-weight: 800; font-size: 1.16rem; letter-spacing: -.03em;
  line-height: 1;
}
.brand__text i { font-style: normal; color: var(--c-ice); }
.brand__sub {
  display: block;
  font-family: var(--f-mono); font-size: .54rem; letter-spacing: .26em;
  color: var(--c-muted); text-transform: uppercase; margin-top: 4px;
}

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative;
  padding: .55rem .82rem;
  font-size: .855rem; font-weight: 500;
  color: var(--c-text-soft);
  border-radius: 9px;
  transition: color var(--d-fast) var(--e-out), background var(--d-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: .82rem; right: .82rem; bottom: .32rem;
  height: 1px; background: var(--c-ice);
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s var(--e-out);
  box-shadow: 0 0 8px var(--c-ice);
}
.nav__link:hover { color: var(--c-text); background: var(--c-glass); }
.nav__link:hover::after,
.nav__link[aria-current="true"]::after { transform: scaleX(1); }
.nav__link[aria-current="true"] { color: var(--c-text); }

/* Sprachumschalter */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--c-glass); border: 1px solid var(--c-line);
  border-radius: 10px; padding: .48rem .7rem;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer;
  transition: border-color var(--d-fast), background var(--d-fast);
}
.lang__btn:hover { border-color: var(--c-line-strong); background: rgba(255,255,255,.05); }
.lang__btn svg { width: 13px; height: 13px; transition: transform var(--d-fast); }
.lang[data-open="true"] .lang__btn svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 9px);
  min-width: 172px; padding: .4rem;
  background: rgba(16,19,26,.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-line-strong);
  border-radius: 13px;
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97);
  transition: opacity var(--d-fast) var(--e-out), transform var(--d-fast) var(--e-out), visibility var(--d-fast);
}
.lang[data-open="true"] .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .7rem; border-radius: 9px;
  font-size: .84rem; transition: background var(--d-fast);
}
.lang__item:hover { background: var(--c-glass); }
.lang__item[aria-current="true"] { color: var(--c-ice); }
.lang__item span:last-child {
  margin-left: auto; font-family: var(--f-mono); font-size: .62rem;
  color: var(--c-faint); letter-spacing: .1em;
}

.nav__burger {
  display: none;
  width: 42px; height: 42px; border: 1px solid var(--c-line);
  background: var(--c-glass); border-radius: 11px; cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: var(--c-text); border-radius: 2px;
  transition: transform .4s var(--e-out), opacity .25s;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 25px; }
body.nav-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile Overlay */
.nav__panel {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6,7,10,.97);
  backdrop-filter: blur(26px);
  padding: calc(var(--nav-h) + 2.2rem) var(--gutter) 2.5rem;
  display: flex; flex-direction: column; gap: .2rem;
  clip-path: circle(0% at calc(100% - 44px) 38px);
  transition: clip-path .72s var(--e-out);
  pointer-events: none;
  overflow-y: auto;
}
body.nav-open .nav__panel { clip-path: circle(155% at calc(100% - 44px) 38px); pointer-events: auto; }
.nav__panel a.nav__plink {
  font-family: var(--f-display); font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
  padding: .58rem 0; border-bottom: 1px solid var(--c-line);
  display: flex; align-items: baseline; gap: 1rem;
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s var(--e-out), transform .5s var(--e-out), color var(--d-fast);
}
body.nav-open .nav__panel a.nav__plink { opacity: 1; transform: none; }
.nav__panel a.nav__plink:hover { color: var(--c-ice); }
.nav__plink em {
  font-family: var(--f-mono); font-style: normal;
  font-size: .68rem; color: var(--c-faint); letter-spacing: .16em;
}

/* --------------------------------------------------------------------------
   06 · BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .68rem;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  font-weight: 650; font-size: .93rem; letter-spacing: -.01em;
  border: 1px solid transparent;
  cursor: pointer;
  isolation: isolate;
  transition: transform var(--d-fast) var(--e-out), box-shadow var(--d-mid) var(--e-out),
              border-color var(--d-fast), color var(--d-fast);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .42s var(--e-out); }
.btn:active { transform: scale(.975); }

/* Primär — WhatsApp/Signal-Grün, weil das der echte Konversionsweg ist */
.btn--primary {
  background: linear-gradient(140deg, #2FE070, var(--c-signal) 55%, #12A850);
  color: #04220F;
  box-shadow: 0 12px 34px -14px rgba(37,211,102,.75), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover { box-shadow: 0 20px 48px -16px rgba(37,211,102,.9), inset 0 1px 0 rgba(255,255,255,.45); }
.btn--primary:hover svg { transform: translateX(3px) rotate(-6deg); }

/* Sekundär — Glas mit Licht-Sweep */
.btn--ghost {
  background: var(--c-glass);
  border-color: var(--c-line-strong);
  color: var(--c-text);
  backdrop-filter: blur(10px);
}
.btn--ghost::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 32%, rgba(22,224,245,.22) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform .85s var(--e-out);
}
.btn--ghost:hover { border-color: rgba(22,224,245,.5); color: #fff; }
.btn--ghost:hover::before { transform: translateX(130%); }
.btn--ghost:hover svg { transform: translateX(3px); }

.btn--heat {
  background: linear-gradient(140deg, #FF8A3D, var(--c-heat) 60%, var(--c-heat-deep));
  color: #180600;
  box-shadow: 0 12px 34px -14px rgba(255,106,23,.7), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--sm { padding: .68rem 1.15rem; font-size: .83rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Magnetischer Hover (JS setzt --mx/--my) */
.magnetic { transform: translate3d(var(--mx, 0px), var(--my, 0px), 0); }

/* --------------------------------------------------------------------------
   07 · HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3.5rem;
  overflow: hidden;
}

/* Partikel-/Datenfeld-Canvas */
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; opacity: .85;
}

/* Volumetrischer Lichtkegel — wie eine Werkstattlampe */
.hero__beam {
  position: absolute; z-index: 0; pointer-events: none;
  top: -35%; left: 50%; width: 160%; height: 150%;
  translate: -50% 0;
  background: conic-gradient(from 178deg at 50% 0%,
    transparent 0deg, rgba(22,224,245,.055) 6deg, rgba(22,224,245,.11) 12deg,
    transparent 20deg, transparent 340deg, rgba(255,106,23,.05) 350deg, transparent 360deg);
  filter: blur(28px);
  animation: beam-sweep 15s var(--e-inout) infinite alternate;
}
@keyframes beam-sweep {
  from { transform: rotate(-9deg) scale(1); opacity: .75; }
  to   { transform: rotate(9deg) scale(1.08); opacity: 1; }
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__loc {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .48rem 1rem .48rem .6rem;
  border: 1px solid var(--c-line-strong);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .2em; text-transform: uppercase; color: var(--c-text-soft);
  margin-bottom: 1.9rem;
}
.pulse-dot {
  position: relative; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-signal); flex: none; margin-left: .3rem;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid var(--c-signal);
  animation: pulse-ring 2.3s var(--e-out) infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.7); opacity: 1; }
  100% { transform: scale(2.9); opacity: 0; }
}

.hero__title {
  font-size: var(--t-hero);
  font-weight: 900;
  line-height: .875;
  letter-spacing: -.045em;
  margin-bottom: 1.9rem;
  max-width: 15ch;
}
.hero__title .ln { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .ln > span {
  display: block;
  transform: translateY(105%) rotate(2.5deg);
  opacity: 0;
  animation: line-rise 1.25s var(--e-out) forwards;
}
.hero__title .ln:nth-child(1) > span { animation-delay: .18s; }
.hero__title .ln:nth-child(2) > span { animation-delay: .32s; }
.hero__title .ln:nth-child(3) > span { animation-delay: .46s; }
@keyframes line-rise {
  to { transform: none; opacity: 1; }
}

.hero__sub {
  font-size: var(--t-lead); color: var(--c-text-soft);
  max-width: 54ch; margin-bottom: 2.4rem;
  opacity: 0; animation: fade-up 1s var(--e-out) .68s forwards;
}
.hero__sub b { color: var(--c-text); font-weight: 600; }

.hero .btn-row { opacity: 0; animation: fade-up 1s var(--e-out) .84s forwards; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* Kennzahlen-Leiste unter dem Hero */
.hero__stats {
  margin-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  display: grid; gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0; animation: fade-up 1s var(--e-out) 1s forwards;
}
.stat {
  background: rgba(10,12,17,.72);
  backdrop-filter: blur(14px);
  padding: 1.5rem 1.35rem;
  position: relative; overflow: hidden;
  transition: background var(--d-mid);
}
.stat:hover { background: rgba(22,224,245,.05); }
.stat::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--c-ice), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--e-out);
}
.stat:hover::after { transform: scaleX(1); }
.stat__num {
  font-family: var(--f-display); font-size: clamp(1.7rem, 1.1rem + 2vw, 2.7rem);
  font-weight: 800; line-height: 1; letter-spacing: -.035em;
  display: flex; align-items: baseline; gap: .12em;
}
.stat__num i { font-style: normal; color: var(--c-ice); font-size: .52em; }
.stat__label {
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted); margin-top: .55rem;
}

/* Scroll-Hinweis */
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; translate: -50% 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  font-family: var(--f-mono); font-size: .58rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--c-faint);
  opacity: 0; animation: fade-up .9s var(--e-out) 1.5s forwards;
}
.scroll-cue__rail {
  width: 1px; height: 46px; background: var(--c-line-strong);
  position: relative; overflow: hidden;
}
.scroll-cue__rail::after {
  content: ""; position: absolute; inset-inline: 0; height: 40%;
  background: linear-gradient(var(--c-ice), transparent);
  animation: rail-drop 2.1s var(--e-inout) infinite;
}
@keyframes rail-drop {
  0%   { transform: translateY(-100%); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(250%); opacity: 0; }
}

/* --------------------------------------------------------------------------
   08 · MARKEN-LAUFBAND
   -------------------------------------------------------------------------- */
.ticker {
  border-block: 1px solid var(--c-line);
  background: rgba(10,12,17,.6);
  padding-block: 1.15rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: ticker 42s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__item {
  display: inline-flex; align-items: center; gap: .8rem;
  padding-inline: clamp(1.4rem, 3vw, 2.8rem);
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(.95rem, .8rem + .5vw, 1.25rem);
  letter-spacing: -.02em; color: var(--c-muted);
  white-space: nowrap;
  transition: color var(--d-fast);
}
.ticker__item:hover { color: var(--c-text); }
.ticker__item::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-ice); opacity: .55;
}

/* --------------------------------------------------------------------------
   09 · SPLIT / ÜBER UNS
   -------------------------------------------------------------------------- */
.split {
  display: grid; gap: clamp(2.4rem, 1.5rem + 4vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
.split--sticky > :first-child { position: sticky; top: calc(var(--nav-h) + 2.5rem); }

.check-list { display: grid; gap: .9rem; margin-top: 2.2rem; }
.check-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: .95rem;
  align-items: start;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--c-line);
}
.check-list li:last-child { border-bottom: 0; }
.check-list b { display: block; font-weight: 650; margin-bottom: .12rem; }
.check-list span { color: var(--c-muted); font-size: .93rem; }
.check-ico {
  width: 24px; height: 24px; border-radius: 7px;
  background: rgba(22,224,245,.1);
  border: 1px solid rgba(22,224,245,.28);
  display: grid; place-items: center;
  color: var(--c-ice);
}
.check-ico svg { width: 12px; height: 12px; }

/* --------------------------------------------------------------------------
   10 · ECU-TERMINAL (Live-Diagnose-Fenster)
   -------------------------------------------------------------------------- */
.terminal {
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0B0E14, #070910);
  box-shadow: var(--shadow-lift), 0 0 60px -30px rgba(22,224,245,.4);
  overflow: hidden;
  position: relative;
}
.terminal::after { /* Scanline-Glasreflex */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.014) 0 1px, transparent 1px 3px);
}
.terminal__bar {
  display: flex; align-items: center; gap: .55rem;
  padding: .72rem 1rem;
  border-bottom: 1px solid var(--c-line);
  background: rgba(255,255,255,.022);
}
.terminal__dot { width: 9px; height: 9px; border-radius: 50%; background: #2C323D; }
.terminal__dot:nth-child(1) { background: #FF5F57; }
.terminal__dot:nth-child(2) { background: #FEBC2E; }
.terminal__dot:nth-child(3) { background: #28C840; }
.terminal__title {
  margin-left: .7rem; font-family: var(--f-mono);
  font-size: .68rem; letter-spacing: .12em; color: var(--c-muted);
  text-transform: uppercase;
}
.terminal__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .16em;
  color: var(--c-signal); text-transform: uppercase;
}
.terminal__body {
  font-family: var(--f-mono); font-size: .74rem; line-height: 1.85;
  padding: 1.1rem 1.15rem;
  height: 322px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--c-text-soft);
}
.terminal__body .ln-t { white-space: pre-wrap; word-break: break-word; }
.t-dim  { color: var(--c-faint); }
.t-ice  { color: var(--c-ice); }
.t-ok   { color: var(--c-signal); }
.t-warn { color: #FFC53D; }
.t-heat { color: var(--c-heat); }
.caret {
  display: inline-block; width: 7px; height: 1em;
  background: var(--c-ice); vertical-align: -.16em;
  animation: caret 1.05s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

/* --------------------------------------------------------------------------
   11 · SERVICE-KARTEN (3D-Tilt + Lichtreflex)
   -------------------------------------------------------------------------- */
.cards {
  display: grid; gap: clamp(1rem, .6rem + 1.2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}
.card {
  position: relative;
  padding: clamp(1.7rem, 1.2rem + 1.4vw, 2.5rem);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.008) 44%),
    var(--c-surface);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color var(--d-mid) var(--e-out),
              transform var(--d-mid) var(--e-out),
              box-shadow var(--d-mid) var(--e-out);
  will-change: transform;
}
/* Spekularer Lichtpunkt folgt dem Cursor (JS setzt --px/--py) */
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--px, 50%) var(--py, 0%),
              rgba(22,224,245,.14), transparent 46%);
  opacity: 0; transition: opacity var(--d-mid);
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: rgba(22,224,245,.3);
  box-shadow: var(--shadow-lift), 0 0 46px -22px rgba(22,224,245,.55);
}
.card > * { position: relative; transform: translateZ(28px); }

.card__no {
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .2em; color: var(--c-faint);
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem;
}
.card__no::after { content: ""; flex: 1; height: 1px; background: var(--c-line); }

.card__ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.35rem;
  background: linear-gradient(150deg, rgba(22,224,245,.16), rgba(22,224,245,.03));
  border: 1px solid rgba(22,224,245,.24);
  color: var(--c-ice);
  transition: transform .55s var(--e-spring), box-shadow var(--d-mid);
}
.card:hover .card__ico {
  transform: translateZ(48px) scale(1.09) rotate(-5deg);
  box-shadow: 0 0 30px -8px rgba(22,224,245,.6);
}
.card__ico svg { width: 25px; height: 25px; }
.card--heat .card__ico {
  background: linear-gradient(150deg, rgba(255,106,23,.18), rgba(255,106,23,.03));
  border-color: rgba(255,106,23,.28); color: var(--c-heat);
}
.card--heat:hover { border-color: rgba(255,106,23,.34); box-shadow: var(--shadow-lift), 0 0 46px -22px rgba(255,106,23,.5); }
.card--heat::before { background: radial-gradient(420px circle at var(--px,50%) var(--py,0%), rgba(255,106,23,.14), transparent 46%); }

.card h3 { font-size: var(--t-h3); margin-bottom: .85rem; }
.card p { color: var(--c-muted); font-size: .945rem; margin-bottom: 1.5rem; }

.tags { display: flex; flex-wrap: wrap; gap: .42rem; }
.tag {
  font-family: var(--f-mono); font-size: .655rem;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .38rem .68rem; border-radius: 7px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--c-line);
  color: var(--c-text-soft);
  transition: border-color var(--d-fast), color var(--d-fast), background var(--d-fast);
}
.card:hover .tag { border-color: var(--c-line-strong); }
.tag:hover { color: var(--c-ice); border-color: rgba(22,224,245,.4); background: rgba(22,224,245,.07); }

/* --------------------------------------------------------------------------
   12 · LEISTUNGSDIAGRAMM (Prüfstand)
   -------------------------------------------------------------------------- */
.dyno {
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, #0C0F16, #080A0F);
  padding: clamp(1.2rem, .8rem + 1.4vw, 2rem);
  box-shadow: var(--shadow-lift);
  position: relative; overflow: hidden;
}
.dyno__head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-bottom: 1.3rem;
}
.dyno__title {
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .2em; text-transform: uppercase; color: var(--c-muted);
}
.dyno__legend { margin-left: auto; display: flex; gap: 1.1rem; flex-wrap: wrap; }
.dyno__key {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--f-mono); font-size: .64rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted);
}
.dyno__key i { width: 15px; height: 2px; border-radius: 2px; background: var(--c-faint); }
.dyno__key--tuned i { background: var(--c-heat); box-shadow: 0 0 9px var(--c-heat); }
.dyno__key--stock i { background: #5A6472; }

.dyno svg { width: 100%; height: auto; overflow: visible; }
.dyno-line {
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
}
.is-in .dyno-line { animation: draw 2.1s var(--e-inout) forwards; }
.is-in .dyno-line--tuned { animation-delay: .45s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.dyno-fill { opacity: 0; transition: opacity 1.1s var(--e-out) 1.5s; }
.is-in .dyno-fill { opacity: 1; }
.dyno-grid { stroke: rgba(255,255,255,.055); stroke-width: 1; }
.dyno-axis { fill: var(--c-faint); font-family: var(--f-mono); font-size: 9px; letter-spacing: .08em; }

.gain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px; background: var(--c-line);
  border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; margin-top: 1.4rem;
}
.gain {
  background: rgba(10,12,17,.85); padding: 1.15rem 1.2rem;
}
.gain__label {
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .17em; text-transform: uppercase; color: var(--c-muted);
  margin-bottom: .5rem;
}
.gain__val {
  font-family: var(--f-display); font-size: 1.85rem; font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
  display: flex; align-items: baseline; gap: .2rem;
}
.gain__val i { font-style: normal; font-size: .48em; color: var(--c-heat); }
.gain__delta {
  font-family: var(--f-mono); font-size: .68rem;
  color: var(--c-signal); margin-top: .45rem;
}

/* Drehzahlmesser */
.tacho { position: relative; display: grid; place-items: center; }
.tacho svg { width: 100%; max-width: 340px; height: auto; }
.tacho__needle {
  transform-origin: 100px 100px;
  transform: rotate(-126deg);
  transition: transform 2.4s cubic-bezier(.3, 1.34, .5, 1);
}
.is-in .tacho__needle { transform: rotate(96deg); }
.tacho__read {
  position: absolute; bottom: 20%; text-align: center;
}
.tacho__read b {
  display: block; font-family: var(--f-display); font-size: 2.1rem;
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.tacho__read span {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .2em;
  color: var(--c-muted); text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   13 · WELTKARTE / REMOTE
   -------------------------------------------------------------------------- */
.globe-panel {
  position: relative;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(22,224,245,.05), transparent 55%), var(--c-surface);
  padding: clamp(1.3rem, .9rem + 1.4vw, 2.2rem);
  overflow: hidden;
}
.globe-panel svg { width: 100%; height: auto; }
.map-dot { fill: rgba(255,255,255,.16); }
.map-hub { fill: var(--c-ice); filter: drop-shadow(0 0 5px var(--c-ice)); }
.map-node { fill: var(--c-ice); opacity: 0; }
.is-in .map-node { animation: node-pop .7s var(--e-spring) forwards; }
@keyframes node-pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: none; } }
.map-arc {
  fill: none; stroke: url(#arcGrad); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
  opacity: .85;
}
.is-in .map-arc { animation: draw 1.7s var(--e-out) forwards; }
.map-ping { fill: var(--c-ice); }

.remote-cols {
  display: grid; gap: 1px; background: var(--c-line);
  border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.rcol {
  background: var(--c-surface);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem);
  transition: background var(--d-mid);
}
.rcol:hover { background: var(--c-surface-2); }
.rcol__tag {
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center; margin-bottom: 1.15rem;
  font-family: var(--f-display); font-weight: 800; font-size: .88rem;
  background: rgba(22,224,245,.12); border: 1px solid rgba(22,224,245,.26);
  color: var(--c-ice);
}
.rcol h3 { font-size: 1.14rem; margin-bottom: 1.15rem; letter-spacing: -.02em; }
.rcol li {
  display: grid; grid-template-columns: 15px 1fr; gap: .7rem;
  padding: .52rem 0; font-size: .89rem; color: var(--c-text-soft);
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.rcol li:last-child { border-bottom: 0; }
.rcol li svg { width: 15px; height: 15px; color: var(--c-ice); margin-top: .3rem; }
.rcol--steps li { grid-template-columns: 22px 1fr; align-items: baseline; }
.rcol--steps li i {
  font-style: normal; font-family: var(--f-mono); font-size: .68rem;
  color: var(--c-heat); font-weight: 700;
}

/* --------------------------------------------------------------------------
   14 · MARKEN-RASTER
   -------------------------------------------------------------------------- */
.brands {
  display: grid; gap: 1px; background: var(--c-line);
  border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
}
.brand-cell {
  background: var(--c-surface);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem) 1.4rem;
  position: relative; overflow: hidden;
  transition: background var(--d-mid) var(--e-out);
  min-height: 168px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.brand-cell::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(22,224,245,.13), transparent 62%);
  opacity: 0; transition: opacity var(--d-mid);
}
.brand-cell:hover { background: var(--c-surface-2); }
.brand-cell:hover::before { opacity: 1; }
.brand-cell__no {
  position: absolute; top: 1.15rem; right: 1.25rem;
  font-family: var(--f-mono); font-size: var(--t-micro);
  color: var(--c-faint); letter-spacing: .14em;
}
.brand-cell__name {
  position: relative;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.15rem, 1rem + .55vw, 1.5rem);
  letter-spacing: -.03em; line-height: 1.05;
  transition: transform .5s var(--e-out);
}
.brand-cell:hover .brand-cell__name { transform: translateY(-3px); }
.brand-cell__models {
  position: relative;
  font-family: var(--f-mono); font-size: .66rem;
  letter-spacing: .15em; color: var(--c-muted); margin-top: .5rem;
  transition: color var(--d-mid);
}
.brand-cell:hover .brand-cell__models { color: var(--c-ice); }

.disclaimer {
  margin-top: 1.5rem; font-size: .78rem; color: var(--c-faint);
  max-width: 90ch; line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15 · ABLAUF (Scroll-Fortschritt)
   -------------------------------------------------------------------------- */
.steps { position: relative; display: grid; gap: clamp(1.6rem, 1rem + 2vw, 3rem); }
.steps::before {
  content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px;
  width: 1px; background: var(--c-line);
}
.steps::after {
  content: ""; position: absolute; left: 27px; top: 14px;
  width: 1px; height: var(--progress, 0%);
  background: linear-gradient(180deg, var(--c-ice), var(--c-heat));
  box-shadow: 0 0 12px rgba(22,224,245,.7);
  transition: height .18s linear;
}
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: clamp(1.2rem, .8rem + 1.4vw, 2.2rem);
  align-items: start;
}
.step__no {
  position: relative; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-strong);
  font-family: var(--f-mono); font-size: .82rem; font-weight: 700;
  color: var(--c-muted);
  transition: border-color var(--d-mid), color var(--d-mid), box-shadow var(--d-mid), background var(--d-mid);
}
.step.is-in .step__no {
  border-color: var(--c-ice); color: var(--c-ice);
  background: rgba(22,224,245,.09);
  box-shadow: 0 0 0 5px rgba(22,224,245,.07), 0 0 26px -6px rgba(22,224,245,.7);
}
.step h3 { font-size: var(--t-h3); margin-bottom: .6rem; padding-top: .55rem; }
.step p { color: var(--c-muted); max-width: 62ch; }

/* --------------------------------------------------------------------------
   16 · FAQ (SEO: Featured Snippets)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .7rem; max-width: 900px; }
.faq__item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  overflow: hidden;
  transition: border-color var(--d-mid), background var(--d-mid);
}
.faq__item[open] { border-color: rgba(22,224,245,.3); background: var(--c-surface-2); }
.faq__q {
  list-style: none; cursor: pointer;
  padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 1.1rem;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(.98rem, .92rem + .35vw, 1.16rem);
  letter-spacing: -.018em; line-height: 1.35;
  transition: color var(--d-fast);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--c-ice); }
.faq__ind {
  margin-left: auto; flex: none;
  width: 26px; height: 26px; border-radius: 8px;
  border: 1px solid var(--c-line-strong);
  display: grid; place-items: center; position: relative;
  transition: transform .45s var(--e-out), border-color var(--d-fast), background var(--d-fast);
}
.faq__ind::before, .faq__ind::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq__ind::before { width: 11px; height: 1.5px; }
.faq__ind::after  { width: 1.5px; height: 11px; transition: transform .45s var(--e-out); }
.faq__item[open] .faq__ind { transform: rotate(180deg); border-color: var(--c-ice); background: rgba(22,224,245,.1); color: var(--c-ice); }
.faq__item[open] .faq__ind::after { transform: scaleY(0); }
.faq__a { padding: 0 1.4rem 1.35rem; color: var(--c-muted); max-width: 74ch; }
.faq__a p + p { margin-top: .7rem; }

/* --------------------------------------------------------------------------
   17 · KONTAKT / CTA
   -------------------------------------------------------------------------- */
.cta {
  position: relative; overflow: hidden;
  border: 1px solid var(--c-line-strong);
  border-radius: clamp(20px, 2.2vw, 34px);
  padding: clamp(2.2rem, 1.4rem + 4vw, 5.5rem);
  background: linear-gradient(150deg, rgba(22,224,245,.075), rgba(255,106,23,.05) 55%, transparent), var(--c-surface);
}
.cta::before { /* rotierender Konus-Glanz */
  content: ""; position: absolute; z-index: 0;
  top: 50%; left: 50%; width: 145%; aspect-ratio: 1;
  translate: -50% -50%;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(22,224,245,.16) 86%, transparent 94%);
  animation: spin 16s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta > * { position: relative; z-index: 1; }

.phone-link {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--f-display);
  font-size: clamp(1.55rem, 1rem + 3.1vw, 3.4rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  margin-block: 1.4rem 1rem;
  transition: color var(--d-fast);
}
.phone-link:hover { color: var(--c-signal); }
.phone-link svg { width: .82em; height: .82em; color: var(--c-signal); flex: none; transition: transform .5s var(--e-spring); }
.phone-link:hover svg { transform: scale(1.14) rotate(-8deg); }

.info-grid {
  display: grid; gap: 1px; background: var(--c-line);
  border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  margin-top: clamp(2rem, 1.4rem + 2vw, 3.2rem);
}
.info {
  background: rgba(10,12,17,.8); padding: 1.3rem 1.35rem;
  transition: background var(--d-mid);
}
.info:hover { background: rgba(22,224,245,.05); }
.info dt {
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: .6rem;
}
.info dd { font-weight: 600; font-size: .96rem; line-height: 1.5; }
.info dd small { display: block; font-weight: 400; color: var(--c-muted); font-size: .82rem; margin-top: .2rem; }

/* --------------------------------------------------------------------------
   18 · FOOTER
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--c-line);
  padding-block: clamp(2.6rem, 2rem + 2vw, 4.2rem) 2rem;
  background: rgba(5,6,9,.6);
}
.footer__top {
  display: grid; gap: 2.4rem;
  grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  margin-bottom: 2.8rem;
}
.footer h4 {
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 500; margin-bottom: 1.1rem;
}
.footer li { margin-bottom: .58rem; }
.footer a { color: var(--c-text-soft); font-size: .9rem; transition: color var(--d-fast); }
.footer a:hover { color: var(--c-ice); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  padding-top: 1.6rem; border-top: 1px solid var(--c-line);
  font-size: .8rem; color: var(--c-faint);
}
.footer__bottom .sep { margin-left: auto; }

/* Schwebender WhatsApp-Button */
.fab {
  position: fixed; right: clamp(1rem, 2.5vw, 2rem); bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #2FE070, var(--c-signal) 60%, #12A850);
  color: #04220F;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.7);
  transform: translateY(96px) scale(.7); opacity: 0;
  transition: transform .65s var(--e-spring), opacity .4s, box-shadow var(--d-mid);
}
.fab.is-on { transform: none; opacity: 1; }
.fab:hover { box-shadow: 0 20px 46px -10px rgba(37,211,102,.9); }
.fab svg { width: 27px; height: 27px; }
.fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--c-signal);
  animation: pulse-ring 2.6s var(--e-out) infinite;
}

/* --------------------------------------------------------------------------
   19 · SCROLL-REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
  transition: opacity .95s var(--e-out), transform .95s var(--e-out), filter .95s var(--e-out);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }

[data-reveal="left"]  { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="clip"] {
  opacity: 1; transform: none; filter: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.15s var(--e-out) var(--delay, 0ms);
}
[data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }

/* Fortschrittsbalken oben */
.read-bar {
  position: fixed; top: 0; left: 0; z-index: 101;
  height: 2px; width: 100%;
  transform: scaleX(var(--p, 0)); transform-origin: left;
  background: linear-gradient(90deg, var(--c-ice), var(--c-heat));
  box-shadow: 0 0 12px rgba(22,224,245,.6);
}

/* Cursor-Glühen (nur Desktop-Zeigegeräte) */
.cursor-glow {
  position: fixed; z-index: 95; pointer-events: none;
  width: 380px; height: 380px; border-radius: 50%;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(22,224,245,.075), transparent 62%);
  opacity: 0; transition: opacity .5s;
  mix-blend-mode: screen;
}
body.has-cursor .cursor-glow { opacity: 1; }

/* --------------------------------------------------------------------------
   20 · RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .split { grid-template-columns: 1fr; }
  .split--sticky > :first-child { position: static; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav .btn { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 4.5rem); padding-bottom: 5rem; }
  .scroll-cue { display: none; }
  .terminal__body { height: 262px; font-size: .68rem; }
  .step { grid-template-columns: 44px 1fr; }
  .step__no { width: 44px; height: 44px; font-size: .72rem; }
  .steps::before, .steps::after { left: 21px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero__stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .fab { width: 52px; height: 52px; }
}

/* --------------------------------------------------------------------------
   21 · BARRIEREFREIHEIT — Bewegung reduzieren
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .hero__title .ln > span { transform: none; opacity: 1; }
  .hero__sub, .hero .btn-row, .hero__stats, .scroll-cue { opacity: 1; }
  .bg-grain, .hero__beam, .cta::before { display: none; }
  #hero-canvas { display: none; }
  .dyno-line { stroke-dashoffset: 0; }
  .dyno-fill { opacity: 1; }
  .map-arc { stroke-dashoffset: 0; }
  .map-node { opacity: 1; }
  .tacho__needle { transform: rotate(96deg); }
}

/* Druck */
@media print {
  .nav, .fab, .bg-grain, .bg-grid, .bg-field, .scroll-cue, .read-bar, .cursor-glow { display: none !important; }
  body { background: #fff; color: #000; }
}

/* --------------------------------------------------------------------------
   22 · GLOBUS — rotierendes Drahtgitter
   Ein Meridian projiziert orthografisch als Ellipse, deren Halbachse rx mit
   sin(Rotationswinkel) schwingt. Genau das animieren wir — dadurch entsteht
   eine geometrisch korrekte Kugelrotation statt eines Fake-Effekts.
   -------------------------------------------------------------------------- */
.globe-wire .mer {
  animation: meridian 22s linear infinite;
  animation-delay: calc(var(--i) * -2.75s);
}
@keyframes meridian {
   0%  { rx: 178px; }
  25%  { rx: 0px;   }
  50%  { rx: 178px; }
  75%  { rx: 0px;   }
 100%  { rx: 178px; }
}

.globe-dots { animation: globe-breath 9s var(--e-inout) infinite; transform-origin: center; }
@keyframes globe-breath { 50% { opacity: .55; } }

.globe-panel::after {         /* wandernder Lichtschimmer über der Kugel */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(22,224,245,.07) 50%, transparent 62%);
  transform: translateX(-100%);
  animation: sheen 8.5s var(--e-inout) infinite;
}
@keyframes sheen {
  0%, 62% { transform: translateX(-100%); }
  100%    { transform: translateX(100%); }
}

.map-node { transform-box: fill-box; transform-origin: center; }
.map-hub  { animation: hub-glow 2.6s var(--e-inout) infinite; }
@keyframes hub-glow { 50% { r: 6.4; } }

@media (prefers-reduced-motion: reduce) {
  .globe-wire .mer, .globe-dots, .globe-panel::after, .map-hub { animation: none; }
}

/* --------------------------------------------------------------------------
   23 · KORREKTUREN
   -------------------------------------------------------------------------- */

/* HINWEIS: Hier stand `html { overflow-x: clip }` gegen den Mobil-Überlauf.
   Das bricht in Chromium das sanfte Anker-Scrollen — ein Klick im Menü schoss
   weit über die Zielsektion hinaus. `body { overflow-x: hidden }` wird ohnehin
   auf den Viewport propagiert und verhindert seitliches Panning; die seitlichen
   Reveal-Transforms werden unten zusätzlich auf schmalen Displays deaktiviert. */

/* Auf schmalen Displays reicht der Platz für seitliche Bewegung nicht —
   dort blenden alle Elemente vertikal ein. */
@media (max-width: 900px) {
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(30px); }
}

/* Tippfläche der Telefonnummer auf Touch-Geräten vergrössern */
.phone-link { padding-block: .55rem; }

/* ==========================================================================
   24 · FEINSCHLIFF NACH VISUELLER PRÜFUNG
   ========================================================================== */

/* -- 24.1 Hero war zu gross: CTA und Kennzahlen fielen unter die Falz ------ */
:root {
  --t-hero: clamp(2.75rem, 1.1rem + 6.1vw, 6.6rem);
  --sec-y:  clamp(4rem, 2.4rem + 6.4vw, 8.5rem);
}
.sec-head { margin-bottom: clamp(2rem, 1.4rem + 2.2vw, 3.4rem); }
.hero__title { max-width: 17ch; margin-bottom: 1.6rem; }
.hero__stats { margin-top: clamp(2.4rem, 1.6rem + 3vw, 4rem); }

/* Verlaufstext muss so breit sein wie der Text selbst — sonst endet der
   Verlauf mitten im Wort, weil er die volle Blockbreite abbildet. */
.hero__title .ln > span.grad { width: fit-content; }

/* -- 24.2 Raster ohne Waisenzellen ---------------------------------------
   `auto-fit` kollabiert nur komplett leere Spalten. Bei 8 Marken in 7
   Spalten blieb eine Zeile mit 6 Lücken stehen — daher feste Spaltenzahl. */
.brands { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 620px)  { .brands { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .brands { grid-template-columns: repeat(4, 1fr); } }

.info-grid { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 620px)  { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .info-grid { grid-template-columns: repeat(3, 1fr); } }

.gain-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gain-grid { grid-template-columns: repeat(4, 1fr); } }

/* -- 24.3 FAQ zweispaltig: Überschrift bleibt stehen, Fragen laufen mit --- */
.faq-layout {
  display: grid;
  gap: clamp(2rem, 1.2rem + 3vw, 4.5rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.3fr);
  align-items: start;
}
.faq-layout > .sec-head {
  position: sticky;
  top: calc(var(--nav-h) + 2.5rem);
  margin-bottom: 0;
}
.faq { max-width: none; }
@media (max-width: 1000px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout > .sec-head { position: static; margin-bottom: 1rem; }
}

/* -- 24.4 Prüfstand: Diagramm und Drehzahlmesser sauber trennen ----------- */
@media (max-width: 1080px) {
  .dyno-split { grid-template-columns: 1fr !important; }
  .tacho { max-width: 340px; margin-inline: auto; }
}

/* ==========================================================================
   25 · FAHRZEUGBILDER
   ========================================================================== */

/* -- 25.1 Grundbaustein: Bildrahmen mit weichem Aufblenden ---------------- */
.media-img { display: block; width: 100%; height: 100%; }
.media-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* Die Fotos sind kühl und kontrastreich — leicht gedämpft fügen sie sich
     in die dunkle Fläche ein, statt herauszustechen. */
  filter: saturate(1.06) contrast(1.04) brightness(.94);
  transition: transform 1.2s var(--e-out), filter var(--d-mid);
}

/* Ken-Burns: sehr langsamer Zoom. Das Bild "atmet" — wirkt wie eine
   ruhige Kamerafahrt statt wie ein statischer Screenshot. */
.media-img--kb img { animation: kenburns 26s var(--e-inout) infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to   { transform: scale(1.11) translate3d(-1.4%, -1.2%, 0); }
}

.media-panel, .hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line-strong);
  background: var(--c-surface);
  box-shadow: var(--shadow-lift), 0 0 70px -34px rgba(22, 224, 245, .55);
  isolation: isolate;
}
.media-panel { aspect-ratio: 4 / 3; }

/* Farbschleier: bindet das Foto an die Markenfarben */
.media-panel::after, .hero__frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(200deg, rgba(22,224,245,.13), transparent 46%),
    linear-gradient(0deg, rgba(6,7,10,.72), transparent 52%);
}

/* Streifendes Scanlicht — läuft wie ein Prüfstrahl über den Lack */
.media-scan {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(108deg, transparent 40%, rgba(22,224,245,.16) 50%, transparent 60%);
  transform: translateX(-115%);
  animation: media-scan 9s var(--e-inout) infinite;
}
@keyframes media-scan {
  0%, 58% { transform: translateX(-115%); }
  100%    { transform: translateX(115%); }
}

/* Bildunterschrift */
.media-cap {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: .95rem;
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted);
}
.media-cap--overlay {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  margin: 0; padding: .48rem .85rem;
  background: rgba(6,7,10,.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  color: var(--c-text-soft);
}

/* -- 25.2 Hero: Text links, Fahrzeug rechts ------------------------------ */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(2rem, 1rem + 3.4vw, 4.2rem);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__title { max-width: 13ch; }

.hero__media {
  margin: 0;
  opacity: 0;
  animation: fade-up 1.15s var(--e-out) .5s forwards;
}
.hero__frame { aspect-ratio: 16 / 10; }

/* Das Bild bringt links viel Dunkelheit mit — dort steht die Schrift.
   Auf schmalen Layouts rücken wir den Bildausschnitt zum Fahrzeug. */
.hero__frame img { object-position: 42% center; }

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__title { max-width: 17ch; }
  .hero__frame { aspect-ratio: 16 / 9; }
  .hero__frame img { object-position: 38% center; }
}

/* -- 25.3 Werkbank-Sektion mit Werkstattfoto ----------------------------- */
.cta--photo { border-color: rgba(255,255,255,.18); }
.cta__bg {
  position: absolute; inset: 0; z-index: 0;
  border-radius: inherit; overflow: hidden;
}
.cta__bg .media-img img {
  filter: saturate(.9) brightness(.42) contrast(1.08);
  animation: kenburns 34s var(--e-inout) infinite alternate;
}
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 50% 50%, rgba(6,7,10,.35), rgba(6,7,10,.9) 78%),
    linear-gradient(190deg, rgba(22,224,245,.1), transparent 50%);
}
/* Der rotierende Konus-Glanz würde das Foto überstrahlen */
.cta--photo::before { display: none; }
.cta--photo .lead { color: #D6DCE6; }

@media (prefers-reduced-motion: reduce) {
  .media-img--kb img, .cta__bg .media-img img, .media-scan { animation: none; }
  .hero__media { opacity: 1; }
}

/* -- 25.4 Hero-Typografie an die schmalere Spalte anpassen ---------------
   Mit dem Bild daneben hat die Überschrift nur noch die halbe Breite.
   Lange Wörter wie "Codierung." wurden sonst vom Zeilenmaskierer beschnitten. */
:root { --t-hero: clamp(2.5rem, 0.9rem + 3.6vw, 4.5rem); }

.hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.hero__title { max-width: 100%; }
.hero__loc { white-space: nowrap; }

@media (max-width: 1240px) {
  .hero__loc { white-space: normal; }
}
@media (max-width: 1080px) {
  :root { --t-hero: clamp(2.5rem, 1.2rem + 5.6vw, 5rem); }
}

/* -- 25.5 KORREKTUR: Hero-Spalten nur ab Desktop --------------------------
   Die Zweispalten-Regel in 25.4 stand ohne Media Query nach der Mobil-Regel
   aus 25.2 und hat sie überschrieben — das Fahrzeugbild war auf dem Handy
   nur 74 px hoch. Jetzt greift sie ausschliesslich auf grossen Displays. */
.hero__grid { grid-template-columns: 1fr; }

@media (min-width: 1081px) {
  .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
}

/* ==========================================================================
   26 · FAHRZEUG-KONFIGURATOR
   Die Konkurrenz filtert damit eine Preisdatenbank. Hier entsteht stattdessen
   eine fertige WhatsApp-Anfrage — passend zu einem Betrieb, der über WhatsApp
   arbeitet, und ohne Preise zu behaupten, die erst die Diagnose ergibt.
   ========================================================================== */
.cfg {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.cfg__form {
  background: var(--c-surface);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1rem, .7rem + 1vw, 1.6rem);
  align-content: start;
}
.cfg__field--wide { grid-column: 1 / -1; }

.cfg__label {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: .7rem;
}
.cfg__label i {
  font-style: normal;
  width: 19px; height: 19px; border-radius: 6px;
  display: grid; place-items: center;
  background: rgba(22,224,245,.12);
  border: 1px solid rgba(22,224,245,.28);
  color: var(--c-ice); font-size: .62rem; font-weight: 700;
}

/* Auswahlfeld — eigener Pfeil, weil der System-Pfeil im Dunkeln verschwindet */
.cfg__sel { position: relative; }
.cfg__sel select {
  appearance: none; -webkit-appearance: none;
  width: 100%;
  padding: .95rem 2.6rem .95rem 1rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-strong);
  border-radius: 11px;
  color: var(--c-text);
  font-size: .93rem; font-weight: 500;
  cursor: pointer;
  transition: border-color var(--d-fast), background var(--d-fast), box-shadow var(--d-fast);
}
.cfg__sel select:hover:not(:disabled) { border-color: rgba(22,224,245,.45); }
.cfg__sel select:focus-visible {
  outline: none;
  border-color: var(--c-ice);
  box-shadow: 0 0 0 3px rgba(22,224,245,.16);
}
.cfg__sel select:disabled { opacity: .45; cursor: not-allowed; }
.cfg__sel select option { background: #0F131A; color: var(--c-text); }
.cfg__sel svg {
  position: absolute; right: .95rem; top: 50%; translate: 0 -50%;
  width: 15px; height: 15px; color: var(--c-muted); pointer-events: none;
  transition: color var(--d-fast);
}
.cfg__sel select:hover:not(:disabled) + svg { color: var(--c-ice); }

/* Auswahl-Chips */
.cfg__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.cfg__chip {
  padding: .6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--c-line-strong);
  background: var(--c-glass);
  color: var(--c-text-soft);
  font-size: .85rem; font-weight: 500;
  cursor: pointer;
  transition: border-color var(--d-fast), background var(--d-fast),
              color var(--d-fast), transform var(--d-fast) var(--e-out);
}
.cfg__chip:hover { border-color: rgba(22,224,245,.45); color: var(--c-text); }
.cfg__chip:active { transform: scale(.97); }
.cfg__chip[aria-pressed="true"] {
  background: rgba(22,224,245,.13);
  border-color: var(--c-ice);
  color: var(--c-ice);
  box-shadow: 0 0 22px -8px rgba(22,224,245,.7);
}

/* Ergebnis-Karte — sieht aus wie ein Werkstatt-Auftragszettel */
.cfg__out {
  background: linear-gradient(170deg, rgba(22,224,245,.05), transparent 55%), var(--c-bg-2);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
  display: flex; flex-direction: column;
}
.cfg__outhead {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-text-soft); margin-bottom: 1.1rem;
}
.cfg__ticket {
  flex: 1;
  min-height: 168px;
  border: 1px dashed var(--c-line-strong);
  border-radius: 12px;
  padding: 1.1rem;
  background: rgba(0,0,0,.28);
  margin-bottom: 1.2rem;
}
.cfg__empty { color: var(--c-faint); font-size: .88rem; }

.cfg__line {
  display: grid; grid-template-columns: 5.6rem 1fr; gap: .8rem;
  padding: .5rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.07);
  font-size: .89rem;
  opacity: 0;
  animation: cfg-in .45s var(--e-out) forwards;
}
.cfg__line:last-child { border-bottom: 0; }
@keyframes cfg-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}
.cfg__line dt {
  font-family: var(--f-mono); font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-muted); padding-top: .18rem;
}
.cfg__line dd { margin: 0; font-weight: 600; color: var(--c-text); }

.cfg__send { width: 100%; }
.cfg__send[aria-disabled="true"] { opacity: .42; pointer-events: none; }
.cfg__note { font-size: .78rem; color: var(--c-faint); margin-top: .9rem; line-height: 1.6; }

@media (max-width: 900px) {
  .cfg { grid-template-columns: 1fr; }
}

/* ==========================================================================
   27 · UNTERSEITEN — Katalog, Produkt, FIN-Decoder
   ========================================================================== */
body.subpage { padding-top: var(--nav-h); }
.page-head { padding-top: clamp(2rem, 1.4rem + 2vw, 3.4rem); }

/* Brotkrumen */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-faint); margin-bottom: 1.6rem;
}
.crumbs a { color: var(--c-muted); transition: color var(--d-fast); }
.crumbs a:hover { color: var(--c-ice); }
.crumbs span[aria-current] { color: var(--c-text-soft); }

.mono-label {
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: .55rem;
}

/* -- Markenkarte im Katalog ---------------------------------------------- */
.brand-card { display: block; position: relative; }
.brand-card__name {
  font-size: clamp(1.4rem, 1.15rem + 1vw, 2rem);
  letter-spacing: -.03em; margin-bottom: .25rem;
}
.brand-card__group {
  font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-faint); margin-bottom: 1.2rem;
}
.brand-card__meta {
  display: flex; gap: 1.6rem; margin-bottom: 1.2rem;
  font-size: .82rem; color: var(--c-muted);
}
.brand-card__meta b {
  display: block; font-family: var(--f-display); font-size: 1.5rem;
  font-weight: 800; color: var(--c-text); letter-spacing: -.03em; line-height: 1;
}
.brand-card__go {
  position: absolute; right: 1.5rem; bottom: 1.5rem;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--c-line-strong); color: var(--c-muted);
  transition: transform .45s var(--e-out), border-color var(--d-fast), color var(--d-fast);
}
.brand-card:hover .brand-card__go {
  transform: translateX(4px); border-color: var(--c-ice); color: var(--c-ice);
}
.brand-card__go svg { width: 15px; height: 15px; }

/* -- Technik-Raster ------------------------------------------------------- */
.spec-grid {
  display: grid; gap: 1px; background: var(--c-line);
  border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.spec-grid > div { background: var(--c-surface); padding: 1.1rem 1.2rem; }
.spec-grid dd { margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; font-size: .9rem; }

/* -- Leistungsliste ------------------------------------------------------- */
.svc-list { display: grid; gap: .6rem; }
.svc {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto 20px;
  gap: 1.1rem; align-items: center;
  padding: 1.05rem 1.3rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  transition: border-color var(--d-fast), background var(--d-fast), transform var(--d-fast) var(--e-out);
}
.svc:hover {
  border-color: rgba(22,224,245,.35);
  background: var(--c-surface-2);
  transform: translateX(3px);
}
.svc__ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(22,224,245,.15), rgba(22,224,245,.03));
  border: 1px solid rgba(22,224,245,.22); color: var(--c-ice);
}
.svc__ico--heat {
  background: linear-gradient(150deg, rgba(255,106,23,.17), rgba(255,106,23,.03));
  border-color: rgba(255,106,23,.26); color: var(--c-heat);
}
.svc__ico svg { width: 21px; height: 21px; }
.svc__txt { min-width: 0; }
.svc__txt b { display: block; font-weight: 650; margin-bottom: .15rem; }
.svc__txt span { display: block; font-size: .86rem; color: var(--c-muted); }
.svc__meta { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.svc__price {
  font-family: var(--f-mono); font-size: .78rem; color: var(--c-text);
  white-space: nowrap;
}
.svc > svg { width: 18px; height: 18px; color: var(--c-faint); }
.svc:hover > svg { color: var(--c-ice); }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--f-mono); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 6px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--c-line);
  color: var(--c-muted); white-space: nowrap;
}
.badge--ok { color: var(--c-signal); border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.08); }
.badge svg { width: 12px; height: 12px; }

/* -- Baureihen-Raster ----------------------------------------------------- */
.model-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.model-grp .tags { gap: .3rem; }

/* -- Produktseite --------------------------------------------------------- */
.prod {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.6rem, 1rem + 2.6vw, 3.4rem);
  align-items: start;
}
.prod__main { min-width: 0; }
.prose { margin-top: 1.6rem; }
.prose p { color: var(--c-text-soft); max-width: 68ch; line-height: 1.75; }
.prod__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }

.buy {
  position: sticky; top: calc(var(--nav-h) + 1.6rem);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(22,224,245,.06), transparent 55%), var(--c-surface);
  padding: 1.5rem;
  box-shadow: var(--shadow-lift);
}
.buy__price {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.5rem);
  letter-spacing: -.035em; line-height: 1;
  margin-bottom: 1.2rem;
}
.buy__cur { font-size: .5em; color: var(--c-ice); margin-right: .3rem; vertical-align: .35em; }
.buy__req { font-size: .62em; color: var(--c-text-soft); letter-spacing: -.02em; }
.buy__rows { margin: 0 0 1.3rem; display: grid; gap: 0; }
.buy__rows > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0; border-bottom: 1px dashed rgba(255,255,255,.07);
  font-size: .86rem;
}
.buy__rows > div:last-child { border-bottom: 0; }
.buy__rows dt { color: var(--c-muted); }
.buy__rows dd { margin: 0; font-weight: 600; }
.buy .btn { width: 100%; }
.buy__note { font-size: .76rem; color: var(--c-faint); margin-top: .8rem; line-height: 1.6; }

.notice {
  margin-top: 2.4rem;
  border: 1px solid rgba(255,106,23,.3);
  border-left-width: 3px;
  border-radius: var(--radius);
  background: rgba(255,106,23,.05);
  padding: 1.1rem 1.3rem;
}
.notice .mono-label { color: var(--c-heat); }
.notice p:last-child { color: var(--c-text-soft); font-size: .89rem; line-height: 1.7; }

@media (max-width: 900px) {
  .prod { grid-template-columns: 1fr; }
  .buy { position: static; }
  .svc { grid-template-columns: 40px minmax(0,1fr); gap: .9rem .8rem; }
  .svc__meta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .svc > svg { display: none; }
}

/* -- FIN-Decoder ---------------------------------------------------------- */
.vin {
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(22,224,245,.05), transparent 55%), var(--c-surface);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
  box-shadow: var(--shadow-lift);
}
.vin__row { display: flex; gap: .7rem; flex-wrap: wrap; }
.vin__input {
  flex: 1 1 20rem; min-width: 0;
  padding: 1.05rem 1.1rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-strong);
  border-radius: 12px;
  font-family: var(--f-mono);
  font-size: 1.02rem; letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color var(--d-fast), box-shadow var(--d-fast);
}
.vin__input::placeholder { color: var(--c-faint); letter-spacing: .1em; text-transform: none; }
.vin__input:focus-visible {
  outline: none; border-color: var(--c-ice);
  box-shadow: 0 0 0 3px rgba(22,224,245,.16);
}
.vin__msg { min-height: 1.3rem; margin-top: .7rem; font-size: .85rem; }
.vin__msg--err { color: #FF7A6B; }
.vin__privacy {
  display: flex; align-items: flex-start; gap: .5rem;
  margin-top: .5rem; font-size: .78rem; color: var(--c-faint); line-height: 1.6;
}
.vin__privacy svg { width: 13px; height: 13px; color: var(--c-signal); flex: none; margin-top: .28rem; }

.vin__out { margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line); }
.vin__grid { margin: 0 0 1.4rem; display: grid; gap: 0; }
.vin__r {
  display: grid; grid-template-columns: minmax(8rem, 12rem) 1fr; gap: 1rem;
  padding: .68rem 0; border-bottom: 1px dashed rgba(255,255,255,.07);
  opacity: 0; animation: cfg-in .45s var(--e-out) forwards;
}
.vin__r:last-child { border-bottom: 0; }
.vin__r dt {
  font-family: var(--f-mono); font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-muted); padding-top: .2rem;
}
.vin__r dd { margin: 0; font-size: .95rem; }
.vin__r dd code {
  font-family: var(--f-mono); font-size: .88rem;
  letter-spacing: .1em; color: var(--c-ice);
  background: rgba(22,224,245,.08);
  border: 1px solid rgba(22,224,245,.18);
  padding: .12rem .45rem; border-radius: 5px;
}
.vin__dim { color: var(--c-faint); font-size: .88rem; }
.vin__ok { color: var(--c-signal); font-weight: 600; }
.vin__bad { color: #FF7A6B; font-weight: 600; }
.vin__r.is-ok { background: linear-gradient(90deg, rgba(37,211,102,.06), transparent 60%); }
.vin__r.is-bad { background: linear-gradient(90deg, rgba(255,90,70,.07), transparent 60%); }
.vin__cta { width: 100%; }

@media (max-width: 620px) {
  .vin__r { grid-template-columns: 1fr; gap: .2rem; }
  .vin__input { flex-basis: 100%; }
}

/* -- Shop-Teaser auf der Startseite --------------------------------------- */
.shop-teaser {
  display: grid; gap: .6rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.shop-chip {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: -.02em;
  transition: border-color var(--d-fast), background var(--d-fast), transform var(--d-fast) var(--e-out);
}
.shop-chip:hover {
  border-color: rgba(22,224,245,.4);
  background: var(--c-surface-2);
  transform: translateY(-2px);
}
.shop-chip__n {
  font-family: var(--f-mono); font-size: .66rem; font-weight: 500;
  min-width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
  background: rgba(22,224,245,.12);
  border: 1px solid rgba(22,224,245,.26);
  color: var(--c-ice);
}

/* ==========================================================================
   28 · FSC-CODES
   ========================================================================== */
.fsc-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 20px;
  gap: 1.2rem; align-items: center;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(22, 224, 245, .3);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(22,224,245,.1), transparent 55%),
    var(--c-surface);
  transition: border-color var(--d-fast), transform var(--d-fast) var(--e-out),
              box-shadow var(--d-mid);
}
.fsc-banner:hover {
  border-color: var(--c-ice);
  transform: translateY(-2px);
  box-shadow: 0 0 44px -20px rgba(22, 224, 245, .6);
}
.fsc-banner__txt b {
  display: block;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.05rem, .95rem + .5vw, 1.35rem);
  letter-spacing: -.025em; margin-bottom: .3rem;
}
.fsc-banner__txt span {
  display: block; color: var(--c-muted);
  font-size: .88rem; line-height: 1.6; max-width: 72ch;
}
.fsc-banner__n {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.6rem; letter-spacing: -.03em; line-height: 1;
  color: var(--c-ice);
}
.fsc-banner > svg { width: 18px; height: 18px; color: var(--c-muted); }
.fsc-banner:hover > svg { color: var(--c-ice); }

/* Produktraster */
.fsc-grid {
  display: grid; gap: .7rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.fsc-card {
  position: relative;
  display: flex; flex-direction: column; gap: .55rem;
  padding: 1.2rem 1.3rem 1.3rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  transition: border-color var(--d-fast), background var(--d-fast),
              transform var(--d-fast) var(--e-out);
}
.fsc-card:hover {
  border-color: rgba(22,224,245,.35);
  background: var(--c-surface-2);
  transform: translateY(-2px);
}
.fsc-card__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
}
.fsc-card__head b {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.02rem; letter-spacing: -.02em; line-height: 1.2;
}
.fsc-card__price {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.25rem; letter-spacing: -.03em;
  white-space: nowrap; color: var(--c-text);
}
.fsc-card__price i {
  font-style: normal; font-size: .55em; color: var(--c-ice);
  margin-right: .22em; vertical-align: .28em;
}
.fsc-card__price--req {
  font-size: .78rem; font-weight: 500; font-family: var(--f-body);
  color: var(--c-muted); letter-spacing: 0;
}
.fsc-card__desc { color: var(--c-muted); font-size: .87rem; line-height: 1.55; }
.fsc-card > svg {
  position: absolute; right: 1.2rem; bottom: 1.2rem;
  width: 16px; height: 16px; color: var(--c-faint);
  transition: transform var(--d-fast) var(--e-out), color var(--d-fast);
}
.fsc-card:hover > svg { transform: translateX(3px); color: var(--c-ice); }
.fsc-card .tags { margin-top: .2rem; }

/* FIN-Eingabe im Bestellablauf */
.fsc-vin {
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  background: var(--c-bg-2);
  padding: 1.3rem;
}
.vin__msg--ok { color: var(--c-signal); }
.btn--ready { box-shadow: 0 0 0 3px rgba(37,211,102,.22), 0 14px 34px -14px rgba(37,211,102,.8); }

@media (max-width: 620px) {
  .fsc-banner { grid-template-columns: minmax(0,1fr) auto; }
  .fsc-banner > svg { display: none; }
}

/* ==========================================================================
   29 · RATGEBER-LAYOUT UND NACHGEREICHTE KLASSEN

   Diese Klassen wurden im Markup verwendet, ohne dass es Regeln dafür gab.
   Sichtbarste Folge: das Häkchen-SVG in den Listen hatte keine Grösse und
   dehnte sich auf die volle Spaltenbreite aus. Ein SVG ohne width/height
   füllt seinen Container — deshalb steht die Grösse hier zuerst.
   ========================================================================== */

/* -- 29.1 Listen mit Häkchen (Ratgeber, FSC-Ablauf) ---------------------- */
.art__ul {
  display: grid; gap: .55rem;
  margin: 1.2rem 0 0; padding: 0;
  list-style: none;
}
.art__ul li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  color: var(--c-text-soft);
  font-size: .94rem; line-height: 1.6;
}
/* Die eigentliche Ursache des Fehlers */
.art__ul li > svg {
  width: 20px; height: 20px;
  flex: none;
  margin-top: .18rem;
  padding: 3px;
  border-radius: 6px;
  background: rgba(22, 224, 245, .1);
  border: 1px solid rgba(22, 224, 245, .26);
  color: var(--c-ice);
}

/* -- 29.2 Artikel-Layout -------------------------------------------------- */
.art {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(1.8rem, 1.2rem + 2.6vw, 3.6rem);
  align-items: start;
}
.art__main { min-width: 0; }
.art__side { min-width: 0; display: grid; gap: 1rem; }

.art__head { margin-bottom: 2rem; }
.art__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem;
  margin-top: .9rem;
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-muted);
}

.art__prose > * + * { margin-top: 1.1rem; }
.art__prose p { color: var(--c-text-soft); max-width: 68ch; line-height: 1.78; }
.art__h2 {
  margin-top: 2.6rem !important;
  padding-top: 1.6rem;
  border-top: 1px solid var(--c-line);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
.art__prose > .art__h2:first-child { margin-top: 0 !important; padding-top: 0; border-top: 0; }
.art__prose .notice { margin-top: 1.6rem; }

/* Tabellen im Artikel — müssen für sich scrollen, nie die Seite */
.art__tablewrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
}
.art__table {
  width: 100%; border-collapse: collapse;
  font-size: .88rem; min-width: 460px;
}
.art__table th, .art__table td {
  text-align: left; padding: .72rem .9rem;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
.art__table thead th {
  font-family: var(--f-mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 500;
  background: rgba(255, 255, 255, .025);
  white-space: nowrap;
}
.art__table tbody th {
  font-weight: 650; color: var(--c-text);
  white-space: nowrap;
}
.art__table td { color: var(--c-text-soft); }
.art__table tbody tr:last-child th,
.art__table tbody tr:last-child td { border-bottom: 0; }
.art__table tbody tr:hover { background: rgba(22, 224, 245, .04); }

.art__cta {
  margin-top: 3rem; padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(37, 211, 102, .07), transparent 55%), var(--c-surface);
}

/* -- 29.3 Inhaltsverzeichnis --------------------------------------------- */
.toc {
  position: sticky; top: calc(var(--nav-h) + 1.6rem);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
}
.toc ol { counter-reset: toc; margin: 0; padding: 0; list-style: none; }
.toc li { counter-increment: toc; margin-bottom: .1rem; }
/* Nur Links INNERHALB der Liste bekommen eine Nummer — sonst erbt auch
   die Leistungskachel im Nachbarkasten ein "00". */
.toc ol a {
  display: grid; grid-template-columns: 1.4rem 1fr; gap: .5rem;
  padding: .42rem 0;
  font-size: .85rem; line-height: 1.45;
  color: var(--c-muted);
  transition: color var(--d-fast);
}
.toc ol a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--f-mono); font-size: .62rem;
  color: var(--c-faint); padding-top: .18rem;
}
.toc ol a:hover { color: var(--c-ice); }
.toc ol a:hover::before { color: var(--c-ice); }
.toc--svc { position: static; }

/* -- 29.4 Beitragsliste --------------------------------------------------- */
.post-list { display: grid; gap: .7rem; }
.post {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 20px;
  gap: 1.2rem; align-items: start;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  transition: border-color var(--d-fast), background var(--d-fast),
              transform var(--d-fast) var(--e-out);
}
.post:hover {
  border-color: rgba(22, 224, 245, .35);
  background: var(--c-surface-2);
  transform: translateX(3px);
}
.post__no {
  font-family: var(--f-display); font-weight: 900;
  font-size: 1.6rem; line-height: 1; letter-spacing: -.04em;
  color: var(--c-line-strong);
  font-variant-numeric: tabular-nums;
  padding-top: .1rem;
}
.post:hover .post__no { color: var(--c-ice); }
.post__body { min-width: 0; display: block; }
.post__title {
  font-size: clamp(1.02rem, .95rem + .45vw, 1.28rem);
  letter-spacing: -.022em; line-height: 1.25;
  margin-bottom: .4rem;
}
.post__desc {
  display: block; color: var(--c-muted);
  font-size: .89rem; line-height: 1.6; max-width: 72ch;
}
.post__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  margin-top: .7rem;
  font-family: var(--f-mono); font-size: var(--t-micro);
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--c-faint);
}
.post > svg {
  width: 18px; height: 18px; color: var(--c-faint);
  margin-top: .5rem;
  transition: transform var(--d-fast) var(--e-out), color var(--d-fast);
}
.post:hover > svg { transform: translateX(3px); color: var(--c-ice); }

/* -- 29.5 Nachgereichte Kleinigkeiten ------------------------------------ */
.prod__buy { min-width: 0; }

.shop-chip__name { min-width: 0; overflow-wrap: anywhere; }

/* Kompakte Leistungskachel in der Artikel-Seitenspalte */
.svc--mini {
  grid-template-columns: 40px minmax(0, 1fr);
  padding: .9rem 1rem;
  margin-top: .2rem;
}
.svc--mini .svc__ico { width: 40px; height: 40px; border-radius: 11px; }
.svc--mini .svc__ico svg { width: 19px; height: 19px; }
.svc--mini .svc__txt b { font-size: .9rem; line-height: 1.3; text-wrap: balance; }
.svc--mini:hover { transform: none; }

@media (max-width: 1000px) {
  .art { grid-template-columns: 1fr; }
  .toc { position: static; }
  .art__side { order: -1; }
}
@media (max-width: 620px) {
  .post { grid-template-columns: minmax(0, 1fr); gap: .5rem; }
  .post__no { font-size: 1.1rem; }
  .post > svg { display: none; }
}

/* ==========================================================================
   30 · BESTELLFORMULAR
   ========================================================================== */
.orderform {
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(22, 224, 245, .05), transparent 55%), var(--c-surface);
  padding: clamp(1.2rem, .9rem + 1.2vw, 1.9rem);
}

/* Honigtopf: für Menschen unsichtbar, für Bots ein Köder.
   Nicht display:none — manche Bots ignorieren genau das. */
.orderform__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.orderform__grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.orderform__field { min-width: 0; }
.orderform__field--wide { grid-column: 1 / -1; }

.orderform__text {
  letter-spacing: normal;
  text-transform: none;
  font-family: var(--f-body);
  font-size: .95rem;
}
.orderform__area { resize: vertical; min-height: 3.4rem; line-height: 1.55; }

.orderform__hint {
  margin-top: .4rem;
  font-size: .76rem; color: var(--c-faint); line-height: 1.5;
}

.orderform__foot {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  margin-top: 1.4rem; padding-top: 1.3rem;
  border-top: 1px solid var(--c-line);
}
.orderform__total b {
  display: block;
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.9rem; letter-spacing: -.035em; line-height: 1;
}
.orderform__total b i {
  font-style: normal; font-size: .48em; color: var(--c-ice);
  margin-right: .25em; vertical-align: .32em;
}
.orderform__submit { flex: 1 1 15rem; }
.orderform__submit[aria-busy="true"] { opacity: .6; pointer-events: none; }

.orderform__ask {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px dashed var(--c-line);
  font-size: .84rem; color: var(--c-muted);
}
.orderform__ask a {
  color: var(--c-signal); font-weight: 600;
  border-bottom: 1px solid rgba(37, 211, 102, .35);
  transition: border-color var(--d-fast);
}
.orderform__ask a:hover { border-bottom-color: var(--c-signal); }

/* Fehlermarkierung an Pflichtfeldern, aber erst nach der Eingabe */
.orderform input:user-invalid,
.orderform textarea:user-invalid { border-color: rgba(255, 122, 107, .6); }

@media (max-width: 560px) {
  .orderform__foot { flex-direction: column; align-items: stretch; }
  .orderform__total { display: flex; align-items: baseline; gap: .7rem; }
}

/* ==========================================================================
   31 · RECHTSSEITEN
   ========================================================================== */

/* Offene Angaben sollen ins Auge springen — eine Rechtsseite mit
   unsichtbaren Lücken ist gefährlicher als eine, der man ansieht,
   dass sie noch nicht fertig ist. */
.todo {
  display: inline-block;
  background: rgba(255, 106, 23, .14);
  border: 1px dashed rgba(255, 106, 23, .55);
  color: var(--c-heat);
  padding: .1rem .5rem;
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .04em;
}

.notice--warn {
  border-color: rgba(255, 106, 23, .5);
  background: rgba(255, 106, 23, .08);
  margin-bottom: 2rem;
}

.legal-dl {
  display: grid; gap: 0;
  margin: 1.3rem 0 0;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.legal-dl > div {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 1fr);
  gap: 1rem;
  padding: .78rem 1.1rem;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-surface);
  font-size: .92rem;
}
.legal-dl > div:last-child { border-bottom: 0; }
.legal-dl dt {
  font-family: var(--f-mono); font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-muted); padding-top: .22rem;
}
.legal-dl dd { margin: 0; color: var(--c-text); font-weight: 500; }

.legal-quote {
  margin: 1.3rem 0 0;
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--c-ice);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(22, 224, 245, .05);
  font-family: var(--f-mono);
  font-size: .84rem; line-height: 1.75;
  color: var(--c-text-soft);
}

.legal-nav { margin: 0; padding: 0; list-style: none; }
.legal-nav li { margin-bottom: .1rem; }
.legal-nav a {
  display: block; padding: .48rem 0;
  font-size: .87rem; color: var(--c-muted);
  transition: color var(--d-fast);
}
.legal-nav a:hover { color: var(--c-ice); }

/* Rechtslinks im Fuss — gesetzlich von jeder Seite erreichbar */
.footer__legal {
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  padding-top: 1.4rem; margin-top: .6rem;
  border-top: 1px solid var(--c-line);
}
.footer__legal a {
  font-size: .83rem; color: var(--c-text-soft);
  transition: color var(--d-fast);
}
.footer__legal a:hover { color: var(--c-ice); }

@media (max-width: 560px) {
  .legal-dl > div { grid-template-columns: 1fr; gap: .25rem; }
}
