/* ============================================================================
   TAKE MY CAR · Design System
   Direction: Brutalist Yellow · Industrial Confidence
   Type: Bricolage Grotesque (display) + JetBrains Mono (data)
   ============================================================================ */

/* ─── Tokens ─── */
:root {
  --y:        #FFEC00;
  --y-dark:   #E6D400;
  --y-shade:  #FFF7A8;
  --k:        #000000;
  --k-soft:   #1A1A1A;
  --w:        #FFFFFF;
  --paper:    #FAFAF7;
  --line:     #E6E0CC;
  --mute:     #5A5A5A;

  --eu-blue:  #003399;
  --eu-gold:  #FFCC00;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --b1: 1px solid var(--k);
  --b2: 2px solid var(--k);
  --b3: 3px solid var(--k);

  --gut: clamp(20px, 4vw, 48px);
  --max: 1320px;

  --shadow-block: 6px 6px 0 0 var(--k);
  --shadow-block-y: 6px 6px 0 0 var(--y);

  --t-fast: 120ms cubic-bezier(0.2, 0, 0.2, 1);
  --t-med:  220ms cubic-bezier(0.2, 0, 0.2, 1);

  --z-sticky: 60;
  --z-drawer: 70;
  --z-nav:    80;
  --z-cookie: 90;
}

/* Screen-reader-only label utility */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  color: var(--k);
  background: var(--y);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img, svg, video, canvas { max-width: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--k); outline-offset: 2px; }

/* ============================================================================
   TAPE — top decorative bar
   ============================================================================ */
.tape {
  background: var(--k);
  color: var(--y);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-bottom: var(--b3);
  height: 30px;
}
.tape-mark {
  background: repeating-linear-gradient(90deg, var(--y) 0, var(--y) 14px, var(--k) 14px, var(--k) 28px);
  height: 14px;
  width: 100px;
}
.tape-text {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 16px;
}
.tape-mid, .tape-mini { display: none; }
@media (max-width: 760px) {
  .tape-full { display: none; }
  .tape-mid  { display: inline; }
}
@media (max-width: 440px) {
  .tape-full, .tape-mid { display: none; }
  .tape-mini { display: inline; }
  .tape-text { letter-spacing: 0.8px; padding: 0 8px; }
  .tape-mark { width: 36px; }
}

/* ============================================================================
   NAV
   ============================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: stretch;
  background: var(--y);
  border-bottom: var(--b3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px var(--gut);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.7px;
  line-height: 1;
  border-right: var(--b1);
}
.brand-dot {
  width: 12px; height: 12px;
  background: var(--k);
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-nav {
  padding: 0;
  gap: 0;
  background: var(--k);
  display: block;
  overflow: hidden;
  width: 96px;
  height: 96px;
}
.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.1);
  flex-shrink: 0;
}
.brand-foot {
  display: inline-flex;
  align-items: center;
  background: var(--k);
  padding: 0;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 4px;
}
.brand-foot-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transform: scale(1.1);
  display: block;
}
@media (max-width: 760px) {
  .brand-foot-logo { width: 96px; height: 96px; }
}

/* Footer social icons */
.foot-social {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  gap: 12px;
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--y);
  color: var(--k);
  border-radius: 50%;
  transition: transform var(--t-fast), background var(--t-fast);
}
.foot-social a:hover {
  transform: translateY(-2px);
  background: var(--w);
}
.foot-social svg {
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 760px) {
  .brand-nav { width: 160px; height: 160px; }
}
@media (max-width: 380px) {
  .brand-nav { width: 130px; height: 130px; }
}
.nav-links {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 1px solid rgba(0,0,0,0.15);
  transition: background var(--t-fast);
}
.nav-links a:hover { background: rgba(0,0,0,0.08); }
.nav-cta {
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: var(--k);
  color: var(--y);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  border-left: var(--b3);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-cta:hover { background: var(--y); color: var(--k); }
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 26px;
  border-left: var(--b3);
  background: var(--k);
  min-width: 92px;
  grid-column: -1;
  justify-self: end;
}
.nav-burger span {
  display: block;
  width: 38px;
  height: 4px;
  background: var(--y);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-burger-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--y);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-drawer);
  background: var(--y);
  padding: 100px 24px 32px;
  display: none;
  flex-direction: column;
  gap: 0;
  border-bottom: var(--b3);
  max-height: 100vh;
  overflow-y: auto;
}
@media (max-width: 760px) {
  .nav-drawer { padding-top: 180px; }
}
@media (max-width: 380px) {
  .nav-drawer { padding-top: 150px; }
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 16px 0;
  border-bottom: var(--b1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
}
.nav-drawer a:last-child { border-bottom: 0; }

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-bottom: var(--b3);
  background: var(--y);
}
.hero-left {
  padding: clamp(32px, 5vw, 60px) var(--gut);
  border-right: var(--b3);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Background photo crossfade — only behind .hero-left */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 21s infinite;
  will-change: opacity;
  /* Grayscale + slight contrast bump for brand-consistent moody look */
  filter: grayscale(1) contrast(1.1) brightness(0.9);
}
.hero-slider img:nth-child(1) { animation-delay: 0s; }
.hero-slider img:nth-child(2) { animation-delay: 7s; }
.hero-slider img:nth-child(3) { animation-delay: 14s; }

