/* ============================================================================
   BRUTALIST · KLEIN BLUE
   Swiss-brutalist redesign for autoankauf-haidar.com
   Loads AFTER style.css and overrides visual treatment.
   Anton (display) · JetBrains Mono (data) · Atkinson Hyperlegible (body)
   ============================================================================ */

:root {
  /* Brand tokens — override base */
  --y:               #002FA7;  /* Klein blue (was Saleh red) */
  --k:               #000000;  /* Pure ink */
  --paper:           #FFFFFF;

  --klein:           #002FA7;
  --klein-deep:      #001E6A;
  --klein-bright:    #0047FF;
  --klein-tint:      #E8EEFF;   /* very light klein, for backgrounds */

  --accent:          #002FA7;
  --accent-soft:     #E8EEFF;
  --warning:         #FFEF00;   /* used sparingly for tickers/badges */

  --ink:             #000000;
  --ink-soft:        #1A1A1A;
  --mute:            #6B7280;
  --mute-2:          #9CA3AF;
  --rule:            #000000;
  --paper-soft:      #F4F4F4;

  /* Brutalist rule weight */
  --rule-w:          2px;
  --rule-w-thick:    4px;
  --rule-w-fat:      6px;

  /* Hard offset shadows */
  --hard-1:          2px 2px 0 var(--ink);
  --hard-2:          4px 4px 0 var(--ink);
  --hard-3:          6px 6px 0 var(--ink);
  --hard-4:          8px 8px 0 var(--ink);
  --hard-blue:       6px 6px 0 var(--klein);

  /* Type stacks */
  --font-display:    "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --font-mono:       "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-body:       "Atkinson Hyperlegible", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing tokens specific to brutalist density */
  --gap-tight:       6px;
  --gap-snug:        10px;
  --gap:             16px;
  --gap-roomy:       28px;
  --gap-loose:       44px;
  --gap-vast:        80px;
}

/* ─── Global reset overrides ──────────────────────────────────────────────── */

html, body { background: var(--paper); color: var(--ink); }

body.atelier,
body.state-page {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

::selection { background: var(--klein); color: var(--paper); }

a { color: inherit; }

/* Universal sharp corners — brutalist non-negotiable */
*, *::before, *::after { border-radius: 0 !important; }

img { border-radius: 0; }

/* ─── TAPE TICKER ─────────────────────────────────────────────────────────── */

.tape {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 32px;
  border-top: var(--rule-w) solid var(--ink);
  border-bottom: var(--rule-w) solid var(--ink);
  overflow: hidden;
  position: relative;
}
.tape::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 28px,
    rgba(255,255,255,0.05) 28px,
    rgba(255,255,255,0.05) 29px
  );
  pointer-events: none;
}
.tape-mark {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: var(--klein);
  border-left: var(--rule-w) solid var(--ink);
  border-right: var(--rule-w) solid var(--ink);
  position: relative;
  z-index: 1;
}
.tape-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: var(--paper);
}
.tape-text {
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
.tape-line {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: tape-scroll 36s linear infinite;
}
@keyframes tape-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ─── NAV ─────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--gap);
  padding: 12px 24px;
  background: var(--paper);
  border-bottom: var(--rule-w-thick) solid var(--ink);
  box-shadow: none;
}
.brand-nav { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

/* Reset legacy style.css .brand-nav black-box + scale-cropped logo */
.brand-nav {
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  overflow: visible;
}
.brand-logo {
  width: auto;
  height: 56px;
  max-width: 200px;
  object-fit: contain;
  transform: none;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.nav-links a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  padding: 9px 14px;
  border-bottom: 0;
  transition: color 120ms ease-out;
}
/* Animated underline that grows from the link center on hover/active */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2.5px;
  background: var(--klein);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--klein); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--klein); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* Hairline divider before the FAQ/utility group */
.nav-links .nav-divider {
  width: 1px;
  height: 20px;
  background: var(--ink);
  opacity: 0.18;
  margin: 0 8px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  background: none;
  border: 0;
  padding: 9px 14px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 120ms ease-out;
}
.nav-dropdown-trigger:hover { color: var(--klein); }
.nav-dropdown-caret {
  width: 9px;
  height: 9px;
  flex: none;
  transition: transform 160ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -4px;
  margin-top: 10px;
  min-width: 226px;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 1px;
}
/* small bridge so the menu doesn't close when the cursor crosses the gap */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 0;
  transition: background 100ms linear, color 100ms linear, padding-left 120ms ease-out;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: var(--klein);
  color: var(--paper);
  border-bottom: 0;
  padding-left: 18px;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--klein);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 9px 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform 80ms linear, box-shadow 80ms linear;
}
.nav-cta-icon { width: 18px; height: 18px; flex: none; }
.nav-cta-num { display: inline; line-height: 1; }
.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.nav-burger {
  display: none;
  background: var(--klein);
  border: var(--rule-w-thick) solid var(--ink);
  width: 44px;
  height: 44px;
  padding: 9px 8px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 4px;
  background: var(--paper);
  transition: transform 120ms linear, opacity 80ms linear;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;                 /* override base style.css left:0 */
  bottom: auto;
  height: 100vh;
  width: min(360px, 88vw);
  background: var(--paper);
  border-left: var(--rule-w-fat) solid var(--ink);
  transform: translateX(100%);
  transition: transform 220ms cubic-bezier(0.6, 0, 0.2, 1);
  z-index: 100;
  flex-direction: column;
  padding: 28px 24px;
  display: none;              /* hide entirely until JS opens */
  max-height: none;
  overflow-y: auto;
}
.nav-drawer.open {
  display: flex;
  transform: translateX(0);
}

/* Backdrop behind the drawer — tap to close */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
  opacity: 0;
  transition: opacity 220ms ease;
}
.nav-overlay.open { display: block; opacity: 1; }

/* Explicit close (✕) button, top-right of the drawer */
.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  border: var(--rule-w-thick) solid var(--ink);
  cursor: pointer;
  transition: background 100ms linear, color 100ms linear;
  -webkit-tap-highlight-color: transparent;
}
.nav-drawer-close svg { width: 24px; height: 24px; }
.nav-drawer-close:hover,
.nav-drawer-close:active { background: var(--ink); color: var(--paper); }

.nav-drawer-links {
  display: flex; flex-direction: column; gap: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 56px;            /* clear the close button */
}
.nav-drawer-links a,
.nav-drawer-links summary {
  text-decoration: none;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: var(--rule-w) solid var(--ink);
  cursor: pointer;
  list-style: none;
}
.nav-drawer-links summary::-webkit-details-marker { display: none; }
.drawer-states[open] summary { color: var(--klein); }
.drawer-states a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  border-bottom: 1px solid #E5E5E5;
  text-transform: uppercase;
}
.drawer-call {
  margin-top: auto;
  background: var(--klein);
  color: var(--paper);
  padding: 16px 18px;
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-1);
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 80ms linear, box-shadow 80ms linear, background 100ms linear;
}
.drawer-call:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
  background: var(--klein-deep, #001E6A);
}
.drawer-call-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.drawer-call-icon svg { width: 26px; height: 26px; color: var(--paper); }
.drawer-call-text { min-width: 0; }
.drawer-call-num { display: block; font-family: var(--font-display); font-size: 26px; letter-spacing: 0.04em; line-height: 1.05; white-space: nowrap; }
.drawer-call-hint { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; margin-top: 2px; }

