/* ============================================================
   zulassungs-dienst.com — Landing
   Design: "Zulassungs-Dienst premium redesign v2" (Claude Design)
   Implementierung: Klick-profi
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --ink: #131109;
  --paper: #F1EEE6;
  --night: #0F0D07;
  --blue: #003399;
  --blue-light: #7FA4E8;
  --blue-mid: #4A6FC4;
  --green: #1F7A4D;
  --green-dot: #2EA36A;
  --amber: #C77B2B;
  --plate-edge: #17150E;

  --ink-70: rgba(19, 17, 9, .68);
  --ink-65: rgba(19, 17, 9, .65);
  --ink-55: rgba(19, 17, 9, .55);
  --ink-50: rgba(19, 17, 9, .5);
  --ink-45: rgba(19, 17, 9, .45);
  --ink-25: rgba(19, 17, 9, .25);
  --ink-15: rgba(19, 17, 9, .15);
  --ink-12: rgba(19, 17, 9, .12);
  --ink-10: rgba(19, 17, 9, .1);

  --paper-85: rgba(241, 238, 230, .85);
  --paper-60: rgba(241, 238, 230, .6);
  --paper-55: rgba(241, 238, 230, .55);
  --paper-50: rgba(241, 238, 230, .5);
  --paper-45: rgba(241, 238, 230, .45);
  --paper-40: rgba(241, 238, 230, .4);
  --paper-35: rgba(241, 238, 230, .35);
  --paper-20: rgba(241, 238, 230, .2);
  --paper-14: rgba(241, 238, 230, .14);

  --font-body: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-plate: 'Saira Condensed', 'Archivo', system-ui, sans-serif;

  --gut: clamp(20px, 3vw, 48px);
  --sec-y: clamp(110px, 16vh, 190px);
  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --ease-soft: cubic-bezier(.2, .6, .2, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Filmkorn über der gesamten Seite */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 998;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--blue); }