/* Dark overlay — replaces the previous yellow multiply that was creating a green tint */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
}

/* All hero-left content sits above the slider */
.hero-left > *:not(.hero-slider) { position: relative; z-index: 2; }

@keyframes heroFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  33%  { opacity: 1; }
  38%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Pause cycling while user interacts with the wizard form */
body[data-wizard-focused="1"] .hero-slider img { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .hero-slider img { animation: none; }
  .hero-slider img:nth-child(1) { opacity: 1; }
}
.label-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vw, 32px);
  flex-wrap: wrap;
}
.label-num {
  background: var(--k);
  color: var(--y);
  padding: 3px 9px;
  font-weight: 700;
}
/* Yellow chip backdrops so labels stay legible over photo */
.label-name,
.label-cities {
  background: var(--y);
  padding: 3px 8px;
}
.label-cities {
  margin-left: auto;
  color: var(--k-soft);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(60px, 11vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--w);
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
  margin: 0 0 clamp(24px, 3vw, 40px);
  word-break: break-word;
}
.hero-h1 .hl {
  display: inline-block;
  background: var(--k);
  color: var(--y);
  padding: 0 0.12em;
  margin-left: 0.05em;
}
.hero-light {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.72em;
  letter-spacing: 0.005em;
  text-transform: none;
  margin-top: 0.05em;
}
.hero-star {
  font-family: var(--font-mono);
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 400;
  margin-left: 0.05em;
}
.hero-foot {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  background: rgba(255, 236, 0, 0.78);
  border-top: var(--b2);
  padding: 16px 14px 14px;
  margin-top: auto;
  max-width: 60ch;
}
.hero-foot .ast {
  display: inline-block;
  padding: 1px 6px;
  background: var(--k);
  color: var(--y);
  margin-right: 6px;
  font-weight: 700;
}
.hero-foot strong { font-family: var(--font-display); font-weight: 700; }

.hero-actions-mobile {
  display: none;
  margin-top: 20px;
  gap: 10px;
}
.hero-actions-mobile .btn { flex: 1; }

/* ============================================================================
   WIZARD
   ============================================================================ */
.wizard {
  background: var(--k);
  color: var(--y);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
}
.wiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 14px;
}
.wiz-step {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.wiz-dots {
  display: flex;
  gap: 5px;
}
.wiz-dots span {
  width: 30px;
  height: 6px;
  background: #3a3500;
  transition: background var(--t-med);
}
.wiz-dots span.on { background: var(--y); }

.wiz-form { display: flex; flex-direction: column; }
.wiz-panel {
  border: 0;
  display: none;
  flex-direction: column;
  gap: 16px;
}
.wiz-panel.active { display: flex; }
.wiz-panel.wiz-success { text-align: center; align-items: center; padding: 8px 0; }

.wiz-q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: -4px;
}
.wiz-help {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(255, 236, 0, 0.7);
  line-height: 1.55;
}