/* ─── HERO / STATEMENT ────────────────────────────────────────────────────── */

.atelier-statement {
  background: var(--paper);
  padding: 56px 24px 32px;
  border-bottom: var(--rule-w-thick) solid var(--ink);
  position: relative;
  overflow: hidden;
}
.atelier-statement::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 28px,
    rgba(0, 47, 167, 0.04) 28px,
    rgba(0, 47, 167, 0.04) 30px
  );
  pointer-events: none;
  z-index: 0;
}
.atelier-statement-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.atelier-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 14px 6px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
}
.atelier-eyebrow::before {
  content: "▶";
  background: var(--klein);
  color: var(--paper);
  padding: 6px 12px;
  border-right: var(--rule-w) solid var(--ink);
}
.atelier-eyebrow-num { display: none; }
.atelier-eyebrow-text { display: inline; }

.atelier-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
  word-break: break-word;
}
.atelier-h1 em {
  font-style: normal;
  color: var(--klein);
  position: relative;
  display: inline-block;
}
.atelier-h1 em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 4px;
  height: 6px;
  background: var(--klein);
  z-index: -1;
  opacity: 0.18;
}

.atelier-h1-typewriter-line {
  font-family: var(--font-mono);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-typewriter-prefix {
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.hero-typewriter {
  color: var(--klein);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  min-width: 17ch;
  text-align: left;
  vertical-align: baseline;
}
.hero-cursor {
  display: inline-block;
  width: 12px;
  height: 1.1em;
  background: var(--klein);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursor-blink 1.05s steps(2) infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }

.atelier-h1-subline {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--ink-soft);
}
.atelier-h1-subline strong { color: var(--klein); font-weight: 700; }

.atelier-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 520px;
  margin: 28px 0 0;
  border: var(--rule-w-thick) solid var(--ink);
}
.atelier-spec > div { padding: 14px 18px; }
.atelier-spec > div:first-child { border-right: var(--rule-w-thick) solid var(--ink); }
.atelier-spec dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 4px;
}
.atelier-spec dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

/* ─── WIZARD ──────────────────────────────────────────────────────────────── */

.wizard {
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-blue);
  padding: 24px;
  position: relative;
}
.wizard::before {
  content: "BEWERTUNG · 60 SEK";
  position: absolute;
  top: -16px; left: -4px;
  background: var(--klein);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 6px 12px;
  border: var(--rule-w) solid var(--ink);
}

.wiz-header { display: flex; justify-content: space-between; align-items: center; margin: 12px 0 20px; padding-bottom: 14px; border-bottom: var(--rule-w) solid var(--ink); }
.wiz-step {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.wiz-dots { display: flex; gap: 6px; }
.wiz-dots span { width: 28px; height: 6px; background: var(--paper-soft); border: 1px solid var(--ink); display: block; }
.wiz-dots span.on { background: var(--klein); }

.wiz-form { display: block; }
.wiz-panel { display: none; border: 0; padding: 0; margin: 0; }
.wiz-panel.active { display: block; }

.wiz-q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--ink);
}
.wiz-help {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
  margin: 0 0 18px;
}

.instrument {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--klein-tint);
  border: var(--rule-w) solid var(--ink);
  margin-bottom: 18px;
}
.instrument-icon { width: 38px; height: 38px; color: var(--klein); }
.instrument-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 2px;
}
.instrument-headline {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.instrument-pip {
  width: 12px; height: 12px;
  background: var(--klein);
  display: inline-block;
  border: var(--rule-w) solid var(--ink);
  animation: pip-pulse 1.4s ease-in-out infinite;
}
@keyframes pip-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.wiz-cta, button.wiz-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--klein);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 16px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 80ms linear, box-shadow 80ms linear;
}
.wiz-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}
.wiz-cta::after { content: "→"; font-family: var(--font-mono); font-weight: 700; }
.wiz-cta.wiz-final { background: var(--ink); }
.wiz-cta.wiz-final::after { content: "↗"; }

.wiz-back {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  border: var(--rule-w) solid var(--ink);
  padding: 12px 14px;
  cursor: pointer;
}
.wiz-back:hover { background: var(--ink); color: var(--paper); }

.wiz-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-top: 16px; align-items: stretch; }
.wiz-send-row { display: flex; gap: 10px; margin-top: 12px; align-items: stretch; }
.wiz-send-row .wiz-cta { flex: 1 1 0; width: auto; }
@media (max-width: 480px) { .wiz-send-row { flex-direction: column; } }

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

.field { display: block; }
.field span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--ink);
}
.field.full { grid-column: 1 / -1; }
.wiz-form input,
.wiz-form select,
.wiz-form textarea {
  width: 100%;
  padding: 12px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: var(--rule-w) solid var(--ink);
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
}
.wiz-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.wiz-form input:focus,
.wiz-form select:focus,
.wiz-form textarea:focus {
  background: var(--klein-tint);
  outline: 2px solid var(--klein);
  outline-offset: -4px;
}

.cond-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.cond {
  display: block;
  position: relative;
  padding: 12px;
  border: var(--rule-w) solid var(--ink);
  cursor: pointer;
  background: var(--paper);
}
.cond input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.cond span { display: block; }
.cond b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cond i {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
  margin-top: 2px;
}
.cond:has(input:checked) { background: var(--klein); color: var(--paper); border-color: var(--ink); box-shadow: var(--hard-1); transform: translate(-1px, -1px); }
.cond:has(input:checked) i { color: rgba(255,255,255,0.85); }

/* Condition cards → light & legible. Single source of truth: overrides the legacy
   dark `.cond span` treatment from style.css (loaded earlier) so titles stay readable. */
.cond { background: transparent; border: 0; padding: 0; box-shadow: none; }
.cond span { background: var(--paper); border: var(--rule-w) solid var(--ink); color: var(--mute); }
.cond span b { color: var(--ink); }
.cond span i { color: var(--mute); }
.cond:hover span { box-shadow: var(--hard-1); }
.cond input:checked + span { background: var(--klein); border-color: var(--ink); color: rgba(255,255,255,0.9); }
.cond input:checked + span b { color: var(--paper); }
.cond input:checked + span i { color: rgba(255,255,255,0.82); }

.wiz-fine {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
  margin: 14px 0 0;
}
.wiz-fine a { color: var(--klein); }

.wiz-call {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  border: var(--rule-w) dashed var(--ink);
  text-align: center;
  cursor: pointer;
}
.wiz-call:hover { background: var(--ink); color: var(--paper); }