::selection { background: var(--blue); color: #fff; }

h1, h2, h3, p, figure { margin: 0; }
img, svg { display: block; }
address { font-style: normal; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; color: var(--paper); }

/* Sprungziele nicht unter der fixierten Nav (66px) verstecken */
:target,
section[id] { scroll-margin-top: 76px; }

.container { max-width: 1200px; margin: 0 auto; }

.rule { border-top: 1px solid var(--ink-15); }

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.eyebrow--dark { color: var(--paper-45); }

.h2 {
  margin: 16px 0 0;
  font-weight: 900;
  font-stretch: 114%;
  letter-spacing: -.025em;
  line-height: .98;
  text-transform: uppercase;
}

.accent-blue { font-style: italic; color: var(--blue); }
.accent-light { font-style: italic; color: var(--blue-light); }
.accent-plain { font-style: italic; letter-spacing: 0; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 99px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s, background .25s, color .25s;
}
.btn--lg { padding: clamp(11px, 1.8vh, 15px) 28px; font-size: 14.5px; letter-spacing: .02em; }
.btn--xl { padding: 17px 34px; font-size: 16px; }

.btn--dark {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.btn--dark:hover { background: var(--blue); color: var(--paper); }

.btn--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 51, 153, .3);
}
.btn--blue.btn--xl { box-shadow: 0 10px 30px rgba(0, 51, 153, .4); }
.btn--blue:hover { color: #fff; transform: translateY(-3px); }

.btn--outline { border: 1px solid var(--ink-25); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--outline-light {
  background: rgba(241, 238, 230, .08);
  border: 1px solid var(--paper-20);
  color: var(--paper);
}
.btn--outline-light:hover { color: var(--paper); transform: translateY(-3px); }

.btn--glass {
  background: rgba(241, 238, 230, .1);
  border: 1px solid rgba(241, 238, 230, .3);
  color: var(--paper);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--glass:hover { color: var(--paper); transform: translateY(-3px); }

.btn--paper {
  background: var(--paper);
  color: var(--night);
  padding: 16px 32px;
  font-size: 15.5px;
}
.btn--paper:hover { background: #fff; color: var(--night); transform: translateY(-3px); }

/* ---------- 4. Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  z-index: 999;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-100px, -100px);
  will-change: transform;
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- 5. Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(241, 238, 230, .75);
  border-bottom: 1px solid var(--ink-10);
}
.nav__inner {
  padding: 0 var(--gut);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; flex: none; }
.nav__domain { flex: none; font-weight: 700; font-size: 14px; letter-spacing: -.01em; }

.badge {
  flex: none;
  display: flex;
  align-items: stretch;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}
.badge--footer { display: inline-flex; border-color: rgba(241, 238, 230, .85); }
.badge__eu {
  width: 14px;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 3px;
}
.badge__eu-letter { color: #fff; font-size: 8px; font-weight: 700; }
.badge__text {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: var(--font-plate);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .5px;
  color: var(--ink);
}
.badge--footer .badge__text { font-size: 17px; letter-spacing: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav__link { opacity: .7; transition: opacity .2s; }
.nav__link:hover { opacity: 1; }

.nav__right { display: flex; align-items: center; gap: 18px; flex: none; }
.nav__clock {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-55);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.nav__progress { height: 2px; background: rgba(19, 17, 9, .05); }
.nav__progress-fill { height: 100%; width: 0%; background: var(--blue); }

@media (max-width: 1260px) { .nav__clock { display: none; } }
@media (max-width: 1000px) { .nav__links { display: none; } }

/* ---------- 6. Hero ---------- */
.hero { position: relative; }
.hero__stage { height: 230vh; }
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(70px, 10vh, 110px) var(--gut) 0;
  background: var(--paper);
}
.hero__copy { will-change: transform, opacity; }

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-55);
  border-bottom: 1px solid var(--ink-15);
  padding-bottom: clamp(8px, 1.4vh, 14px);
}
.hero__status { display: inline-flex; align-items: center; gap: 8px; }
.hero__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: zdPulse 2.2s ease-in-out infinite;
}

.hero__title {
  margin: clamp(10px, 2vh, 28px) auto 0;
  font-size: clamp(44px, min(9.6vw, 12.5vh), 176px);
  line-height: .94;
  letter-spacing: -.03em;
  font-weight: 900;
  font-stretch: 118%;
  text-transform: uppercase;
  text-align: center;
}
.hero__line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__line--last { padding-bottom: .08em; }
.hero__line-inner {
  display: inline-block;
  animation: zdLineUp 1.1s var(--ease-out) both;
}
.hero__line-inner--accent { font-style: italic; letter-spacing: -.01em; color: var(--blue); }
.hero__dash { color: var(--ink-25); }

.hero__bottom {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 64px);
  flex-wrap: wrap;
  min-height: 0;
  padding-bottom: clamp(10px, 2.4vh, 28px);
}
.hero__sub {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 360px;
  will-change: transform, opacity;
}
.hero__sub p {
  margin: 0 0 clamp(10px, 2vh, 22px);
  font-size: clamp(14px, 1.9vh, 18px);
  line-height: 1.5;
  color: var(--ink-70);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 6; }

.hero__plate {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: max-content;
  pointer-events: none;
}
.hero__float { animation: zdFloat 7s ease-in-out infinite; }
.hero__persp { perspective: 1600px; }
.plate3d {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(16deg) rotateY(-24deg);
  will-change: transform;
}
.hero__shadow {
  width: min(560px, 70vw);
  height: clamp(12px, 2.6vh, 26px);
  margin: clamp(10px, 2vh, 24px) auto 0;
  background: radial-gradient(50% 100% at 50% 0%, rgba(19, 17, 9, .3), transparent 70%);
  filter: blur(6px);
}