/* Plate input — modeled on a real Austrian (EU) plate */
.plate-input {
  position: relative;
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 55%, #e6e6e6 100%);
  border: 3px solid #0a0a0a;
  border-radius: 6px;
  height: 64px;
  cursor: text;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -2px 4px rgba(0,0,0,0.08),
    0 1px 0 rgba(0,0,0,0.4);
  transition: box-shadow var(--t-fast);
}
.plate-input:focus-within { box-shadow: var(--shadow-block-y); }
.plate-eu {
  background: linear-gradient(180deg, #003399 0%, #002277 100%);
  color: var(--w);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 4px;
  flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.25);
}
.plate-stars-svg { width: 30px; height: 30px; display: block; }
.plate-A {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  margin-top: -2px;
}
.plate-input input {
  flex: 1;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--k);
  text-transform: uppercase;
  border: 0;
  background: transparent;
  outline: none;
  min-width: 0;
}
.plate-input input::placeholder { color: #999; font-weight: 500; }
.plate-static { cursor: default; }

/* Bundesländer coverage grid (Step 1) */
.wiz-coverage { margin: 22px 0 4px; }
.wiz-coverage-h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 236, 0, 0.65);
  text-align: center;
  margin: 0 0 12px;
}
.states-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.state {
  background: var(--w);
  border: 2px solid var(--k);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.state:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-block-y);
}
.state a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 6px 10px;
  text-decoration: none;
  color: inherit;
}
.state img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.state span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--k);
  text-align: center;
  line-height: 1.15;
}
.plate-brand {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', 'Arial Narrow', var(--font-display);
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 5px;
  color: #0a0a0a;
  text-transform: uppercase;
  padding: 0 12px 0 4px;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    0 -1px 0 rgba(0,0,0,0.18);
}

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 236, 0, 0.85);
}
.field input,
.field select,
.field textarea {
  background: var(--w);
  color: var(--k);
  border: var(--b2);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  border-radius: 0;
  transition: box-shadow var(--t-fast);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus { box-shadow: var(--shadow-block-y); }
.field input.err,
.field select.err,
.field textarea.err { box-shadow: 4px 4px 0 0 #ff3b30; border-color: #ff3b30; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Condition radio grid */
.cond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cond {
  position: relative;
  cursor: pointer;
  display: block;
}
.cond input { position: absolute; opacity: 0; pointer-events: none; }
.cond span {
  display: block;
  background: var(--k-soft);
  border: var(--b2);
  border-color: rgba(255, 236, 0, 0.25);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  line-height: 1.5;
  color: rgba(255, 236, 0, 0.7);
  transition: all var(--t-fast);
}
.cond span b {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--y);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}
.cond span i {
  display: block;
  font-style: normal;
  color: inherit;
}
.cond:hover span { border-color: var(--y); }
.cond input:checked + span {
  background: var(--y);
  color: var(--k);
  border-color: var(--y);
}
.cond input:checked + span b { color: var(--k); }

/* CTAs */
.wiz-cta {
  background: var(--y);
  color: var(--k);
  padding: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wiz-cta:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--y); }
.wiz-cta:active { transform: translate(0, 0); box-shadow: none; }
.wiz-final { background: var(--y); }

.wiz-skip,
.wiz-back {
  background: transparent;
  border: var(--b2);
  border-color: rgba(255, 236, 0, 0.4);
  color: var(--y);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  transition: all var(--t-fast);
}
.wiz-skip:hover, .wiz-back:hover { border-color: var(--y); }
.wiz-call {
  background: transparent;
  color: var(--y);
  text-decoration: underline;
  padding: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3px;
  text-align: center;
  width: 100%;
  margin-top: 4px;
}

.wiz-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; }
.wiz-row .wiz-back { width: auto; padding: 12px 18px; }

.wiz-fine {
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(255, 236, 0, 0.6);
  letter-spacing: 0.2px;
}
.wiz-fine a { color: var(--y); text-decoration: underline; }

.success-icon {
  width: 64px; height: 64px;
  background: var(--y);
  color: var(--k);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  margin: 0 auto 12px;
}

/* ============================================================================
   STRIPE — trust signals
   ============================================================================ */
.stripe {
  background: var(--k);
  color: var(--y);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--b3);
}
.stripe > div {
  padding: 22px clamp(16px, 2.4vw, 28px);
  border-right: 1px solid rgba(255, 236, 0, 0.18);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.stripe > div:last-child { border-right: 0; }
.stripe b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -1.5px;
  margin-bottom: 4px;
  text-transform: none;
  line-height: 1;
}
.stripe b.serial {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.7vw, 28px);
  letter-spacing: -0.4px;
}