.wiz-success { text-align: center; padding: 28px 0; }
.success-icon {
  display: inline-flex;
  width: 64px; height: 64px;
  background: var(--klein);
  color: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  font-family: var(--font-display);
  font-size: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wiz-phone-card {
  margin-top: 18px;
  padding-top: 18px;
  border-top: var(--rule-w) dashed var(--ink);
}
.wiz-phone-divider { display: none; }
.wiz-phone-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.wiz-phone-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: var(--rule-w) solid var(--ink);
  transition: transform 80ms linear;
}
.wiz-phone-link:hover { background: var(--klein); transform: translate(1px, 1px); }
.wiz-phone-icon { width: 22px; height: 22px; color: var(--paper); }
.wiz-phone-num { display: block; font-family: var(--font-display); font-size: 22px; letter-spacing: 0.05em; }
.wiz-phone-hint { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }

/* ─── BRANDS STRIP ────────────────────────────────────────────────────────── */

.brands-strip {
  padding: 36px 0;
  background: var(--paper);
  color: var(--ink);
  border-top: var(--rule-w-thick) solid var(--ink);
  border-bottom: var(--rule-w-thick) solid var(--ink);
  overflow: hidden;
}
.brands-strip-headline {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}
.brands-strip-headline strong { color: var(--klein); font-weight: 700; }
.brands-strip-rail { display: flex; gap: 96px; animation: brands-scroll 32s linear infinite; }
.brands-strip-track { list-style: none; padding: 0; margin: 0; display: flex; gap: 96px; }
.brands-strip-track li {
  flex: 0 0 140px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-strip-track img {
  max-height: 64px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS / KAP ──────────────────────────────────────────────────────── */

.kap {
  padding: 72px 24px;
  border-bottom: var(--rule-w-thick) solid var(--ink);
  background: var(--paper);
}
.kap.kap-dark {
  background: var(--ink);
  color: var(--paper);
}
.kap.kap-dark a { color: var(--paper); }

.kap-head { max-width: 1320px; margin: 0 auto 56px; }
.kap-head-dark { color: var(--paper); }

.label-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 12px;
  margin-bottom: 24px;
}
.label-tag.tag-inv { background: var(--klein); color: var(--paper); }

.kap-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 18px;
}
.kap-h2 em {
  font-style: normal;
  color: var(--klein);
}
.kap-dark .kap-h2 em { color: var(--warning); }
.kap-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 720px;
  margin: 0;
  color: inherit;
  opacity: 0.85;
}

/* ─── VEHICLES ────────────────────────────────────────────────────────────── */

.fz-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: var(--rule-w-thick) solid var(--ink);
}
.fz-card {
  background: var(--paper);
  padding: 28px 22px 88px;
  position: relative;
  border-right: var(--rule-w) solid var(--ink);
  min-height: 280px;
}
.fz-card:last-child { border-right: 0; }
.fz-card-defekt { background: var(--klein); color: var(--paper); }
.fz-card-defekt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0,
    rgba(255,255,255,0.04) 2px,
    transparent 2px,
    transparent 14px
  );
  pointer-events: none;
}
.fz-chapter {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 12px;
}
.fz-card-defekt .fz-chapter { color: rgba(255,255,255,0.7); }
.fz-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 18px;
}
.fz-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.fz-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}
.fz-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--klein);
}
.fz-card-defekt .fz-list li::before { color: var(--paper); }
.fz-note {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--mute);
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
}
.fz-card-defekt .fz-note { color: rgba(255,255,255,0.85); }

.fz-badge {
  position: absolute;
  top: 22px;
  right: -2px;
  background: var(--warning);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: var(--rule-w) solid var(--ink);
  z-index: 2;
}

.fz-foot {
  max-width: 1320px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.fz-foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--klein);
  color: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 14px 22px;
  text-decoration: none;
  transition: transform 80ms linear, box-shadow 80ms linear;
}
.fz-foot-cta:hover { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.fz-foot-cta svg { width: 18px; height: 18px; }
.fz-foot-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); }

/* ─── ABLAUF (how-it-works) ───────────────────────────────────────────────── */

.ablauf {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: var(--rule-w-thick) solid var(--paper);
  background: var(--paper);
}
.kap-dark .ablauf { border-color: var(--paper); }
.ablauf-step {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 28px 22px 32px;
  border-right: var(--rule-w) solid var(--paper);
}
.ablauf-step:last-child { border-right: 0; }
.ablauf-rail { position: relative; margin-bottom: 24px; }
.ablauf-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
}
.ablauf-step:nth-child(4) .ablauf-num,
.ablauf-step:nth-child(2) .ablauf-num {
  color: var(--klein);
  -webkit-text-stroke: 0;
}
.ablauf-step:nth-child(4) { background: var(--klein); }
.ablauf-step:nth-child(4) .ablauf-num { color: var(--paper); -webkit-text-stroke: 0; }
.ablauf-connector { display: none; }

.ablauf-time {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--warning);
}
.ablauf-time-value { font-weight: 700; color: var(--warning); }
.ablauf-step:nth-child(4) .ablauf-time-value,
.ablauf-step:nth-child(4) .ablauf-time-label { color: var(--ink); }
.ablauf-time-label { color: rgba(255,255,255,0.6); }

.ablauf-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 8px;
}
.ablauf-step:nth-child(4) .ablauf-title { color: var(--ink); }
.ablauf-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.ablauf-step:nth-child(4) .ablauf-body { color: rgba(0,0,0,0.78); }

/* ─── WHY US / COMPARE TABLE ──────────────────────────────────────────────── */

.compare-wrap {
  max-width: 1320px;
  margin: 0 auto;
  border: var(--rule-w-thick) solid var(--ink);
  overflow-x: auto;
  background: var(--paper);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  color: var(--ink);
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-right: var(--rule-w) solid var(--ink);
  border-bottom: var(--rule-w) solid var(--ink);
  vertical-align: middle;
  font-family: var(--font-body);
  font-size: 14px;
}
.compare-table th:last-child,
.compare-table td:last-child { border-right: 0; }
.compare-table tbody tr:last-child td { border-bottom: 0; }

.compare-th-rowlabel { background: var(--ink); }
.compare-th {
  background: var(--paper-soft);
  padding: 18px;
  vertical-align: top;
}
.compare-th-hi { background: var(--klein); color: var(--paper); }
.compare-col-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-col-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  margin-top: 4px;
}
.compare-th-hi .compare-col-sub { color: rgba(255,255,255,0.75); }

