/* =========================================================================
   Zulassungs-Dienst Hamburg — Redesign
   Design tokens + components. Desktop-first, mobil responsiv.
   Schriften: Archivo (Display) + Hanken Grotesk (Text)
   ========================================================================= */

:root {
  /* Farben */
  --paper:      #F3F0E9;
  --paper-2:    #EFEBE2;
  --paper-3:    #FAF8F3;
  --ink:        #16181D;
  --navy:       #16386F;
  --navy-2:     #2E4A78;
  --orange:     #E7502E;
  --green:      #158A5B;
  --green-2:    #22B573;
  --green-soft: #8FE3B8;

  --text:       #16181D;
  --text-2:     #3C4048;
  --text-3:     #63676F;
  --muted:      #8A8F98;

  --border:     #E2DDD1;
  --border-2:   #E6E1D5;
  --border-3:   #DAD4C6;

  --blue-bg:    #EAF0F7;
  --blue-br:    #D3DEEC;
  --red-bg:     #FBEBE6;
  --red-br:     #F1CDC2;
  --green-bg:   #E7F4EC;
  --green-br:   #C3E6D3;
  --amber-bg:   #FBF4E2;
  --amber-br:   #EDDDA8;
  --amber-tx:   #7E621A;
  --amber-ic:   #C08A12;

  --shadow-card:  0 30px 60px -30px rgba(22,32,50,0.4);
  --shadow-navy:  0 30px 60px -30px rgba(22,56,111,0.55);
  --shadow-btn:   0 10px 24px -8px rgba(22,56,111,0.5);

  --maxw: 1180px;
  --radius: 16px;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-plate: 'GL Nummernschild', var(--font-display);
}

/* Kennzeichenschrift (FE-Schrift-Digitalisierung, kommerziell lizenziert)
   GL-Nummernschild-Mtl von Gutenberg Labo — siehe assets/fonts/LICENSE.txt */
@font-face {
  font-family: 'GL Nummernschild';
  src: url('../fonts/GL-Nummernschild-Mtl.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Anker-Ziele nicht unter den klebrigen Header scrollen */
section[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--navy); color: #fff; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.section { padding-top: 92px; padding-bottom: 92px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.eyebrow.navy { color: var(--navy); }
.crumbs { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--text-2); }

.h1 { font-weight: 900; font-size: clamp(27px, 5.4vw, 60px); line-height: 1.03; letter-spacing: -1.8px; margin: 0 0 22px; }
.h1--page { font-size: clamp(26px, 4.8vw, 52px); letter-spacing: -1.4px; overflow-wrap: break-word; hyphens: auto; }
.h2 { font-weight: 800; font-size: clamp(24px, 3.9vw, 40px); line-height: 1.08; letter-spacing: -0.8px; margin: 0 0 18px; }
.h2--sm { font-size: clamp(22px, 3.3vw, 34px); letter-spacing: -0.6px; line-height: 1.1; }
.accent { color: var(--orange); }
.navy-text { color: var(--navy); }
.lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.5; color: var(--text-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 15px 26px; border-radius: 12px;
  font-weight: 700; font-size: 16px; cursor: pointer; border: 0;
  font-family: var(--font-body); transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-btn); }