/* ============================================================================
   KAPITEL — section base
   ============================================================================ */
.kap {
  padding: clamp(56px, 7vw, 96px) var(--gut);
  background: var(--y);
  border-bottom: var(--b3);
}
.kap-dark {
  background: var(--k);
  color: var(--y);
}
.kap-head {
  max-width: var(--max);
  margin: 0 auto clamp(36px, 4vw, 56px);
}
.kap-head-dark .label-tag,
.label-tag.tag-inv {
  background: var(--y);
  color: var(--k);
}
.label-tag {
  display: inline-block;
  background: var(--k);
  color: var(--y);
  padding: 6px 11px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
}
.kap-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  word-break: break-word;
}
.kap-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.1px;
  max-width: 56ch;
  color: var(--k-soft);
}
.kap-dark .kap-sub { color: rgba(255, 236, 0, 0.78); }

/* ============================================================================
   FAHRZEUGE GRID
   ============================================================================ */
.types-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--b2);
  border-left: var(--b2);
}
.types-grid > div {
  padding: 22px 16px;
  border-right: var(--b2);
  border-bottom: var(--b2);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--y);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--t-fast);
}
.types-grid > div::before {
  content: '■';
  color: var(--k);
  font-size: 11px;
  transition: transform var(--t-fast);
}
.types-grid > div:hover { background: var(--y-shade); }
.types-grid > div:hover::before { transform: rotate(45deg); }

/* ============================================================================
   ABLAUF — process steps
   ============================================================================ */
.ablauf {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--b2);
  border-left: var(--b2);
  border-color: var(--y);
}
.ablauf li {
  border-right: var(--b2);
  border-bottom: var(--b2);
  border-color: var(--y);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.ablauf-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: rgba(255, 236, 0, 0.6);
}
.ablauf h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 34px);
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
}
.ablauf p {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 236, 0, 0.78);
  margin-top: auto;
  padding-top: 12px;
}

/* ============================================================================
   WARUM — why us
   ============================================================================ */
.warum-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--k);
  color: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.check-list-inv li::before {
  background: var(--y);
  color: var(--k);
}

.tipp-box {
  background: var(--k);
  color: var(--y);
  padding: 28px;
  border: var(--b3);
  position: relative;
  box-shadow: var(--shadow-block);
}
.tipp-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}
.tipp-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
}
.tipp-author {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 236, 0, 0.6);
  letter-spacing: 0.3px;
}

/* ============================================================================
   COVERAGE
   ============================================================================ */
.coverage {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.coverage-map { min-width: 0; }
.map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 500;
  background: var(--k);
  border: var(--b3);
  border-color: var(--y);
  box-shadow: 8px 8px 0 0 var(--y);
}
.austria-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.map-caption {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.map-caption li {
  flex: 1 1 0;
  min-width: 90px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 236, 0, 0.3);
  background: rgba(255, 236, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.map-caption li b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--y);
  line-height: 1;
}
.map-caption li span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 236, 0, 0.65);
}
@media (max-width: 480px) {
  .map-caption { gap: 6px; }
  .map-caption li { min-width: 0; padding: 8px 10px; }
  .map-caption li b { font-size: 17px; }
  .map-caption li span { font-size: 9px; letter-spacing: 1.1px; }
}
.bundes-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: var(--b2);
  border-color: var(--y);
}
.bundes-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: var(--b2);
  border-color: var(--y);
  font-family: var(--font-mono);
}
.bundes-list b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--y);
}
.bundes-list span {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 236, 0, 0.6);
}

/* ============================================================================
   REVIEWS
   ============================================================================ */
.reviews {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--b2);
  border-left: var(--b2);
}
.review {
  border-right: var(--b2);
  border-bottom: var(--b2);
  padding: 26px 22px;
  background: var(--y);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--t-fast);
}
.review:hover { background: var(--y-shade); }
.review-stars {
  color: var(--k);
  font-size: 16px;
  letter-spacing: 2px;
}
.review blockquote {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.2px;
  font-weight: 500;
  flex: 1;
}
.review blockquote::before { content: '"'; margin-right: 0; }
.review blockquote::after { content: '"'; }
.review footer {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  border-top: var(--b1);
  padding-top: 10px;
  color: var(--mute);
}
.review footer b { color: var(--k); }