.compare-row-label {
  background: var(--paper-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare-cell {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}
.compare-cell-neg { color: var(--mute); }
.compare-cell-hi {
  background: var(--klein);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-cell-hi .compare-check {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

.compare-trust {
  max-width: 1320px;
  margin: 22px auto 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  text-align: center;
}
.compare-foot {
  max-width: 1320px;
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: center;
  align-items: center;
}
.compare-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: var(--rule-w-thick) solid var(--ink);
  transition: color 100ms linear, gap 100ms linear;
}
.compare-foot-link:hover { color: var(--klein); gap: 14px; }
.compare-foot-arrow { font-family: var(--font-mono); font-weight: 700; }

/* ─── COVERAGE / AUSTRIA MAP ──────────────────────────────────────────────── */

.coverage {
  max-width: 1200px;
  margin: 0 auto;
  border: var(--rule-w-thick) solid var(--paper);
  background: var(--ink);
}
.coverage-map { padding: 28px; }
.map-stage { width: 100%; }
.austria-svg { width: 100%; height: auto; color: var(--klein-bright); }
.at-bundes .bl { fill: rgba(255,255,255,0.08); stroke: var(--paper); stroke-width: 1.2; }
.at-bundes a .bl { fill: var(--klein); cursor: pointer; transition: fill 120ms linear; }
.at-bundes a:hover .bl { fill: var(--warning); }

/* ─── EXPORT — Netzwerk-Karte (Mittel-/Ost-/Südosteuropa) ─────────────────── */

.export-layout {
  max-width: 1180px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 44px;
  align-items: stretch;
}

/* Map stage — mirrors the Austria coverage map treatment */
.exp-stage {
  margin: 0;
  padding: 22px;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-3);
  background-image:
    repeating-linear-gradient(-45deg, transparent 0, transparent 12px, rgba(0, 47, 167, 0.04) 12px, rgba(0, 47, 167, 0.04) 13px);
  display: flex;
  flex-direction: column;
}
.exp-map {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
}
.exp-land {
  fill: var(--klein);
  fill-opacity: 0.85;
  stroke: var(--ink);
  stroke-width: 1.4;
  stroke-linejoin: round;
  transition: fill 140ms ease-out, fill-opacity 140ms ease-out;
}
.exp-land:hover {
  fill: var(--klein-deep, #001E6A);
  fill-opacity: 1;
}
.exp-hq {
  fill: var(--warning);
  fill-opacity: 1;
  stroke-width: 2.4;
}
.exp-hq:hover { fill: var(--warning); fill-opacity: 1; }

.exp-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 18px 2px 2px;
  padding-top: 16px;
  border-top: var(--rule-w) solid var(--ink);
}
.exp-key {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.exp-swatch {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--ink);
  flex: none;
}
.exp-key-hq .exp-swatch { background: var(--warning); }
.exp-key-mkt .exp-swatch { background: var(--klein); }

/* Side panel — stat, advantages, CTA */
.exp-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-stat {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  border-left: 6px solid var(--klein);
  padding-left: 14px;
  margin-bottom: 26px;
}
.exp-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.exp-checks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.exp-tick {
  width: 22px;
  height: 22px;
  color: var(--klein);
  margin-top: 1px;
  flex: none;
}
.exp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--warning);
  color: var(--ink);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-3);
  padding: 14px 22px;
  text-decoration: none;
  transition: transform 80ms linear, box-shadow 80ms linear;
}
.exp-cta:hover { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.exp-cta svg { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  .exp-land { transition: none; }
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */

.faq {
  max-width: 980px;
  margin: 0 auto;
  border: var(--rule-w-thick) solid var(--ink);
  background: var(--paper);
}
.faq details {
  border-bottom: var(--rule-w) solid var(--ink);
}
.faq details:last-child { border-bottom: 0; }
.faq summary {
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.5;
  margin-left: 16px;
  color: var(--klein);
  transition: transform 200ms ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { background: var(--klein-tint); }
.faq p {
  padding: 0 24px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.faq p a { color: var(--klein); text-decoration: underline; }

/* ─── FINAL CTA ───────────────────────────────────────────────────────────── */

.finalcta {
  padding: 96px 24px;
  background: var(--klein);
  color: var(--paper);
  border-bottom: var(--rule-w-thick) solid var(--ink);
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 60px,
    rgba(255,255,255,0.04) 60px,
    rgba(255,255,255,0.04) 62px
  );
  pointer-events: none;
}
.finalcta-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.finalcta .label-tag { background: var(--ink); color: var(--paper); }
.finalcta .kap-h2 { color: var(--paper); }
.finalcta .kap-h2 em { color: var(--warning); }
.finalcta .kap-sub { opacity: 0.92; margin: 0 auto 40px; }

.finalcta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.btn,
.finalcta .btn-block-yellow,
.finalcta .btn-block-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 26px;
  text-decoration: none;
  border: var(--rule-w-thick) solid var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 80ms linear, box-shadow 80ms linear;
  cursor: pointer;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.finalcta .btn-block-yellow { background: var(--warning); color: var(--ink); }
.finalcta .btn-block-white { background: var(--paper); color: var(--ink); }
.finalcta .btn-block-yellow:hover,
.finalcta .btn-block-white:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */

.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 24px 24px;
  border-top: var(--rule-w-thick) solid var(--ink);
}
.foot a { color: var(--paper); text-decoration: none; border-bottom: 1px solid transparent; }
.foot a:hover { border-bottom-color: var(--warning); color: var(--warning); }

.footer-states {
  max-width: 1320px;
  margin: 0 auto 36px;
  padding-bottom: 28px;
  border-bottom: var(--rule-w) solid var(--paper);
}
.footer-states-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warning);
  margin: 0 0 14px;
}
.footer-states-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.footer-states-list li {
  flex: 0 0 auto;
  border-right: 1px solid var(--paper);
}
.footer-states-list li:last-child { border-right: 0; }
.footer-states-list a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 18px;
}

.foot-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.foot-grid h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--warning);
  margin: 0 0 10px;
}
.foot-grid p { font-family: var(--font-body); font-size: 14px; line-height: 1.7; margin: 0; }
.brand-foot-logo {
  height: 72px;
  width: auto;
  max-width: 220px;
  display: block;
  margin-bottom: 12px;
  background: var(--paper);
  padding: 8px 12px;
  border: var(--rule-w) solid var(--paper);
  object-fit: contain;
}
.foot-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; opacity: 0.85; max-width: 280px; margin-bottom: 16px; }
.foot-mute { color: var(--mute-2); font-size: 12px; letter-spacing: 0.06em; }

.foot-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: var(--rule-w) solid var(--paper);
  color: var(--paper);
  border-bottom-color: var(--paper);
}
.foot-social a:hover { background: var(--warning); color: var(--ink); border-color: var(--warning); }
.foot-social svg { width: 18px; height: 18px; }

.foot-bottom {
  max-width: 1320px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: var(--rule-w) solid var(--paper);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute-2);
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── STICKY MOBILE CTA ───────────────────────────────────────────────────── */