/* ---------- 7. Nummernschild ---------- */
.plate {
  display: flex;
  align-items: stretch;
  width: min(680px, 88vw, 72vh);
  aspect-ratio: 4.6 / 1;
  background: linear-gradient(160deg, #FEFEFB 0%, #EFEDE4 60%, #E2DFD3 100%);
  border: 4px solid var(--plate-edge);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(19, 17, 9, .45),
    0 8px 24px rgba(19, 17, 9, .18),
    inset 0 2px 0 rgba(255, 255, 255, .9);
}
.plate__eu {
  width: clamp(40px, 9%, 52px);
  background: linear-gradient(180deg, #0A3FA8, #002B80);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px;
}
.plate__eu-letter { color: #fff; font-weight: 700; font-size: clamp(16px, 2.6vw, 22px); }
.plate__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.2vw, 20px);
  font-family: var(--font-plate);
  font-weight: 600;
  font-size: min(13vh, 9.4vw, 96px);
  color: var(--plate-edge);
  letter-spacing: 2px;
}
.plate__seals { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.seal { border-radius: 50%; }
.seal--gold {
  width: clamp(14px, 2.6vw, 20px);
  height: clamp(14px, 2.6vw, 20px);
  background: radial-gradient(circle at 35% 30%, #F5D67A, #B98A1F);
}
.seal--blue {
  width: clamp(20px, 3.6vw, 28px);
  height: clamp(20px, 3.6vw, 28px);
  background: radial-gradient(circle at 35% 30%, #2A57B8, #0B2B6B);
}
.plate__sheen-wrap {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: none;
}
.plate__sheen {
  position: absolute;
  top: -20%; bottom: -20%; left: 0;
  width: 45%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .5) 50%, transparent 100%);
  transform: translateX(-40%) skewX(-16deg);
}

/* ---------- 8. Marquee ---------- */
.marquee {
  margin: 0 calc(var(--gut) * -1);
  border-top: 1px solid var(--ink-15);
  padding: clamp(8px, 1.4vh, 14px) 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 44px;
  width: max-content;
  animation: zdMarquee 26s linear infinite;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* ---------- 9. Manifest ---------- */
.manifest { position: relative; background: var(--paper); padding: var(--sec-y) var(--gut); }
.manifest__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.manifest__float {
  position: absolute;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 24px 60px -20px rgba(19, 17, 9, .4);
  will-change: transform;
}
.manifest__float--a { top: -40px; right: 0; width: clamp(120px, 16vw, 220px); aspect-ratio: 3 / 4; height: auto; }
.manifest__float--b { bottom: -60px; left: 0; width: clamp(140px, 18vw, 250px); aspect-ratio: 4 / 3; height: auto; }
.manifest__text {
  margin: 28px auto 0;
  max-width: 900px;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 700;
  font-stretch: 108%;
  text-wrap: pretty;
}

/* ---------- 10. Bildband ---------- */
.band { position: relative; height: 70vh; overflow: hidden; }
.band__img { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 13, 7, .35), rgba(15, 13, 7, .15) 40%, rgba(15, 13, 7, .5));
}
.band__label {
  position: absolute;
  left: var(--gut);
  bottom: 32px;
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.band__coords {
  position: absolute;
  right: var(--gut);
  bottom: 32px;
  color: var(--paper-60);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
}

/* ---------- 11. Festpreis ---------- */
.price { position: relative; }
.price__stage { height: 220vh; background: var(--night); }
.price__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--paper);
}
.price__ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-size: 56vh;
  font-weight: 900;
  font-stretch: 125%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 238, 230, .09);
  pointer-events: none;
  line-height: 1;
  will-change: transform;
}
.price__eyebrow { position: relative; letter-spacing: .16em; }
.price__num {
  position: relative;
  font-size: clamp(110px, 26vh, 280px);
  font-weight: 900;
  font-stretch: 120%;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 10px 0 2px;
  font-variant-numeric: tabular-nums;
  will-change: transform;
}
.price__claim {
  position: relative;
  font-size: clamp(17px, 2.4vh, 23px);
  font-weight: 600;
  color: var(--paper-85);
  text-align: center;
  max-width: 560px;
  line-height: 1.5;
}
.price__underline { font-style: italic; border-bottom: 2px solid var(--blue-mid); }
.price__list { position: relative; margin-top: clamp(22px, 5vh, 44px); width: min(560px, 90vw); }
.price__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(9px, 1.6vh, 15px) 4px;
  border-top: 1px solid var(--paper-14);
  font-size: clamp(14px, 2vh, 16.5px);
}
.price__row--last { border-bottom: 1px solid var(--paper-14); }
.price__incl { font-weight: 700; color: var(--blue-light); }
.price__note { margin-top: 14px; text-align: center; font-size: 13.5px; color: var(--paper-50); }