/* ============================================================================
   EXPORT
   ============================================================================ */
.export-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.export-flag {
  text-align: center;
}
.flag-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border: var(--b3);
  border-color: var(--y);
  padding: 16px;
  background: var(--k);
}
.flag-stack span {
  background: var(--y);
  color: var(--k);
  padding: 14px 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.flag-label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255, 236, 0, 0.7);
}

/* ============================================================================
   FAQ
   ============================================================================ */
.faq {
  max-width: 900px;
  margin: 0 auto;
  border-top: var(--b2);
}
.faq details {
  border-bottom: var(--b2);
}
.faq summary {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  letter-spacing: -0.3px;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 26px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.faq details[open] summary::after { content: '−'; }
.faq p {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 22px;
  max-width: 70ch;
}
.faq a { text-decoration: underline; }

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.finalcta {
  background: var(--k);
  color: var(--y);
  padding: clamp(64px, 8vw, 120px) var(--gut);
  border-bottom: var(--b3);
}
.finalcta-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.finalcta .label-tag {
  background: var(--y);
  color: var(--k);
  margin-bottom: 24px;
}
.finalcta .kap-h2 { margin-bottom: 16px; }
.finalcta .kap-sub {
  color: rgba(255, 236, 0, 0.78);
  margin: 0 auto 32px;
}
.finalcta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: var(--b3);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-block-yellow {
  background: var(--y);
  color: var(--k);
  border-color: var(--y);
}
.btn-block-white {
  background: var(--w);
  color: var(--k);
  border-color: var(--w);
}
.btn-block-yellow:hover,
.btn-block-white:hover {
  transform: translate(-3px, -3px);
}
.btn-block-yellow:hover { box-shadow: 6px 6px 0 0 var(--y-shade); }
.btn-block-white:hover { box-shadow: 6px 6px 0 0 #ddd; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.foot {
  background: var(--y);
  border-top: var(--b3);
  padding: clamp(32px, 4vw, 48px) var(--gut) 24px;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.brand-foot {
  border-right: 0;
  padding: 0 0 12px;
  font-size: 24px;
}
.foot h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.foot p {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
}
.foot p a { text-decoration: underline; }
.foot-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--k-soft);
  max-width: 32ch;
}
.foot-mute { color: var(--mute); }
.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: var(--b2);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================================
   STICKY MOBILE CTA
   ============================================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  display: none;
  background: var(--k);
  border-top: var(--b3);
  border-color: var(--y);
}
.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 12px 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--y);
  border-right: 1px solid rgba(255, 236, 0, 0.2);
}
.sticky-cta a:last-child { border-right: 0; }
.sticky-cta .sticky-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sticky-cta .sticky-call { background: #C8102E; color: #fff; }
.sticky-cta .sticky-wa   { background: #25D366; color: #fff; }
.sticky-cta .sticky-form { background: var(--y); color: var(--k); }
@media (max-width: 380px) {
  .sticky-cta a { font-size: 11px; gap: 6px; }
  .sticky-cta .sticky-icon { width: 18px; height: 18px; }
}

/* ============================================================================
   COOKIE BANNER
   ============================================================================ */
.cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: var(--z-cookie);
  background: var(--k);
  color: var(--y);
  border: var(--b3);
  border-color: var(--y);
  box-shadow: var(--shadow-block-y);
  padding: 18px 22px;
  display: none;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie-text {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: 0.1px;
  min-width: 200px;
}
.cookie-text strong { font-family: var(--font-display); font-weight: 800; }
.cookie-text a { text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btns button {
  padding: 11px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: var(--b2);
  border-color: var(--y);
  transition: all var(--t-fast);
}
.cookie-decline { background: transparent; color: var(--y); }
.cookie-decline:hover { background: rgba(255, 236, 0, 0.1); }
.cookie-accept { background: var(--y); color: var(--k); }
.cookie-accept:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 0 var(--y-shade); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1100px) {
  .nav-links a { padding: 0 12px; font-size: 11px; }
  .types-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { border-right: 0; border-bottom: var(--b3); }

  .nav { background: var(--k); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .stripe { grid-template-columns: repeat(2, 1fr); }
  .stripe > div:nth-child(2) { border-right: 0; }
  .stripe > div:nth-child(1),
  .stripe > div:nth-child(2) { border-bottom: 1px solid rgba(255, 236, 0, 0.18); }

  .ablauf { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }

  .warum-grid { grid-template-columns: 1fr; }
  .coverage { grid-template-columns: 1fr; }
  .export-grid { grid-template-columns: 1fr; }

  .reviews { grid-template-columns: repeat(2, 1fr); }
  .reviews > article:last-child { border-right: 0; }

  .foot-grid { grid-template-columns: 1fr 1fr; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 56px; }
  .cookie { bottom: 72px; }

  /* Box-shadows that protrude right cause horizontal viewport overflow on phones */
  .map-stage  { box-shadow: none; }
  .tipp-box   { box-shadow: none; }
  .wiz-cta:hover,
  .btn-block-yellow:hover,
  .btn-block-white:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 620px) {
  .hero-actions-mobile { display: flex; }
  .nav-cta { display: none; }
  .label-cities { display: none; }

  .stripe { grid-template-columns: 1fr; }
  .stripe > div { border-right: 0; border-bottom: 1px solid rgba(255, 236, 0, 0.18); }
  .stripe > div:last-child { border-bottom: 0; }

  .ablauf { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .reviews > article { border-right: 0; }

  .foot-grid { grid-template-columns: 1fr; }

  .grid-2 { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr; }

  .tape-text { font-size: 10px; letter-spacing: 1px; padding: 0 10px; }
  .tape-mark { width: 50px; }

  .finalcta-actions { flex-direction: column; }
  .finalcta-actions .btn { width: 100%; }

  .cookie { flex-direction: column; align-items: stretch; }
  .cookie-btns { justify-content: stretch; }
  .cookie-btns button { flex: 1; }
}

/* Phones — narrow viewports (<440px). Tame typography + gutters so nothing overflows. */
@media (max-width: 440px) {
  :root { --gut: 16px; }

  .hero-left { padding: 28px var(--gut); }
  .hero-h1 { letter-spacing: -0.035em; }
  .hero-h1 .hl { padding: 0 0.08em; margin-left: 0.04em; }
  .hero-foot { font-size: 12.5px; }
  .label-row { gap: 10px; margin-bottom: 18px; }

  .wizard { padding: 24px 18px; }
  .wiz-q { font-size: 22px; }
  .plate-input input { font-size: 19px; padding: 0 12px; }
  .plate-input { height: 56px; border-radius: 5px; }
  .plate-eu { width: 36px; }
  .plate-stars-svg { width: 24px; height: 24px; }
  .plate-A { font-size: 13px; }
  .plate-brand { font-size: 30px; letter-spacing: 4px; padding: 0 8px 0 2px; }
  .states-grid { gap: 6px; }
  .state { padding: 10px 4px 8px; }
  .state img { width: 36px; height: 36px; }
  .state span { font-size: 8.5px; }

  .kap { padding: 48px var(--gut); }
  .kap-head { margin-bottom: 28px; }
  .kap-sub { font-size: 13px; }

  .ablauf li { padding: 22px 18px; }
  .ablauf h3 { font-size: 24px; }

  .tipp-box { padding: 22px; }
  .tipp-text { font-size: 16px; }

  .review { padding: 22px 18px; }
  .review blockquote { font-size: 15px; }

  .faq summary { padding: 18px 0; font-size: 16px; }
  .faq p { font-size: 13px; padding-bottom: 18px; }

  .finalcta { padding: 56px var(--gut); }

  .foot { padding: 40px var(--gut) 24px; }
  .foot-bottom { font-size: 10px; }

  .nav .brand { padding: 14px var(--gut); font-size: 18px; }
  .nav-burger { padding: 0 14px; }

  .map-stage { box-shadow: 4px 4px 0 0 var(--y); }
}

/* iPhone home-indicator safe-area for sticky CTA */
@supports (padding: env(safe-area-inset-bottom)) {
  .sticky-cta {
    padding-bottom: env(safe-area-inset-bottom);
  }
  @media (max-width: 920px) {
    body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
    .cookie { bottom: calc(72px + env(safe-area-inset-bottom)); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================================
   PRINT — minimal but legible
   ============================================================================ */
@media print {
  .nav, .sticky-cta, .cookie, .tape, .nav-burger, .nav-drawer { display: none !important; }
  .wizard, .finalcta, .kap-dark { background: var(--w); color: var(--k); }
  .hero-h1 .hl { background: transparent; color: var(--k); border: var(--b2); }
}

/* ============================================================================
   LEGAL PAGES (impressum, datenschutz)
   ============================================================================ */
.legal {
  background: var(--paper);
  border-bottom: var(--b3);
  padding: clamp(56px, 7vw, 96px) var(--gut);
  min-height: 60vh;
}
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  border-bottom: var(--b2);
  padding-bottom: 4px;
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--mute);
  margin-bottom: 32px;
}
.legal-grid { display: flex; flex-direction: column; border-top: var(--b2); margin-top: 24px; }
.legal-grid section { padding: 28px 0; border-bottom: var(--b2); }
.legal-grid h2 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: var(--k);
  color: var(--y);
  display: inline-block;
  padding: 5px 10px;
}
.legal-grid p,
.legal-grid li {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1px;
  max-width: 70ch;
}
.legal-grid ul { padding-left: 22px; margin-top: 6px; list-style: square; }
.legal-grid li { margin-bottom: 4px; }
.legal-grid p strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.1px;
}
.legal-grid p a { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   STATE PAGES — appended for Bundesländer landing pages
   ════════════════════════════════════════════════════════════ */

/* State pages: solid yellow hero (no carousel), codes block lives in the wizard column */
.state-page .hero-slider { display: none; }
.state-page .hero-left { background: var(--y); }

/* Coverage side panel on state pages — replaces the all-9-states list */
.coverage-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0;
}
.coverage-side-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 236, 0, 0.55);
  margin: 0;
}
.coverage-side-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--y);
  margin: 0;
  text-shadow: 0 0 32px rgba(255, 236, 0, 0.35);
}
.coverage-side-note {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 236, 0, 0.65);
  margin: -4px 0 4px;
}
.coverage-side-prose {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 236, 0, 0.85);
  margin: 8px 0 4px;
}
.coverage-side-feats {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coverage-side-feats li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 236, 0, 0.15);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--y);
  line-height: 1.4;
}
.coverage-side-feats li:last-child { border-bottom: 1px solid rgba(255, 236, 0, 0.15); }
.coverage-side-feats .feat-num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 236, 0, 0.5);
  padding-top: 3px;
  min-width: 24px;
}
.coverage-side-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 16px 22px;
  background: var(--y);
  color: var(--k);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 2px solid var(--y);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.coverage-side-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--w);
}