.sticky-cta {
  display: none;            /* -> flex at mobile breakpoint */
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  position: fixed;
  right: calc(14px + env(safe-area-inset-right, 0px));
  top: 62%;                 /* lower-middle of the right edge — clears nav/hero, thumb-reachable */
  transform: translateY(-50%);
  z-index: 80;
  pointer-events: none;     /* let taps fall through the gaps to content */
}
.sticky-btn {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  border-radius: 50% !important;    /* override global sharp-corner reset (line ~76) */
  box-shadow: var(--hard-2);
  transition: transform 80ms linear, box-shadow 80ms linear, background 100ms linear, color 100ms linear;
  -webkit-tap-highlight-color: transparent;
}
.sticky-call { background: var(--klein); }
.sticky-wa   { background: #1FA855; }
.sticky-form { background: var(--warning); color: var(--ink); }
.sticky-btn:active {
  transform: translate(2px, 2px);
  box-shadow: var(--hard-1);
}
.sticky-call:active { background: var(--klein-deep, #001E6A); }
.sticky-wa:active   { background: #15793C; }
.sticky-form:active { background: #E0AC00; }
.sticky-icon { width: 24px; height: 24px; flex: none; }
.sticky-label { display: none; }   /* icon-only FABs; accessible name comes from aria-label */

/* ─── COOKIE BANNER ───────────────────────────────────────────────────────── */

.cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 95;
  max-width: 440px;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-3);
  padding: 20px;
  display: none;
}
.cookie.visible { display: block; }
.cookie-text { font-family: var(--font-body); font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-text a { color: var(--klein); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; justify-content: flex-end; }
.cookie-decline,
.cookie-accept {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: var(--rule-w) solid var(--ink);
  cursor: pointer;
}
.cookie-decline { background: var(--paper); color: var(--ink); }
.cookie-accept { background: var(--klein); color: var(--paper); }
.cookie-accept:hover { background: var(--ink); }

/* ─── REVIEWS (if used) ───────────────────────────────────────────────────── */

.reviews {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: var(--rule-w-thick) solid var(--ink);
}
.review {
  padding: 24px;
  border-right: var(--rule-w) solid var(--ink);
  background: var(--paper);
}
.review:last-child { border-right: 0; }
.review-stars { font-size: 14px; letter-spacing: 0.2em; color: var(--klein); margin-bottom: 8px; }
.review blockquote { font-family: var(--font-body); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.review footer { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .fz-grid { grid-template-columns: repeat(2, 1fr); }
  .fz-card { border-right: 0; border-bottom: var(--rule-w) solid var(--ink); }
  .fz-card:nth-child(odd) { border-right: var(--rule-w) solid var(--ink); }
  .fz-card:nth-last-child(-n+2) { border-bottom: 0; }
  .ablauf { grid-template-columns: repeat(2, 1fr); }
  .ablauf-step { border-right: 0; border-bottom: var(--rule-w) solid var(--paper); }
  .ablauf-step:nth-child(odd) { border-right: var(--rule-w) solid var(--paper); }
  .export-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .exp-stage { padding: 14px; min-width: 0; }
  .exp-map { max-height: 440px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  /* Mobile/tablet: logo gets the reclaimed space; phone CTA collapses to a
     compact square icon button (number text hidden). */
  .nav { grid-template-columns: auto 1fr auto auto; }
  .brand-logo { height: 48px; max-width: 220px; }
  .nav-cta {
    padding: 0;
    width: 46px;
    height: 46px;
    justify-content: center;
    gap: 0;
  }
  .nav-cta-num { display: none; }
  .nav-cta-icon { width: 22px; height: 22px; }
}

@media (max-width: 720px) {
  .nav { grid-template-columns: auto 1fr auto auto; padding: 10px 16px; }
  .brand-logo { height: 44px; max-width: 190px; }
  .atelier-statement { padding: 36px 16px 24px; }
  .atelier-h1 { font-size: clamp(48px, 14vw, 92px); }
  .atelier-h1-typewriter-line { font-size: 14px; }
  .atelier-spec dd { font-size: 22px; }
  .fz-grid { grid-template-columns: 1fr; }
  .fz-card { border-right: 0 !important; border-bottom: var(--rule-w) solid var(--ink); padding: 24px 18px 80px; }
  .fz-card:last-child { border-bottom: 0; }
  .ablauf { grid-template-columns: 1fr; }
  .ablauf-step { border-right: 0; }
  .ablauf-step:nth-child(odd) { border-right: 0; }
  .reviews { grid-template-columns: 1fr; }
  .review { border-right: 0; border-bottom: var(--rule-w) solid var(--ink); }
  .review:last-child { border-bottom: 0; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .compare-col-name { font-size: 16px; }
  .footer-states-list a { font-size: 17px; padding: 4px 12px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { font-size: 10px; }
  .sticky-cta { display: flex; }
  /* FABs float middle-right (not bottom-anchored), so no bottom space reservation needed */
  body { padding-bottom: env(safe-area-inset-bottom, 0px); }
  .kap { padding: 56px 16px; }
  .kap-head { margin-bottom: 32px; }
  .grid-2 { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr; }
  .wizard { padding: 20px 16px; }
  .wiz-q { font-size: 24px; }
  .wiz-cta { font-size: 18px; padding: 14px 16px; }
  .finalcta-actions .btn,
  .finalcta-actions a { font-size: 18px; padding: 14px 18px; width: 100%; justify-content: center; }
}

/* ─── UTILS ───────────────────────────────────────────────────────────────── */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* state-page small accent */
.state-page .atelier-eyebrow::before { background: var(--warning); color: var(--ink); }


/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  NEW · HOME HERO STATEMENT  (replaces inline wizard hero)             ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.hero-statement {
  position: relative;
  padding: 56px 24px 56px;
  background: var(--paper);
  border-bottom: var(--rule-w-thick) solid var(--ink);
  overflow: hidden;
}
.hero-statement-inner {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 36px;
  align-items: stretch;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.hero-statement-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 22px 0 14px;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-statement-h1 em {
  font-style: normal;
  color: var(--klein);
  position: relative;
  display: inline-block;
}
.hero-statement-h1 em::before {
  content: "";
  position: absolute;
  left: -10px; top: 10%;
  width: 8px; height: 80%;
  background: var(--klein);
}

/* ─── PHOTO COLUMN ───────────────────────────────────────────────── */
.hero-photo-col {
  position: relative;
  min-height: 480px;
  display: block;
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-3);
  overflow: hidden;
  background: var(--ink);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero/hero-2.jpg");
  background-size: cover;
  background-position: 70% center;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,30,106,0.25) 0%, rgba(0,47,167,0.55) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 60px,
      rgba(0,0,0,0.06) 60px,
      rgba(0,0,0,0.06) 62px
    );
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-photo-col::after {
  /* hard chromatic vignette giving brutalist halftone feel */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}

.hero-photo-chip {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  color: var(--ink);
  border: var(--rule-w-thick) solid var(--ink);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 168px;
  box-shadow: var(--hard-2);
}
.hero-photo-chip-top {
  top: 22px; left: 22px;
  background: var(--warning);
}
.hero-photo-chip-bottom {
  bottom: 22px; right: 22px;
  background: var(--paper);
}
.chip-eye {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.chip-val {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.chip-val small {
  font-size: 16px;
  letter-spacing: 0.18em;
  margin-left: 4px;
  color: var(--ink-soft);
}
.chip-star {
  color: var(--klein);
  font-size: 0.7em;
  margin-left: 4px;
}
.chip-foot {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 2px;
}
.hero-photo-stamp {
  position: absolute;
  z-index: 2;
  top: 32px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-align: right;
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.hero-statement-typeline {
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.8vw, 22px);
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-statement-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 36px;
  color: var(--ink-soft);
}
.hero-statement-sub strong { color: var(--klein); font-weight: 700; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--klein);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 22px 36px;
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-3);
  text-decoration: none;
  transition: transform 100ms linear, box-shadow 100ms linear;
}
.hero-cta-primary:hover { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.hero-cta-arrow { font-family: var(--font-mono); font-weight: 700; }
.hero-cta-secondary {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 22px;
  border: var(--rule-w-thick) solid var(--ink);
  text-decoration: none;
  min-width: 200px;
}
.hero-cta-eye {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mute);
}
.hero-cta-num {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
}
.hero-cta-secondary:hover { background: var(--ink); color: var(--paper); }
.hero-cta-secondary:hover .hero-cta-eye { color: rgba(255,255,255,0.7); }

.hero-spec-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: var(--rule-w-thick) solid var(--ink);
  max-width: 560px;
  margin: 0;
}
.hero-spec-row > div { padding: 14px 18px; border-right: var(--rule-w) solid var(--ink); }
.hero-spec-row > div:last-child { border-right: 0; }
.hero-spec-row dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.hero-spec-row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  NEW · TRUST STATS BAR                                                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.trust-stats {
  background: var(--ink);
  border-bottom: var(--rule-w-thick) solid var(--ink);
}
.trust-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
}
.trust-stat {
  position: relative;
  padding: 36px 24px;
  color: var(--paper);
  border-right: var(--rule-w) solid var(--klein);
  background: var(--ink);
}
.trust-stat:last-child { border-right: 0; }
.trust-stat-hi { background: var(--klein); }
.trust-stat-hi .trust-stat-eye,
.trust-stat-hi .trust-stat-foot { color: rgba(255,255,255,0.85); }

.trust-stat-eye {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--warning);
  margin-bottom: 10px;
}
.trust-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin-bottom: 12px;
}
.trust-stat-star { font-size: 0.55em; color: var(--warning); margin-left: 6px; vertical-align: 0.18em; }
.trust-stat-hi .trust-stat-star { color: var(--paper); }
.trust-stat-foot {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  NEW · QUICK ACTIONS STRIP                                            ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: var(--rule-w-thick) solid var(--ink);
}
.qact {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border-right: var(--rule-w) solid var(--ink);
  transition: background 150ms linear, color 150ms linear;
}
.qact:last-child { border-right: 0; }
.qact-call { background: var(--klein); color: var(--paper); }
.qact-wa   { background: var(--paper); color: var(--ink); }
.qact-form { background: var(--warning); color: var(--ink); }

.qact-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.12);
}
.qact-call .qact-num { color: rgba(255,255,255,0.32); }

.qact-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.qact-eye {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.7;
}
.qact-head {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.qact-sub {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.85;
}

.qact-arrow {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  transition: transform 120ms ease-out;
}
.qact:hover .qact-arrow { transform: translateX(6px); }
.qact:hover { filter: brightness(0.95); }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  NEW · REVIEWS WALL                                                   ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.reviews-section { background: var(--paper-soft); }

.reviews-meta {
  max-width: 1320px;
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
}
.reviews-meta-stars { display: flex; align-items: baseline; gap: 12px; }
.reviews-meta-stars-glyphs {
  font-size: 28px;
  letter-spacing: 0.15em;
  color: var(--klein);
}
.reviews-meta-stars-val {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.reviews-meta-count {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.reviews-meta-count strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-right: 6px;
  vertical-align: -2px;
}
.reviews-meta-source {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border: var(--rule-w) solid var(--ink);
  transition: transform 80ms linear;
}
.reviews-meta-source:hover { background: var(--klein); transform: translate(1px, 1px); }

.reviews-wall {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: var(--rule-w-thick) solid var(--ink);
  background: var(--paper);
}
.rv-card {
  position: relative;
  padding: 22px 22px 24px;
  border-right: var(--rule-w) solid var(--ink);
  border-bottom: var(--rule-w) solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.rv-card:nth-child(3n+0) { border-right: 0; }
.rv-card:nth-last-child(-n+3):nth-child(3n+1),
.rv-card:nth-last-child(-n+3):nth-child(3n+2),
.rv-card:nth-last-child(-n+3):nth-child(3n+3),
.rv-card:last-child { /* trim bottom borders is tricky; leave as-is for grid integrity */ }

.rv-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rv-author { display: flex; align-items: center; gap: 10px; }
.rv-author-mark {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--klein);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: var(--rule-w) solid var(--ink);
}
.rv-author-meta { display: flex; flex-direction: column; line-height: 1.15; }
.rv-author-meta strong {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.rv-author-when {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
}
.rv-stars {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--klein);
}

.rv-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  position: relative;
  padding-left: 14px;
  border-left: 3px solid var(--klein);
}

.rv-foot {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mute);
}

.reviews-foot { max-width: 1320px; margin: 28px auto 0; display: flex; justify-content: center; }
.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--klein);
  color: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 16px 22px;
  text-decoration: none;
  transition: transform 80ms linear, box-shadow 80ms linear;
}
.reviews-cta:hover { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  NEW · BEWERTUNG DEDICATED PAGE                                       ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.bewertung-page { background: var(--paper); }

.bwt-hero {
  padding: 56px 24px 40px;
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--rule-w-thick) solid var(--ink);
  position: relative;
  overflow: hidden;
}
.bwt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 48px,
    rgba(0,71,255,0.08) 48px,
    rgba(0,71,255,0.08) 50px
  );
  pointer-events: none;
}
.bwt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.bwt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--klein);
  color: var(--paper);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: var(--rule-w) solid var(--paper);
}
.bwt-eyebrow-mark { font-family: var(--font-mono); font-weight: 700; }
.bwt-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 18px;
}
.bwt-headline em {
  font-style: normal;
  color: var(--warning);
}
.bwt-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.88);
}
.bwt-stat-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
  border: var(--rule-w-thick) solid var(--paper);
}
.bwt-stat-strip li {
  padding: 16px 14px;
  border-right: var(--rule-w) solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.bwt-stat-strip li:last-child { border-right: 0; }
.bwt-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--klein);
}
.bwt-stat-lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.bwt-form-section {
  padding: 64px 24px 80px;
  background: var(--paper);
  border-bottom: var(--rule-w-thick) solid var(--ink);
}
.bwt-form-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
}
.bwt-form-shell {
  /* keeps the existing .wizard styles in scope */
}
.bwt-form-shell .wizard {
  padding: 32px;
}