/* ---------- 12. Checkliste ---------- */
.check { background: var(--paper); padding: var(--sec-y) var(--gut); }
.check__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.check__h2 { font-size: clamp(40px, 5.4vw, 84px); }
.check__count {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  font-stretch: 118%;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition: color .3s;
}
.check__count.is-complete { color: var(--green); }
.check__count-total { color: var(--ink-25); }
.check__intro {
  margin: 22px 0 44px;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-65);
}
.check__list { display: flex; flex-direction: column; }
.check__item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  text-align: left;
  width: 100%;
  padding: clamp(18px, 2.6vh, 28px) clamp(4px, 1vw, 16px);
  background: transparent;
  border: none;
  border-top: 1px solid var(--ink-15);
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: background .3s, padding-left .3s;
}
.check__item:hover { padding-left: clamp(16px, 2.4vw, 34px); }
.check__item.is-on { background: rgba(31, 122, 77, .08); }
.check__idx {
  flex: none;
  width: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(19, 17, 9, .4);
  font-variant-numeric: tabular-nums;
}
.check__main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.check__title {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -.015em;
}
.check__item.is-on .check__title { text-decoration: line-through; }
.check__hint { font-size: 14px; color: var(--ink-50); }
.check__box {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-25);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition: background .3s, border-color .3s;
}
.check__item.is-on .check__box { background: var(--green); border-color: var(--green); }
.check__item.is-on .check__box::after { content: "✓"; }

.check__done {
  margin-top: 20px;
  padding: 20px 26px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}
.check__done[hidden] { display: none; }
.check__done-mark { font-size: 20px; }
.check__note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--ink-50);
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- 13. Wunschkennzeichen ---------- */
.wk {
  background: var(--night);
  color: var(--paper);
  padding: var(--sec-y) var(--gut);
  overflow: hidden;
}
.wk__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.wk__h2 { font-size: clamp(40px, 5.4vw, 84px); }
.wk__intro {
  margin: 22px auto 48px;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--paper-60);
}
.wk__persp { perspective: 1200px; }
.plate--wk {
  width: min(560px, 92vw);
  height: clamp(84px, 15vw, 118px);
  aspect-ratio: auto;
  margin: 0 auto;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, .8), inset 0 2px 0 rgba(255, 255, 255, .9);
  transform: rotateX(8deg);
}
.plate--wk .plate__eu { width: clamp(40px, 8%, 52px); }
.plate--wk .plate__eu-letter { font-size: clamp(16px, 2.4vw, 22px); }
.plate__body--wk {
  gap: clamp(10px, 2vw, 18px);
  font-size: clamp(44px, 8vw, 74px);
}
.seal--gold-wk { width: clamp(14px, 2.4vw, 20px); height: clamp(14px, 2.4vw, 20px); }
.seal--blue-wk { width: clamp(19px, 3.2vw, 27px); height: clamp(19px, 3.2vw, 27px); }