@media (max-width: 920px) {
  .coverage-side-big { font-size: clamp(48px, 14vw, 76px); }
  .coverage-side-prose { font-size: 14px; }
  .coverage-side-feats li { font-size: 13.5px; }
}

/* District-code chips embedded inside the wizard aside on state pages */
.hero-codes {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 236, 0, 0.18);
}
.hero-codes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-codes-grid .code-chip {
  min-width: 50px;
  height: 36px;
  padding: 0 12px;
  font-size: 15px;
  letter-spacing: 1px;
}

@media (max-width: 920px) {
  .hero-codes-grid { gap: 6px; }
  .hero-codes-grid .code-chip { min-width: 44px; height: 32px; font-size: 14px; padding: 0 10px; }
}

/* Hero state row — Wappen + H1 side-by-side on desktop, stacked on mobile */
.hero-state-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 6px;
}
.hero-wappen {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--w);
  padding: 6px;
  border: 2px solid var(--k);
  display: block;
  object-fit: contain;
}
.hero-h1-state {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.hero-h1-state .h1-pre {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.7vw, 24px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.1;
}
.hero-h1-state .h1-state {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 76px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--k);
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 720px) {
  .hero-state-row { flex-direction: column; gap: 10px; }
  .hero-wappen { width: 56px; height: 56px; }
  .hero-h1-state .h1-state { font-size: clamp(36px, 11vw, 56px); }
}