.bwt-side { display: flex; flex-direction: column; gap: 20px; }

.bwt-trust-card {
  background: var(--ink);
  color: var(--paper);
  padding: 22px;
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-blue);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bwt-trust-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--warning);
}
.bwt-trust-phone {
  display: flex;
  flex-direction: column;
  color: var(--paper);
  text-decoration: none;
  padding: 12px 0;
  border-top: var(--rule-w) solid rgba(255,255,255,0.15);
  border-bottom: var(--rule-w) solid rgba(255,255,255,0.15);
}
.bwt-phone-num {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bwt-phone-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.bwt-trust-phone:hover .bwt-phone-num { color: var(--warning); }
.bwt-trust-wa {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--warning);
  padding: 12px 14px;
  text-align: center;
  border: var(--rule-w) solid var(--paper);
}
.bwt-trust-wa:hover { background: var(--paper); }

/* ─── WHY US: VORHER / NACHHER ────────────────────────────────────── */
.vsg-wrap {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vsg-row {
  position: relative;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 24px 28px 22px;
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 16px;
}
.vsg-row-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--mute);
  padding-bottom: 12px;
}
.vsg-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--klein);
}
.vsg-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.vsg-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.vsg-side { display: flex; flex-direction: column; gap: 8px; }
.vsg-side-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mute);
}
.vsg-side-body { display: flex; align-items: center; gap: 10px; }
.vsg-icon { width: 22px; height: 22px; flex-shrink: 0; }
.vsg-icon-x { color: var(--mute); }
.vsg-icon-check { color: var(--klein); }
.vsg-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.vsg-pain .vsg-text { color: var(--mute); }
.vsg-gain .vsg-text { color: var(--ink); }