.btn--primary:hover { background: #12305f; }
.btn--ghost { background: #fff; border: 1.5px solid var(--border-3); color: var(--ink); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); font-weight: 800; }
.btn--outline-light { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.3); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.2); }
.btn--sm { padding: 13px 22px; font-size: 15px; }
.btn .i { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,240,233,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 16px;
}
/* Logo — Wortmarke „1d": zulassungs · EU-Band · dienst.com */
.brand {
  display: inline-flex; align-items: center; gap: 5px;
  text-decoration: none; flex-shrink: 0; font-family: var(--font-display); line-height: 1;
}
.brand__word { font-weight: 800; font-size: 21px; letter-spacing: -0.5px; color: var(--ink); }
.brand__tld { color: #003399; }
.brand__eu {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; width: 16px; height: 26px; background: #003399; border-radius: 4px;
  padding: 3px 0; flex-shrink: 0;
}
.brand__stars { display: block; line-height: 0; }
.brand__stars svg { display: block; }
.brand__d { color: #fff; font-weight: 700; font-size: 8px; line-height: 1; }
/* Dunkler Kontext (Footer) */
.brand--footer .brand__word { color: #F3F0E9; }
.brand--footer .brand__tld { color: #7E9BE8; }

.site-nav { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.site-nav a {
  text-decoration: none; color: var(--text-2); font-size: 14.5px; font-weight: 600;
  padding: 7px 10px; border-radius: 8px; transition: background .15s ease, color .15s ease; white-space: nowrap;
}
.site-nav a:hover { background: rgba(22,56,111,0.06); color: var(--navy); }
.site-nav a.is-active { color: var(--navy); font-weight: 700; background: rgba(22,56,111,0.09); }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.status-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px;
  border-radius: 100px; background: var(--green-bg); border: 1px solid var(--green-br);
}
.status-chip__pulse { position: relative; width: 8px; height: 8px; flex-shrink: 0; }
.status-chip__pulse b, .status-chip__pulse i {
  position: absolute; inset: 0; border-radius: 50%; background: var(--green); font-style: normal;
}
.status-chip__pulse b { animation: zdPulse 2.4s ease-in-out infinite; }
.status-chip__label { font-size: 13px; font-weight: 700; color: #0E6B45; white-space: nowrap; }
.status-chip__detail { font-size: 13px; color: var(--text-3); white-space: nowrap; display: none; }
.status-chip.is-closed { background: var(--red-bg); border-color: var(--red-br); }
.status-chip.is-closed .status-chip__pulse b,
.status-chip.is-closed .status-chip__pulse i { background: var(--orange); }
.status-chip.is-closed .status-chip__label { color: #B23A25; }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  padding: 9px 16px; border-radius: 10px; border: 1.5px solid var(--ink);
  color: var(--ink); font-weight: 700; font-size: 14px; white-space: nowrap; flex-shrink: 0;
}
.header-phone:hover { background: var(--ink); color: #fff; }
.header-route {
  display: none; align-items: center; text-decoration: none;
  padding: 10px 18px; border-radius: 10px; background: var(--navy); color: #fff;
  font-weight: 700; font-size: 14px; white-space: nowrap; flex-shrink: 0;
}
.header-route:hover { background: #12305f; }

.mobile-actions { display: none; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 1.5px solid var(--border-3);
  border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { stroke: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(22,56,111,0.06), transparent 60%),
    linear-gradient(var(--paper), var(--paper-2));
  border-bottom: 1px solid var(--border);
}
.grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: 78px 32px 84px; display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 56px; align-items: center;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 13px; border-radius: 100px;
  background: #fff; border: 1px solid var(--border); font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 26px; max-width: 100%;
}
.badge-pill .d { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 32px 0 30px; }
.hero__ticks { display: flex; gap: 26px; flex-wrap: wrap; }
.tick { display: flex; align-items: center; gap: 9px; }
.tick span { font-size: 14.5px; font-weight: 600; color: var(--text-2); }
.anim-rise { animation: zdRise .6s ease both; }
.anim-rise--slow { animation: zdRise .7s ease both; }

/* ---------- Hero card (plate + price) ---------- */
.hero-card-wrap { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--border-2); border-radius: 22px; padding: 30px;
  box-shadow: var(--shadow-card);
}
.hero-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-right: 58px; }
.hero-card__plate { position: relative; overflow: hidden; max-width: 90%; margin-left: auto; margin-right: auto; }
.hero-card__plate img { display: block; width: 100%; height: auto; }
.hero-card__plate::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.24) 49%, rgba(255,255,255,0.30) 52%, transparent 62%);
  transform: translateX(-130%);
  animation: zdShine 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-card__plate::after { animation: none; opacity: 0; }
}
.label-caps { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.avail { font-size: 12.5px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.avail .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-card__price {
  margin-top: 24px; display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 22px; border-top: 1px dashed var(--border-3);
}
.price-caps { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.price-big { display: flex; align-items: baseline; gap: 8px; }
.price-big .num { font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: 1; }
.price-big .cur { font-family: var(--font-display); font-weight: 800; font-size: 30px; }
.price-note { text-align: right; font-size: 13.5px; line-height: 1.5; color: var(--text-3); }
.today-badge {
  position: absolute; top: -16px; right: -14px; width: 84px; height: 84px; border-radius: 50%;
  background: var(--orange); color: #fff; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; transform: rotate(9deg);
  box-shadow: 0 12px 24px -8px rgba(231,80,46,0.6);
}
.today-badge b { font-family: var(--font-display); font-weight: 900; font-size: 15px; line-height: 1; }
.today-badge span { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; margin-top: 3px; }

/* ---------- Plate component ---------- */
.plate {
  display: flex; align-items: stretch; border: 3px solid var(--ink); border-radius: 9px;
  background: #F7F8F6; overflow: hidden; box-shadow: inset 0 2px 6px rgba(0,0,0,0.06);
  font-family: var(--font-display);
}
.plate__eu {
  background: linear-gradient(#0037A6, #002a80); display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
}
.plate__eu .d { font-weight: 800; color: #fff; }
.plate__body { flex: 1; display: flex; align-items: center; justify-content: center; }
.plate__region, .plate__text { font-weight: 800; color: var(--ink); }
.plate__stickers { display: flex; flex-direction: column; }
.plate__stickers .s { border-radius: 4px; }
.plate__stickers .s1 { background: radial-gradient(circle at 50% 40%, #e8e2ff, #b9a9e6); border: 1px solid #7a68b0; }
.plate__stickers .s2 { background: radial-gradient(circle at 50% 40%, #fff3c4, #e6c34a); border: 1px solid #b09025; }

/* Schimmer: dezenter Lichtstreifen über den Schaukennzeichen (reflektierende Folie) */
.hero-card .plate, .svc-hero__plate .plate { position: relative; }
.hero-card .plate::after, .svc-hero__plate .plate::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.45) 47%, rgba(255,255,255,0.6) 52%, transparent 65%);
  transform: translateX(-130%);
  animation: zdShine 6s ease-in-out infinite;
}
@keyframes zdShine {
  0% { transform: translateX(-130%); }
  45%, 100% { transform: translateX(130%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card .plate::after, .svc-hero__plate .plate::after { animation: none; opacity: 0; }
}

/* Plate size: default (hero card / service) — fluid, bricht nie um */
.plate { height: clamp(74px, 19vw, 96px); max-width: 100%; }
.plate__eu { width: clamp(42px, 11vw, 52px); padding: 10px 0; }
.plate__eu .d { font-size: 15px; }
.plate__body { gap: clamp(8px, 2.6vw, 14px); }
.plate__region, .plate__text { font-size: clamp(26px, 7vw, 40px); letter-spacing: 1px; white-space: nowrap; }
.plate__stickers { gap: 5px; }
.plate__stickers .s { width: clamp(20px, 5vw, 26px); height: clamp(15px, 4vw, 20px); }

/* Plate size: large (live builder) */
.plate--lg { height: clamp(92px, 26vw, 132px); border-width: 4px; border-radius: 12px; box-shadow: inset 0 2px 8px rgba(0,0,0,0.07); }
.plate--lg .plate__eu { width: clamp(48px, 14vw, 64px); padding: 14px 0; }
.plate--lg .plate__eu .d { font-size: 19px; }
.plate--lg .plate__body { gap: clamp(8px, 3vw, 18px); }
.plate--lg .plate__region { min-width: 40px; text-align: center; }
.plate--lg .plate__region, .plate--lg .plate__text { font-size: clamp(22px, 6.5vw, 56px); letter-spacing: 2px; }
.plate--lg .plate__stickers { gap: 6px; }
.plate--lg .plate__stickers .s { width: clamp(24px, 6vw, 34px); height: clamp(18px, 4.6vw, 26px); }

/* Plate size: medium (service card, ~360x92) */
.plate--md { height: clamp(74px, 19vw, 92px); }
.plate--md .plate__eu { width: clamp(42px, 11vw, 50px); }
.plate--md .plate__body { gap: clamp(8px, 2.6vw, 13px); padding: 0 clamp(8px, 3vw, 20px); }
.plate--md .plate__region, .plate--md .plate__text { font-size: clamp(26px, 7vw, 38px); }
.plate--md .plate__stickers .s { width: clamp(20px, 5vw, 24px); height: clamp(15px, 4vw, 19px); }

/* ---------- Preis section ---------- */
.split { display: grid; gap: 56px; align-items: center; }
.split--price { grid-template-columns: 0.9fr 1.1fr; }
.info-pill {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px;
  background: var(--blue-bg); border: 1px solid var(--blue-br); max-width: 100%;
}
.info-pill span { font-size: 14.5px; color: var(--navy); font-weight: 600; }
.price-panel {
  background: var(--navy); border-radius: 22px; padding: 36px; color: #fff; box-shadow: var(--shadow-navy);
}
.price-panel__label { font-size: 15px; font-weight: 700; color: #B9C6DC; margin-bottom: 20px; }
.price-panel__total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 24px; padding-top: 22px; border-top: 2px solid rgba(255,255,255,0.20);
}
.price-panel__total .lbl { font-size: 15px; color: #B9C6DC; font-weight: 600; }
.price-panel__total .num { font-family: var(--font-display); font-weight: 900; font-size: 46px; line-height: 1; }
.price-row {
  display: flex; align-items: center; gap: 14px; padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.13);
}
.price-row .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
.price-row .txt { font-size: 16.5px; font-weight: 600; }
.price-row .inc { margin-left: auto; font-size: 14px; color: var(--green-soft); font-weight: 600; }
.price-panel__foot {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.13);
  font-size: 14.5px; color: #B9C6DC; display: flex; align-items: center; gap: 10px;
}

/* ---------- Checkliste (dark section) ---------- */
.section-dark { background: var(--ink); color: #fff; }
.split--check { grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: start; }
.sticky-col { position: sticky; top: 110px; }
.section-dark .h2 { color: #fff; }
.check-intro { font-size: 17px; line-height: 1.55; color: #B4B8C0; margin: 0 0 30px; max-width: 360px; }
.progress { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.progress__track { flex: 1; height: 9px; border-radius: 100px; background: rgba(255,255,255,0.12); overflow: hidden; }
.progress__bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), var(--green-2)); border-radius: 100px; transition: width .35s cubic-bezier(.4,0,.2,1); }
.progress__count { font-family: var(--font-display); font-weight: 800; font-size: 16px; white-space: nowrap; }
.check-done {
  margin-top: 22px; padding: 20px; border-radius: 14px; background: var(--green);
  display: none; align-items: center; gap: 14px; animation: zdRise .4s ease both;
}
.check-done.show { display: flex; }
.check-done b { font-family: var(--font-display); font-weight: 800; font-size: 18px; display: block; }
.check-done span { font-size: 14px; color: #CFF2DE; }
.check-hint { margin-top: 22px; font-size: 14px; color: var(--muted); }
.check-hint.hide { display: none; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  text-align: left; cursor: pointer; font-family: inherit; width: 100%; padding: 0; border: 0; background: transparent;
}
.check-item__inner {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  transition: background .2s ease, border-color .2s ease;
}
.check-item:hover .check-item__inner { border-color: rgba(255,255,255,0.22); }
.check-item__box {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.28); background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.check-item__box svg { opacity: 0; }
.check-item__label { flex: 1; }
.check-item__label b { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #E7E8EB; display: block; }
.check-item__label span { font-size: 14px; color: var(--muted); }
.check-item__state { font-size: 13px; font-weight: 600; color: var(--text-3); }
.check-item.is-checked .check-item__inner { background: rgba(21,138,91,0.14); border-color: rgba(34,181,115,0.45); }
.check-item.is-checked .check-item__box { background: var(--green-2); border-color: var(--green-2); }
.check-item.is-checked .check-item__box svg { opacity: 1; }
.check-item.is-checked .check-item__label b { color: #fff; }
.check-item.is-checked .check-item__label span { color: #8FBFA6; }
.check-item.is-checked .check-item__state { color: var(--green-2); font-weight: 700; }
.warn-box {
  margin-top: 8px; display: flex; gap: 12px; padding: 18px 22px; border-radius: 16px;
  background: rgba(230,180,60,0.12); border: 1px solid rgba(230,180,60,0.32);
}
.warn-box svg { flex-shrink: 0; margin-top: 2px; }
.warn-box span { font-size: 14.5px; line-height: 1.5; color: #E8C77A; }
.warn-box strong { color: #fff; }

/* ---------- Wunschkennzeichen builder ---------- */
.center-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.plate-builder {
  max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--border-2);
  border-radius: 24px; padding: 44px; box-shadow: 0 30px 60px -34px rgba(22,32,50,0.35);
}
.plate-builder .plate--lg { margin-bottom: 34px; }

/* Wunschkennzeichen-Vorschau: echtes Kennzeichen-Foto als Rahmen,
   Text in FE-Schrift ins weiße Feld gelegt (Feld-Maße aus kennzeichen-blank.webp gemessen) */
.plate-builder .plate--lg {
  display: block; position: relative;
  width: 100%; height: auto; aspect-ratio: 1672 / 941;
  border: 0; border-radius: 0; box-shadow: none;
  background: url('../img/kennzeichen-blank.webp') center / 100% 100% no-repeat;
  container-type: inline-size;
}
.plate-builder .plate--lg .plate__eu,
.plate-builder .plate--lg .plate__stickers { display: none; }
.plate-builder .plate--lg .plate__body {
  position: absolute; left: 13.2%; right: 4.6%; top: 32.2%; bottom: 34.4%;
  display: flex; align-items: center; justify-content: center; gap: 2.4cqw;
}
.plate-builder .plate--lg .plate__region,
.plate-builder .plate--lg .plate__text {
  font-family: var(--font-plate); font-weight: 400; color: var(--ink);
  font-size: 19cqw; line-height: 1; letter-spacing: 0; white-space: nowrap;
}
.plate-fields { display: grid; grid-template-columns: 0.9fr 1fr 1fr; gap: 16px; margin-bottom: 30px; }
.field label, .field > span {
  display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field input {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border-3); border-radius: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; text-align: center;
  letter-spacing: 2px; color: var(--ink); background: var(--paper-3); outline: none;
  transition: border-color .15s ease;
}
.field input:focus { border-color: var(--navy); }
.field input.upper { text-transform: uppercase; }
.field input::placeholder { color: #B9C3D6; }
.builder-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.builder-foot--bordered { padding-top: 22px; border-top: 1px solid #EEE9DE; }
.builder-foot .note { font-size: 14.5px; color: var(--text-3); max-width: 360px; line-height: 1.5; }

/* ---------- Ablauf (steps) ---------- */
.steps-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 46px; flex-wrap: wrap; }
.steps-head p { font-size: 16px; color: var(--text-3); max-width: 360px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { background: #fff; border: 1px solid var(--border-2); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.step-card__media { position: relative; height: 150px; background: #DDD7C9; overflow: hidden; }
.step-card__media img { width: 100%; height: 100%; object-fit: cover; }
.step-card__n {
  position: absolute; top: 12px; left: 12px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step-card__body { padding: 20px 20px 24px; }
.step-card__body h3 { font-weight: 700; font-size: 18px; margin-bottom: 7px; letter-spacing: -0.2px; }
.step-card__body p { font-size: 14.5px; line-height: 1.5; color: var(--text-3); }

/* ---------- Standort ---------- */
.split--standort { grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.photo-frame {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--border-2);
  aspect-ratio: 16 / 9; min-height: 0; position: relative; background: #DDD7C9;
}
.photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-tag {
  position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px -12px rgba(0,0,0,0.4);
}
.photo-tag b { font-family: var(--font-display); font-weight: 700; font-size: 15px; display: block; }
.photo-tag span { font-size: 13px; color: var(--text-3); }
.info-list { display: flex; flex-direction: column; }
.info-list__row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-top: 1px solid var(--border-2); }
.info-list__row:last-child { border-bottom: 1px solid var(--border-2); }
.info-list__row svg { margin-top: 2px; flex-shrink: 0; }
.info-list__row h3 { font-weight: 700; font-size: 16px; }
.info-list__row p { font-size: 15.5px; color: var(--text-2); line-height: 1.5; }
.info-list__row a { color: var(--navy); text-decoration: none; font-weight: 600; }
.stretch-col { display: flex; flex-direction: column; }
.stretch-col .btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

/* ---------- FAQ ---------- */
.split--faq { grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-aside {
  background: #fff; border: 1px solid var(--border-2); border-radius: 16px; padding: 22px; display: flex; gap: 14px;
}
.faq-aside svg { flex-shrink: 0; margin-top: 2px; }
.faq-aside div { font-size: 14.5px; line-height: 1.55; color: var(--text-2); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; }
.faq-item__q {
  width: 100%; text-align: left; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: transparent; border: 0;
}
.faq-item__q span { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); flex: 1; }
.faq-item__q .ic-minus { display: none; }
.faq-item.is-open .faq-item__q .ic-minus { display: block; }
.faq-item.is-open .faq-item__q .ic-plus { display: none; }
.faq-item__a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item__a p { font-size: 16px; line-height: 1.6; color: var(--text-2); }
.faq-item.is-open .faq-item__a { padding: 0 24px 24px; max-height: 320px; }

/* ---------- Leistungen teaser / grid ---------- */
.teaser-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-mini {
  text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px;
  padding: 24px; border-radius: 16px; background: #fff; border: 1px solid var(--border-2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc-mini:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(22,32,50,0.35); }
.svc-mini__title { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.svc-mini__desc { font-size: 14.5px; color: var(--text-3); line-height: 1.5; }
.svc-mini__price { margin-top: 6px; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--navy); }
.svc-mini--navy { background: var(--navy); border-color: var(--navy); }
.svc-mini--navy .svc-mini__title { color: #fff; }
.svc-mini--navy .svc-mini__desc { color: #B9C6DC; }
.svc-mini--navy .svc-mini__price { color: var(--green-soft); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  padding: 30px; border-radius: 20px; background: #fff; border: 1px solid var(--border-2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -28px rgba(22,32,50,0.4); }
.svc-card__icon { margin-bottom: 16px; }
.svc-card__title { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-bottom: 8px; }
.svc-card__desc { font-size: 15px; color: var(--text-3); line-height: 1.55; flex: 1; }
.svc-card__price { margin-top: 18px; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--navy); }
.svc-card--feature { background: var(--navy); box-shadow: 0 24px 50px -28px rgba(22,56,111,0.6); }
.svc-card--feature .svc-card__title { color: #fff; }
.svc-card--feature .svc-card__desc { color: #B9C6DC; }
.svc-card--feature .svc-card__price { color: var(--green-soft); font-size: 20px; }
.svc-tag {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 5px 11px; border-radius: 100px; background: rgba(255,255,255,0.15);
  font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 20px;
}
.svc-card--cta { background: var(--paper-2); border: 1px dashed #CFC8B8; justify-content: center; }
.svc-card--cta .svc-card__title { font-size: 20px; margin-bottom: 6px; }
.svc-card--cta .svc-card__desc { flex: none; margin-bottom: 16px; font-size: 14.5px; }
.fineprint { font-size: 14px; color: var(--muted); margin: 24px 4px 0; line-height: 1.6; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--navy); color: #fff; }
.cta-strip__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 70px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-strip h2 { font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.05; letter-spacing: -0.8px; margin: 0 0 10px; }
.cta-strip__inner p { font-size: 17px; color: #B9C6DC; }
.cta-strip__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-strip--sm h2 { font-size: clamp(24px, 3.2vw, 32px); letter-spacing: -0.6px; }
.cta-strip--sm .cta-strip__inner { padding: 60px 32px; }

/* ---------- Service detail ---------- */
.svc-hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 52px 32px 66px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center;
}
.svc-hero__card { background: #fff; border: 1px solid var(--border-2); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-card); }
.svc-hero__plate { display: flex; justify-content: center; margin-bottom: 24px; }
.svc-hero__price { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 22px; border-top: 1px dashed var(--border-3); }
.svc-hero__price .amount { font-family: var(--font-display); font-weight: 900; font-size: 48px; line-height: 1.05; color: var(--ink); }
.svc-hero__price .amount.sm { font-size: 32px; }
.svc-hero__price .amount .cur { font-size: 26px; font-weight: 800; }
.svc-hero__price .pnote { text-align: right; font-size: 13px; line-height: 1.5; color: var(--text-3); max-width: 140px; }
.svc-split { max-width: var(--maxw); margin: 0 auto; padding: 76px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.incl-list { display: flex; flex-direction: column; }
.incl-row { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid var(--border-2); }
.incl-row:last-child { border-bottom: 1px solid var(--border-2); }
.incl-row .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green-bg); display: flex; align-items: center; justify-content: center; }
.incl-row span:last-child { font-size: 16.5px; font-weight: 600; }
.bring-lead { font-size: 14px; color: var(--text-3); margin: 0 0 16px; line-height: 1.5; }
.bring-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.bring-progress__track { flex: 1; height: 8px; border-radius: 100px; background: #E7E1D4; overflow: hidden; }
.bring-progress__bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), var(--green-2)); border-radius: 100px; transition: width .35s cubic-bezier(.4,0,.2,1); }
.bring-progress__count { font-family: var(--font-display); font-weight: 800; font-size: 15px; white-space: nowrap; color: var(--ink); }

.bring-list { display: flex; flex-direction: column; gap: 10px; }
.bring-row {
  width: 100%; text-align: left; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px;
  background: #fff; border: 1px solid var(--border-2); transition: background .2s ease, border-color .2s ease;
}
.bring-row:hover { border-color: #C9D4E4; }
.bring-row .box {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 2px solid #C9D4E4;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease, border-color .15s ease;
}
.bring-row .box svg { opacity: 0; transition: opacity .15s ease; }
.bring-row__label { flex: 1; }
.bring-row__label b { font-family: var(--font-display); font-weight: 700; font-size: 16px; display: block; }
.bring-row__label span { font-size: 13.5px; color: var(--muted); }
.bring-row__state { flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--text-3); }
.bring-row.is-checked { background: rgba(21,138,91,0.07); border-color: rgba(34,181,115,0.5); }
.bring-row.is-checked .box { background: var(--green-2); border-color: var(--green-2); }
.bring-row.is-checked .box svg { opacity: 1; }
.bring-row.is-checked .bring-row__state { color: #158A5B; font-weight: 700; }

.bring-done { display: none; align-items: center; gap: 12px; margin-top: 14px; padding: 14px 16px; border-radius: 12px; background: rgba(21,138,91,0.1); }
.bring-done.show { display: flex; }
.bring-done svg { flex-shrink: 0; }
.bring-done span { font-size: 14px; color: #14663f; line-height: 1.45; }
.bring-done b { font-family: var(--font-display); font-weight: 800; }
.svc-warn { margin-top: 16px; display: flex; gap: 12px; padding: 16px 18px; border-radius: 14px; background: var(--amber-bg); border: 1px solid var(--amber-br); }
.svc-warn svg { flex-shrink: 0; margin-top: 1px; }
.svc-warn span { font-size: 14px; line-height: 1.5; color: var(--amber-tx); }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 60px 32px 80px; }
.legal h1 { font-weight: 900; font-size: 42px; letter-spacing: -1px; margin: 0 0 8px; }
.legal__sub { font-size: 15px; color: var(--muted); margin: 0 0 40px; }
.legal h2 { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 0 0 12px; }
.legal p { font-size: 16.5px; line-height: 1.7; color: #2E3238; margin: 0 0 32px; }
.legal p:last-child { margin-bottom: 0; }
.legal a { color: var(--navy); }
.legal__note {
  background: var(--blue-bg); border: 1px solid var(--blue-br); border-radius: 14px;
  padding: 16px 20px; margin-bottom: 36px; font-size: 14px; line-height: 1.55; color: var(--navy-2);
}

/* ---------- Info banner ---------- */
.info-banner {
  background: var(--blue-bg); border: 1px solid var(--blue-br); border-radius: 18px;
  padding: 28px 32px; display: flex; gap: 16px; align-items: flex-start;
}
.info-banner svg { flex-shrink: 0; margin-top: 2px; }
.info-banner div { font-size: 15.5px; line-height: 1.6; color: var(--navy-2); }

/* ---------- How-it-works (3 steps numbered) ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step3 { background: #fff; border: 1px solid var(--border-2); border-radius: 18px; padding: 28px; }
.step3__n {
  display: flex; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 17px; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step3 h3 { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.step3 p { font-size: 15px; line-height: 1.55; color: var(--text-3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C8CACF; }
.site-footer__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 64px 32px 30px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.site-footer__brand { margin-bottom: 16px; }
.site-footer p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 18px; max-width: 290px; }
.footer-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 100px;
  background: rgba(34,181,115,0.14); border: 1px solid rgba(34,181,115,0.3);
}
.footer-pill .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); }
.footer-pill span { font-size: 12.5px; font-weight: 600; color: var(--green-soft); }
.site-footer h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-links a { color: #A8ABB2; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: 14px; line-height: 1.95; color: #A8ABB2; }
.footer-contact a { color: #A8ABB2; text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-hours { font-size: 13.5px; color: var(--text-3); margin-top: 12px; line-height: 1.7; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.site-footer__bottom div { max-width: var(--maxw); margin: 0 auto; padding: 20px 32px; font-size: 13px; color: var(--text-3); }

/* Surfaces */
.bg-paper2 { background: var(--paper-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-paper2--top { border-bottom: none; }

/* ---------- Animations ---------- */
@keyframes zdPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.55); opacity: .35; } }
@keyframes zdRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll-Reveal: subtile Fade-/Blur-Einblendung beim Scrollen.
   Nur aktiv, wenn <html> die Klasse .reveal-on trägt (Inline-Head-Skript setzt sie
   nur bei IntersectionObserver-Support und ohne prefers-reduced-motion). Ohne JS → alles sichtbar. */
.reveal-on :is(
  .split--price > div, .split--check > *, .center-head, .plate-builder,
  .steps-head, .step-card, .split--standort > *, .split--faq > *,
  .teaser-head, .cards-3 > a, .cta-strip__inner
) {
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-on :is(
  .split--price > div, .split--check > *, .center-head, .plate-builder,
  .steps-head, .step-card, .split--standort > *, .split--faq > *,
  .teaser-head, .cards-3 > a, .cta-strip__inner
).is-inview { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
/* Bei schmalerem Desktop den Status-Chip ausblenden (Navigation braucht den Platz) */
@media (max-width: 1120px) {
  .status-chip { display: none; }
}
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .split--price, .split--check, .split--faq, .split--standort, .svc-hero__inner, .svc-split { gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop: Nav horizontal im Header zentrieren (Brand links, Aktionen rechts) */
@media (min-width: 1024px) {
  .site-header__inner { position: relative; }
  .site-nav { position: absolute; left: 50%; transform: translateX(-50%); margin-left: 0; }
}

/* Ab hier Navigation als Hamburger-Menü (Desktop-Nav braucht sonst zu viel Platz) */
@media (max-width: 1023px) {
  .site-nav, .header-right { display: none; }
  .nav-toggle { display: flex; }
  .site-header__inner { gap: 12px; }

  /* mobile nav panel */
  .site-nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; box-shadow: 0 20px 40px -24px rgba(0,0,0,0.3);
  }
  .site-nav.open a { padding: 12px 14px; font-size: 16px; }
  .site-nav.open .mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
  /* Buttons behalten ihre eigene Textfarbe (sonst überschreibt .site-nav a) */
  .mobile-actions .btn--primary { color: #fff; }
  .mobile-actions .btn--ghost { color: var(--ink); }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; padding: 48px 24px 56px; }
  .container { padding-left: 24px; padding-right: 24px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .split--price, .split--check, .split--faq, .split--standort,
  .svc-hero__inner, .svc-split { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
  .cards-3, .svc-grid, .steps3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .h1 { letter-spacing: -1px; }
  .plate-builder { padding: 28px; }
  /* Ort + Buchstaben nebeneinander (beide kurz), Zahlen volle Breite darunter */
  .plate-fields { grid-template-columns: 1fr 1fr; gap: 14px; }
  .plate-fields .field:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { padding-left: 18px; padding-right: 18px; }
  /* Kompakterer, ausgewogener Header auf schmalen Screens */
  .site-header__inner { padding: 12px 16px; gap: 10px; }
  .brand { gap: 4px; }
  .brand__word { font-size: clamp(16px, 4.6vw, 19px); }
  .brand__eu { width: 14px; height: 22px; gap: 1.5px; }
  .brand__d { font-size: 7px; }
  .hero__inner { padding: 40px 18px 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-card, .price-panel, .svc-hero__card, .faq-aside { padding: 24px; }
  .today-badge { width: 70px; height: 70px; top: -12px; right: -6px; }
  .hero__ticks { gap: 14px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 24px 24px; }
  .legal h1 { font-size: 34px; }
  .plate--lg .plate__region, .plate--lg .plate__text { letter-spacing: 0.5px; }
  .btn { padding: 14px 20px; font-size: 15px; }
}