/* Hero pickup line */
.hero-pickup {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--y);
  margin: 8px 0 16px;
  max-width: 480px;
}

/* Map: dim non-active states on state pages, spotlight the active one */
.state-page .at-bundes path {
  fill: var(--y);
  stroke: rgba(0, 0, 0, 0.6);
  stroke-width: 1;
  opacity: 0.12;
  transition: opacity var(--t-fast), filter var(--t-fast);
}

/* Each state-N body class spotlights its own path
   Note: prefixed with .state-page to beat .state-page .at-bundes path specificity */
.state-page.state-wien              .bl-wien,
.state-page.state-niederoesterreich .bl-niederoesterreich,
.state-page.state-oberoesterreich   .bl-oberoesterreich,
.state-page.state-steiermark        .bl-steiermark,
.state-page.state-salzburg          .bl-salzburg,
.state-page.state-tirol             .bl-tirol,
.state-page.state-kaernten          .bl-kaernten,
.state-page.state-vorarlberg        .bl-vorarlberg,
.state-page.state-burgenland        .bl-burgenland {
  fill: #FFEC00;
  stroke: #000;
  stroke-width: 2.5;
  opacity: 1;
  filter:
    drop-shadow(0 0 4px rgba(255, 236, 0, 1))
    drop-shadow(0 0 18px rgba(255, 236, 0, 0.95))
    drop-shadow(0 0 36px rgba(255, 236, 0, 0.7))
    drop-shadow(0 0 70px rgba(255, 236, 0, 0.4));
}