.vsg-arrow {
  align-self: center;
  color: var(--klein);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsg-arrow svg { width: 100%; height: 100%; }

.vsg-quote {
  border-left: 3px solid var(--klein);
  padding: 4px 0 4px 14px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vsg-quote-mark { font-size: 24px; line-height: 1; color: var(--klein); font-weight: 700; }
.vsg-quote-text { line-height: 1.45; }
.vsg-quote-author {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Scroll reveal — gain slides in, pain stays static, quote fades */
.vsg-gain {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 320ms ease-out 80ms, transform 320ms ease-out 80ms;
}
.vsg-quote {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease-out 200ms, transform 320ms ease-out 200ms;
}
.vsg-row.is-visible .vsg-gain,
.vsg-row.is-visible .vsg-quote {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .vsg-gain, .vsg-quote { opacity: 1; transform: none; transition: none; }
}

/* Mobile */
@media (max-width: 720px) {
  .vsg-wrap { gap: 16px; padding: 0 14px; }
  .vsg-row { padding: 18px 18px 16px; }
  .vsg-compare { grid-template-columns: 1fr; gap: 12px; }
  .vsg-arrow {
    justify-self: center;
    transform: rotate(90deg);
    width: 22px; height: 22px;
  }
  .vsg-text { font-size: 16px; }
  .vsg-quote { font-size: 13px; }
}

.bwt-promise {
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  padding: 22px;
}
.bwt-promise-h {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink);
}
.bwt-promise-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.bwt-promise-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: var(--rule-w) solid var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  align-items: center;
}
.bwt-promise-list li:last-child { padding-bottom: 0; }
.bwt-promise-num {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--klein);
  line-height: 0.9;
}