.wk__fields {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.field { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.field__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--paper-45);
  text-transform: uppercase;
}
.field__input {
  width: 104px;
  background: rgba(241, 238, 230, .05);
  border: 1px solid var(--paper-20);
  border-radius: 10px;
  padding: 15px 16px;
  color: var(--paper);
  font-family: var(--font-plate);
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.field__input--wide { width: 124px; text-transform: none; }
.field__input:focus { outline: none; border-color: rgba(241, 238, 230, .55); }

.wk__cta { margin-top: 36px; }
.wk__note { margin-top: 14px; font-size: 13px; color: var(--paper-40); }

/* ---------- 14. Ablauf ---------- */
.steps { position: relative; }
.steps__stage { height: 320vh; background: var(--paper); }
.steps__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.steps__head {
  width: 100%;
  padding: 72px var(--gut) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.steps__h2 { font-size: clamp(40px, 5vw, 76px); }
.steps__hint {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-45);
  text-transform: uppercase;
  padding-bottom: 8px;
}
.steps__viewport { margin-top: clamp(20px, 4vh, 44px); }
.steps__track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gut);
  will-change: transform;
  width: max-content;
}
.card {
  flex: none;
  width: min(460px, 80vw);
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(19, 17, 9, .35);
}
.card--dark {
  background: var(--night);
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 24px 60px -28px rgba(19, 17, 9, .5);
}
.card__img { height: clamp(130px, 24vh, 230px); overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body {
  padding: clamp(18px, 3vh, 28px) 28px clamp(20px, 3.4vh, 30px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.card__num {
  font-size: clamp(30px, 5vh, 42px);
  font-weight: 900;
  font-stretch: 120%;
  color: var(--blue);
  line-height: 1;
}
.card__num--light { color: var(--blue-light); }
.card__title {
  margin: 2px 0 6px;
  font-size: clamp(18px, 2.6vh, 22px);
  font-weight: 800;
  letter-spacing: -.01em;
}
.card__text { font-size: clamp(13.5px, 2vh, 15px); line-height: 1.55; color: var(--ink-65); }
.card--dark .card__text { color: var(--paper-60); }

/* ---------- 15. Kontakt ---------- */
.contact { position: relative; overflow: hidden; color: var(--paper); }
.contact__img { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.contact__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 13, 7, .78), rgba(15, 13, 7, .55) 50%, rgba(15, 13, 7, .85));
}
.contact__inner { position: relative; padding: var(--sec-y) var(--gut); }
.contact__h2 { font-size: clamp(40px, 5.4vw, 84px); max-width: 900px; }
.contact__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  border-top: 1px solid rgba(241, 238, 230, .25);
  padding-top: 32px;
}
.contact__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--paper-50);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact__value { font-size: 18px; line-height: 1.5; font-weight: 600; }
.contact__meta { margin-top: 6px; font-size: 13.5px; color: var(--paper-55); }
.contact__status { display: inline-flex; align-items: center; gap: 8px; color: rgba(241, 238, 230, .7); }
.contact__phone { font-size: 18px; font-weight: 700; color: var(--paper); }
.contact__phone:hover, .contact__mail:hover { color: var(--blue-light); }
.contact__mail { color: var(--paper-55); }
.contact__actions { margin-top: 48px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 16. FAQ ---------- */
.faq { background: var(--paper); padding: var(--sec-y) var(--gut); }
.faq__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}
.faq__h2 { font-size: clamp(40px, 4.6vw, 72px); }
.faq__list { display: flex; flex-direction: column; align-self: end; }
.faq__item { border-top: 1px solid var(--ink-15); }
.faq__h3 { font-size: inherit; font-weight: inherit; }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq__toggle {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transform: rotate(0deg);
  transition: transform .35s;
}
.faq__q[aria-expanded="true"] .faq__toggle { transform: rotate(45deg); }
.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-soft);
}
.faq__a {
  padding: 0 44px 24px 4px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-65);
}