.state-page .at-bundes a path:hover {
  opacity: 0.55;
  cursor: pointer;
}

/* Home page (no .state-page class): hover-to-spotlight on the Austria map */
body:not(.state-page) .at-bundes path {
  transition: opacity var(--t-fast), filter var(--t-fast), stroke-width var(--t-fast);
}
body:not(.state-page) .at-bundes a {
  cursor: pointer;
}
body:not(.state-page) .at-bundes:hover path {
  opacity: 0.3;
}
body:not(.state-page) .at-bundes:hover a:hover path {
  opacity: 1;
  stroke-width: 2.5;
  filter:
    drop-shadow(0 0 4px rgba(255, 236, 0, 1))
    drop-shadow(0 0 18px rgba(255, 236, 0, 0.85))
    drop-shadow(0 0 36px rgba(255, 236, 0, 0.5));
}

/* District codes block */
.kap-codes { background: var(--k); color: var(--y); }
.kap-codes .kap-h2 { color: var(--y); }
.kap-codes .kap-sub { color: rgba(255, 236, 0, 0.7); }
.codes-grid {
  list-style: none;
  margin: 24px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 720px;
}
.code-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 38px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--k);
  background: var(--w);
  border: 2px solid var(--k);
  border-radius: 4px;
}

/* Cities block */
.cities-block {
  margin: 28px auto 0;
  text-align: center;
  max-width: 720px;
}
.cities-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 236, 0, 0.6);
  margin: 0 0 6px;
}
.cities-list {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--y);
  margin: 0;
  line-height: 1.5;
}

/* Top nav: Standorte dropdown — matches sibling nav-links a styling */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
  border-left: 1px solid rgba(0,0,0,0.15);
  transition: background var(--t-fast);
}
.nav-dropdown:hover { background: rgba(0,0,0,0.08); }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--k);
  border: 2px solid var(--y);
  padding: 8px 0;
  min-width: 220px;
  display: none;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--y);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 0;
}
.nav-dropdown-menu a:hover { background: var(--y); color: var(--k); }

/* Mobile drawer states submenu — matches sibling .nav-drawer a styling */
.drawer-states {
  border-bottom: var(--b1);
}
.drawer-states summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
  cursor: pointer;
  list-style: none;
}
.drawer-states summary::-webkit-details-marker { display: none; }
.drawer-states summary::after {
  content: '▾';
  font-size: 14px;
  transition: transform var(--t-fast);
}
.drawer-states[open] summary::after { transform: rotate(180deg); }
.drawer-states a {
  display: block;
  padding: 12px 0 12px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.drawer-states a:last-child { border-bottom: 0; }

/* Footer state-link grid */
.footer-states {
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.footer-states-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--k);
  opacity: 0.6;
  margin: 0 0 10px;
}
.footer-states-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer-states-list a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--k);
  text-decoration: none;
}
.footer-states-list a:hover { text-decoration: underline; }

/* Mobile responsive for codes block */
@media (max-width: 480px) {
  .code-chip { min-width: 48px; height: 34px; font-size: 15px; padding: 0 10px; }
  .codes-grid { gap: 6px; }
  .cities-list { font-size: 16px; }
  .hero-pickup { font-size: 13px; }
}