.bwt-fineprint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--mute);
  padding: 14px;
  background: var(--paper-soft);
  border: 1px dashed var(--ink);
}
.bwt-fineprint strong { color: var(--ink); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.bwt-fineprint a { color: var(--klein); text-decoration: underline; }

/* ─── RESPONSIVE for new sections ───────────────────────────────────────── */

@media (max-width: 1180px) {
  .trust-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-stat:nth-child(2) { border-right: 0; }
  .trust-stat:nth-child(1),
  .trust-stat:nth-child(2) { border-bottom: var(--rule-w) solid var(--klein); }
  .quick-actions { grid-template-columns: 1fr; }
  .qact { border-right: 0; border-bottom: var(--rule-w) solid var(--ink); }
  .qact:last-child { border-bottom: 0; }
  .reviews-wall { grid-template-columns: repeat(2, 1fr); }
  .rv-card:nth-child(3n+0) { border-right: var(--rule-w) solid var(--ink); }
  .rv-card:nth-child(2n+0) { border-right: 0; }
  .bwt-form-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 1080px) {
  .hero-statement-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo-col { min-height: 360px; order: 2; }
}

@media (max-width: 720px) {
  .hero-statement { padding: 36px 20px 32px; }
  .hero-statement-h1 { font-size: clamp(48px, 13.5vw, 92px); }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; }
  .hero-spec-row { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .hero-spec-row dd { font-size: 18px; }
  .hero-photo-col { min-height: 280px; }
  .hero-photo-chip { padding: 10px 12px; min-width: 0; }
  .hero-photo-chip .chip-val { font-size: 30px; }
  .hero-photo-stamp { font-size: 9px; top: 18px; right: 16px; }

  /* Mobile nav: bigger logo, compact icon CTA + burger sized to match */
  .brand-logo { height: 40px; max-height: 40px; max-width: 150px; width: auto; }
  .nav { grid-template-columns: auto 1fr auto auto; padding: 8px 12px; gap: 8px; }
  .nav-cta { width: 42px; height: 42px; }
  .nav-cta-icon { width: 20px; height: 20px; }
  .nav-burger { width: 42px; height: 42px; }

  /* Hide decorative blue bar on `em` so it doesn't leak past viewport edge as an "I" */
  .hero-statement-h1 em::before { display: none; }

  /* Typewriter on mobile: allow wrap, drop the desktop min-width, shrink font */
  .hero-statement-typeline { flex-wrap: wrap; }
  .hero-typewriter {
    min-width: 0;
    font-size: clamp(14px, 4.5vw, 18px);
  }

  .trust-stats-inner { grid-template-columns: 1fr; }
  .trust-stat { border-right: 0; border-bottom: var(--rule-w) solid var(--klein); padding: 24px 16px; }
  .trust-stat:last-child { border-bottom: 0; }
  .trust-stat-num { font-size: 56px; }

  .quick-actions { grid-template-columns: 1fr; }
  .qact { padding: 22px 16px; gap: 12px; }
  .qact-num { font-size: 36px; }
  .qact-head { font-size: 22px; }

  .reviews-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews-meta-source { margin-left: 0; }
  .reviews-wall { grid-template-columns: 1fr; }
  .rv-card { border-right: 0 !important; }

  .bwt-hero { padding: 36px 16px 28px; }
  .bwt-headline { font-size: clamp(44px, 12vw, 80px); }
  .bwt-stat-strip { grid-template-columns: repeat(2, 1fr); }
  .bwt-stat-strip li { border-right: 0; border-bottom: var(--rule-w) solid var(--ink); }
  .bwt-stat-strip li:nth-child(odd) { border-right: var(--rule-w) solid var(--ink); }
  .bwt-stat-strip li:nth-last-child(-n+2) { border-bottom: 0; }
  .bwt-form-section { padding: 36px 16px 56px; }
  .bwt-form-shell .wizard { padding: 22px 18px; }

  /* Brands strip — tight slots, faster scroll on mobile */
  .brands-strip { padding: 20px 0; }
  .brands-strip-rail { gap: 28px; animation-duration: 14s; }
  .brands-strip-track { gap: 28px; }
  .brands-strip-track li { flex: 0 0 70px; height: 36px; }
  .brands-strip-track img { max-height: 36px; max-width: 70px; height: auto; width: auto; }
}

/* ─── STATE PAGE WIZARD SECTION ──────────────────────────────────── */
.state-wizard-section {
  background: var(--paper);
  border-bottom: var(--rule-w-thick) solid var(--ink);
  padding: 56px 24px;
}
.state-wizard-inner {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .state-wizard-section { padding: 36px 16px; }
}

/* ─── REVIEWS SLIDER (RV) ─────────────────────────────────────────── */
.rv-stage {
  position: relative;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
  overflow: hidden;
}
.rv-rail {
  list-style: none;
  padding: 4px 0;
  margin: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rv-rail::-webkit-scrollbar { display: none; }
.rv-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.rv-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.rv-avatar {
  width: 38px;
  height: 38px;
  background: var(--klein);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rv-author {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.rv-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rv-when {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 2px;
}
.rv-google { flex-shrink: 0; }
.rv-stars {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--klein);
  line-height: 1;
}
.rv-quote {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rv-controls {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.rv-arrow {
  width: 48px;
  height: 48px;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 80ms linear, box-shadow 80ms linear, background 80ms linear, color 80ms linear;
}
.rv-arrow svg { width: 22px; height: 22px; }
.rv-arrow:hover {
  background: var(--klein);
  color: var(--paper);
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}
.rv-arrow:disabled,
.rv-arrow[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.rv-arrow:focus-visible {
  outline: 3px solid var(--klein);
  outline-offset: 2px;
}
.rv-pos {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink);
  min-width: 80px;
  text-align: center;
}

@media (max-width: 720px) {
  .rv-stage { padding: 0 14px; margin-top: 22px; }
  .rv-rail { gap: 14px; }
  .rv-card {
    flex: 0 0 85%;
    padding: 18px 18px 20px;
    min-height: 240px;
  }
  .rv-controls { gap: 14px; padding: 0 14px; margin-top: 18px; }
  .rv-arrow { width: 44px; height: 44px; }
  .rv-arrow svg { width: 20px; height: 20px; }
  .rv-pos { font-size: 12px; min-width: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .rv-rail { scroll-behavior: auto; }
}

/* ─── VEHICLES — Worry-Buster Grid ────────────────────────────────── */
.veh-grid {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.veh-card {
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-2);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}
.veh-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.veh-card:focus-within {
  outline: 3px solid var(--klein);
  outline-offset: 2px;
}
.veh-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--klein);
  background: rgba(0, 47, 167, 0.08);
  border: 1.5px solid var(--klein);
}
.veh-icon svg { width: 26px; height: 26px; }
.veh-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.veh-card-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}

.veh-foot-note {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 0 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.6;
}
.veh-foot {
  max-width: 1200px;
  margin: 22px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

@media (max-width: 960px) {
  .veh-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 720px) {
  .veh-grid { padding: 0 14px; gap: 12px; margin-top: 22px; }
  .veh-card { padding: 16px 14px 18px; min-height: 170px; gap: 10px; }
  .veh-icon { width: 38px; height: 38px; }
  .veh-icon svg { width: 22px; height: 22px; }
  .veh-card-title { font-size: 15px; }
  .veh-card-body { font-size: 12.5px; line-height: 1.4; }
  .veh-foot-note { font-size: 10.5px; padding: 0 14px; margin-top: 22px; }
  .veh-foot { padding: 0 14px; margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .veh-card { transition: none; }
  .veh-card:hover { transform: none; box-shadow: var(--hard-2); }
}

/* ─── ABLAUF — Vertical Timeline ──────────────────────────────────── */
.abl-list {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
}
.abl-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 28px;
}
.abl-step:last-child { padding-bottom: 0; }

.abl-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.abl-num {
  width: 56px;
  height: 56px;
  border: var(--rule-w-thick) solid var(--ink);
  background: var(--klein);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--hard-2);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}
.abl-line {
  flex: 1;
  width: 2px;
  background: var(--ink);
  margin-top: 8px;
  min-height: 24px;
}
.abl-step:last-child .abl-line { display: none; }

.abl-card {
  padding-top: 4px;
  padding-bottom: 4px;
  min-width: 0;
}
.abl-card-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.abl-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.abl-time {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--klein);
  background: rgba(0, 47, 167, 0.08);
  border: 1.5px solid var(--klein);
  padding: 4px 10px;
  white-space: nowrap;
}
.abl-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 10px;
}
.abl-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.abl-note-mark {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  background: var(--klein);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.abl-foot {
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

/* Scroll-reveal */
.abl-step .abl-card {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 320ms ease-out, transform 320ms ease-out;
}
.abl-step.is-visible .abl-card {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .abl-step .abl-card { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 720px) {
  .abl-list { margin-top: 24px; padding: 0 14px; }
  .abl-step { grid-template-columns: 44px 1fr; gap: 16px; padding-bottom: 22px; }
  .abl-num { width: 44px; height: 44px; font-size: 18px; }
  .abl-line { min-height: 20px; }
  .abl-title { font-size: 20px; }
  .abl-time { font-size: 10px; padding: 3px 8px; }
  .abl-body { font-size: 14.5px; }
  .abl-note { font-size: 10px; }
  .abl-foot { padding: 0 14px; margin-top: 8px; }
}

/* ─── COVERAGE — Interactive Austria Map ──────────────────────────── */
.cov-stage {
  max-width: 1080px;
  margin: 32px auto 0;
  padding: 24px;
  background: var(--paper);
  border: var(--rule-w-thick) solid var(--ink);
  box-shadow: var(--hard-3);
  background-image:
    repeating-linear-gradient(-45deg, transparent 0, transparent 12px, rgba(0, 47, 167, 0.04) 12px, rgba(0, 47, 167, 0.04) 13px);
  position: relative;
}
.cov-stage::before {
  content: "AT";
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--mute);
  pointer-events: none;
}
.cov-map {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
}

.cov-state-link {
  cursor: pointer;
  outline: none;
}
.cov-state {
  fill: var(--klein);
  fill-opacity: 0.85;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linejoin: round;
  transition: fill-opacity 140ms ease-out, fill 140ms ease-out, transform 140ms ease-out;
  transform-origin: center;
}
.cov-state-link:hover .cov-state,
.cov-state-link:focus-visible .cov-state {
  fill: var(--klein-deep, #001E6A);
  fill-opacity: 1;
  stroke-width: 2.4;
}
.cov-state-link:focus-visible {
  outline: 3px solid var(--klein);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .cov-state { transition: none; }
}

/* Mobile */
@media (max-width: 720px) {
  .cov-stage { padding: 14px; margin: 22px 14px 0; max-width: none; }
  .cov-stage::before { top: 10px; right: 12px; font-size: 9px; }
  .cov-map { max-height: 360px; }
  .cov-state { stroke-width: 1.2; }
}