/* ---------- 17. Leistungen ---------- */
.services { background: var(--paper); padding: 0 var(--gut) var(--sec-y); }
.services__list { margin-top: 24px; display: flex; flex-direction: column; }
.service {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 4px;
  border-top: 1px solid var(--ink-15);
  transition: padding-left .3s;
}
.service--last { border-bottom: 1px solid var(--ink-15); }
.service:hover { padding-left: 24px; }
.service__name {
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -.02em;
}
.service__desc { font-size: 14.5px; color: var(--ink-55); }
.service__price { font-weight: 800; color: var(--blue); }

/* ---------- 18. Footer ---------- */
.footer {
  background: var(--night);
  color: var(--paper);
  padding: clamp(90px, 14vh, 160px) var(--gut) 40px;
  overflow: hidden;
}
.footer__inner { max-width: 1400px; margin: 0 auto; }
.footer__claim-wrap { text-align: left; margin-bottom: 64px; }
.footer__claim { margin: 0 0 8px; font-size: 15px; color: var(--paper-55); }
.footer__big {
  font-size: clamp(64px, 11.5vw, 190px);
  font-weight: 900;
  font-stretch: 122%;
  letter-spacing: -.03em;
  line-height: .92;
  text-transform: uppercase;
}
.footer__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-top: 44px;
  border-top: 1px solid var(--paper-14);
}
.footer__about {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-50);
  max-width: 280px;
}
.footer__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--paper-40);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.footer__links--plain { color: rgba(241, 238, 230, .7); }
.footer__links a { color: rgba(241, 238, 230, .7); }
.footer__links a:hover { color: var(--blue-light); }
.footer__hours { font-size: 14.5px; line-height: 1.7; color: rgba(241, 238, 230, .7); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--paper-14);
  font-size: 12.5px;
  color: var(--paper-35);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--paper-35); }
.footer__legal a:hover { color: var(--blue-light); }

/* ---------- 19. Animationen ---------- */
@keyframes zdMarquee { to { transform: translateX(-50%); } }
@keyframes zdLineUp { from { transform: translateY(115%); } to { transform: translateY(0); } }
@keyframes zdFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes zdPulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* Scroll-Reveals (per JS aktiviert) */
[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(30px);
}
[data-reveal].is-armed {
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}

/* ---------- 19b. Fallback ohne JS / mit reduzierter Bewegung ----------
   Die hohen Scroll-Bühnen (230vh/220vh/320vh) ergeben nur Sinn, wenn der
   Scrub-Loop läuft. Sonst: normale Höhen, Ablauf wird horizontal scrollbar. */
html:not(.js) .hero__stage,
html.no-scrub .hero__stage { height: 100vh; }

html:not(.js) .price__stage,
html.no-scrub .price__stage { height: 100vh; }

html:not(.js) .steps__stage,
html.no-scrub .steps__stage { height: auto; }

html:not(.js) .steps__sticky,
html.no-scrub .steps__sticky {
  position: static;
  height: auto;
  overflow: visible;
  padding-bottom: var(--sec-y);
}

html:not(.js) .steps__viewport,
html.no-scrub .steps__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}

html:not(.js) .card,
html.no-scrub .card { scroll-snap-align: start; }

html:not(.js) .steps__hint,
html.no-scrub .steps__hint { display: none; }

html:not(.js) .cursor { display: none; }

/* ---------- 20. Mobile-Feinschliff ---------- */
@media (max-width: 720px) {
  .hero__bottom { align-items: flex-end; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; text-align: center; }
  .manifest__float--a { top: -20px; opacity: .9; }
  .manifest__float--b { bottom: -30px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ---------- 21. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .marquee__track { animation: none; }
  .hero__float { animation: none; }
  .cursor { display: none; }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
}

/* ---------- 22. Print ---------- */
@media print {
  .cursor, .nav__progress, .marquee, .band, .hero__plate { display: none; }
  .hero__stage, .price__stage, .steps__stage { height: auto; }
  .hero__sticky, .price__sticky, .steps__sticky { position: static; height: auto; }
  body::after { display: none; }
}
