/* ============================================================
   AMD Tarifcheck – Premium Design System
   
   Strategie: Diese Datei überschreibt style.css gezielt.
   Alle CSS-Variablen (Tokens), dann Komponente für Komponente.
   Funktionen, IDs, Formulare, JS-Hooks: unberührt.
   ============================================================ */

/* ── GOOGLE FONTS: Neue Schriftstrategie ──────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   1. DESIGN TOKENS – komplett neues Farbsystem
   Philosophie: Tiefes Stahl-Blau als Basis. 
   Ein gedämpftes Kupfer-Bernstein als Akzent (kein schrilles Orange).
   Neutrale Grautöne. Viel Weiß.
   ============================================================ */

:root {
  /* ── Primärfarben ── */
  --navy:    #0f1f35;       /* tiefes Stahl-Navy (Hauptdunkel) */
  --navy2:   #1a3353;       /* etwas heller, für Verläufe */
  --navy3:   #243f65;       /* mittlere Tiefe */

  /* ── Akzentfarbe: gedämpftes Premium-Kupfer ── */
  --accent:  #c45c14;       /* seriöseres, dunkleres Kupfer-Bernstein */
  --accent2: #d96d1e;       /* etwas heller für Hover */
  --accent-light: #fdf0e6;  /* sehr helles Akzent-Tint */
  --accent-mid:   #f4c9a0;  /* mittleres Tint */

  /* ── Grüntöne (WhatsApp, Erfolgsstatus) ── */
  --green:   #16803a;       /* etwas gesättigter/dunkler */
  --green-light: #f0fdf4;
  --wa:      #22c55e;

  /* ── Neutraltöne ── */
  --text:    #111827;       /* fast schwarz, kein Blauton */
  --text-2:  #374151;       /* Zwischentext */
  --muted:   #6b7280;       /* grauer Nebentext */
  --muted-2: #9ca3af;       /* hellerer Nebentext */

  /* ── Hintergründe ── */
  --bg:      #f9fafb;       /* sehr leichtes Neutralgrau */
  --bg-alt:  #f3f4f6;       /* minimal dunkler */
  --bg-deep: #eef0f3;       /* für Alt-Sektionen */
  --white:   #ffffff;
  --card:    #ffffff;

  /* ── Ränder ── */
  --border:  #e5e7eb;       /* klares, kühles Grau */
  --border-2:#d1d5db;       /* etwas kräftiger */

  /* ── Schatten: zurückhaltender, klarer ── */
  --shadow-soft:   0 1px 3px rgba(15,31,53,.06), 0 4px 16px rgba(15,31,53,.07);
  --shadow-strong: 0 4px 8px rgba(15,31,53,.06), 0 12px 32px rgba(15,31,53,.10);
  --shadow-card:   0 2px 8px rgba(15,31,53,.07), 0 8px 24px rgba(15,31,53,.08);
  --shadow-hover:  0 8px 24px rgba(15,31,53,.12), 0 20px 48px rgba(15,31,53,.10);

  /* ── Ring / Focus ── */
  --ring:    rgba(196,92,20,.25);
  --ring-blue: rgba(26,51,83,.2);

  /* ── Weitere Kompatibilitäts-Tokens ── */
  --blue:    #1e4b8f;       /* gedämpftes Blau */
  --line:    #e5e7eb;
  --shadow:  0 4px 16px rgba(15,31,53,.10);
  --blue-100: #eff4fc;
  --blue-200: #c7d9f3;

  /* ── Typografie ── */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}


/* ============================================================
   2. BASISRESET & BODY
   ============================================================ */

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Alle Sora-Referenzen durch Plus Jakarta Sans ersetzen */
.section__title, .section-title, .section-label,
.card__title, .nav__link, .subnav__link,
.hero h1, .kfz-hero h1, .page-hero h1,
.why-card h4, .zul-card h3, .kfz-card h3,
.btn, .trust-num, .price-badge .price,
.why-icon, h1, h2, h3, h4, h5, h6,
.footer-top h4, .fsec-title, .kfz-kicker,
.benefits-panel h2, .zul-promo h2, .urlaub-text h2,
.cta-block h3, .step-card, .contact-block h3,
.section-sub, .hero-badge, .hero__badge,
.docs-tab, .kfz-tab, .kfz-pill,
.btn-dl, .btn-white, .btn-wa-scheiben, .btn-copy {
  font-family: var(--font-display);
}


/* ============================================================
   3. TOPBAR
   ============================================================ */

.topbar {
  background: var(--navy);
  color: #94a3b8;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.topbar a {
  color: #93c5fd;
  transition: color .15s;
}
.topbar a:hover {
  color: #fff;
  text-decoration: none;
}

.topbar-inner,
.topbar .container {
  gap: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.topbar .right {
  color: #64748b;
  font-size: 0.72rem;
}

.nav__cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: .01em;
}
.nav__cta:hover {
  background: var(--accent2) !important;
}


/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(15,31,53,.04);
}

.header .bar,
.header-inner {
  min-height: 68px;
}

/* Logo */
.brand__logo-img,
.logo-wrap img {
  height: 80px !important;
  filter: none;
}

/* Desktop-Navigation */
.nav__list {
  gap: 2px;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: 7px;
  letter-spacing: .01em;
  transition: background .15s, color .15s;
}

.nav__link:hover {
  background: var(--bg-alt);
  color: var(--navy);
  text-decoration: none;
}

.nav__link.is-active,
.nav__link[aria-current="page"] {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
}

/* Mobile Toggle */
.nav__toggle {
  border-color: var(--border-2);
  border-radius: 7px;
  color: var(--navy);
  background: var(--white);
}

/* Mobile Nav geöffnet */
.nav.open {
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15,31,53,.12);
}

/* Subnav */
.subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.subnav__link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
}

.subnav__link:hover {
  background: var(--bg-alt);
  color: var(--navy);
}

.subnav__link.is-active {
  background: var(--accent);
  color: #fff;
}

.subnav__arrow {
  border-color: var(--border);
  color: var(--text-2);
  box-shadow: none;
  border-radius: 7px;
}


/* ============================================================
   5. HERO – Bild-Hero (Startseite)
   ============================================================ */

/* Stärkeres, edleres Overlay */
.hero::before,
.hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(10,19,33,.88) 0%,
    rgba(15,31,53,.72) 40%,
    rgba(15,31,53,.38) 70%,
    rgba(15,31,53,.06) 100%
  ) !important;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.2);
}

.hero h1 em {
  color: var(--accent-mid);
  font-style: normal;
}

.hero__lead {
  color: #dce6f0;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
  max-width: 56ch;
}

.hero__hint {
  color: #a8c0d8;
  font-size: 0.9rem;
}

.hero__badge,
.hero-badge {
  background: rgba(196,92,20,.18);
  border: 1px solid rgba(196,92,20,.35);
  color: #f4b98a;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 12px;
  width: fit-content;
  max-width: min(420px, 90vw);
  white-space: normal;
  line-height: 1.5;
  justify-self: start;
  align-self: start;
}
/* Hero-Badges auf Foto-Hintergründen besser lesbar */
.kfz-hero .hero__badge,
.kfz-hero .hero-badge {
  background: rgba(15,31,53,.82);
  border: 1px solid rgba(255,255,255,.18);
  color: #f4b98a;
  backdrop-filter: blur(8px);
}

/* ============================================================
   6. PAGE-HERO (Unterseiten, dark gradient)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy3) 100%);
  padding: 52px 20px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 60%, rgba(196,92,20,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero p {
  color: #93c5fd;
}

/* Kleines Kicker-Badge in page-hero */
.page-hero .hero__badge,
.page-hero-inner .hero__badge {
  border-radius: 4px;
}


/* ============================================================
   7. KFZ-HERO (Bild-Unterseiten)
   ============================================================ */

.kfz-hero::before {
  background: linear-gradient(
    0deg,
    rgba(10,19,33,.94) 0%,
    rgba(10,19,33,.72) 45%,
    rgba(10,19,33,.22) 100%
  ) !important;
}

.kfz-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.kfz-kicker {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: .08em;
}


/* ============================================================
   8. SECTION TITLES & LABELS
   ============================================================ */

.section-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title,
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.18;
}

.section-sub {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
}


/* ============================================================
   9. BUTTONS
   Saubere, klare Geometrie. Kein übermäßiger Radius.
   ============================================================ */

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: .01em;
  border-radius: 8px;
  min-height: 44px;
  padding: 11px 20px;
  transition: background .15s, box-shadow .15s, transform .12s, border-color .15s;
  border: 1.5px solid transparent;
}

.btn:active {
  transform: translateY(1px);
}

/* Primär: Kupfer solid */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(196,92,20,.25), 0 1px 2px rgba(196,92,20,.15);
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  box-shadow: 0 4px 16px rgba(196,92,20,.35);
  transform: translateY(-1px);
}

/* Ghost (auf dunklem Hintergrund) */
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.42);
}

/* Outline (auf dunklem Hintergrund) */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.38);
}
.btn-outline:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.55);
}

/* Outline blau */
.btn-outline--blue {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}
.btn-outline--blue:hover {
  background: var(--blue-100);
}

/* WhatsApp-Button */
.btn-wa {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-wa:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(22,128,58,.28);
}

/* Weißer Button (auf Farb-BG) */
.btn-white {
  background: #fff;
  color: var(--accent);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  padding: 11px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}
.btn-white:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transform: translateY(-1px);
}

/* Download-Button */
.btn-dl {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
}
.btn-dl:hover {
  background: var(--accent);
}

/* Outline weich (Header-Bereich) */
.btn-outline-soft {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border-2);
  border-radius: 8px;
}
.btn-outline-soft:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Kleine Buttons */
.btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
  min-height: 36px;
  border-radius: 6px;
}


/* ============================================================
   10. KARTEN
   ============================================================ */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
  border-radius: 0 0 12px 12px;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-2);
}

.card:hover::after {
  transform: scaleX(1);
}

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.card__text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.card__cta {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.84rem;
}

/* Why-Cards */
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow .18s, border-color .18s;
}
.why-card:hover {
  box-shadow: var(--shadow-strong);
  border-color: var(--border-2);
}

.why-icon.orange { background: var(--accent-light); }
.why-icon.blue   { background: var(--blue-100); }
.why-icon.green  { background: #f0fdf4; }
.why-icon.purple { background: #f5f3ff; }

.why-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* KFZ-Cards */
.kfz-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s, box-shadow .18s;
}
.kfz-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}
.kfz-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Zulassung-Cards */
.zul-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.zul-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

/* Info-Cards */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

/* Step-Cards */
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.step-card::before {
  background: var(--accent);
  border-radius: 50%;
}


/* ============================================================
   11. TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.04);
}

.trust-item {
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.trust-item:last-child { border-right: none; }

.trust-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-mid);
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 0.73rem;
  color: #64748b;
  letter-spacing: .03em;
}


/* ============================================================
   12. FORMULARE
   ============================================================ */

.form-field span,
.form-field label,
.flabel,
.kfz-upload__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .01em;
}

.form-field input,
.form-field select,
.form-field textarea,
.fgrid input[type=text],
.fgrid select,
.fgrid input,
.scheiben-wrap input,
.scheiben-wrap select {
  border: 1.5px solid var(--border-2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  padding: 11px 14px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.fgrid input:focus,
.fgrid select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,92,20,.12);
  outline: none;
}

/* Datenschutz-Checkbox */
.consent {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.87rem;
}

.consent input {
  accent-color: var(--accent);
}

/* Error-Zustände */
.form-field input.is-invalid,
.form-field select.is-invalid,
.is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.10);
}


/* ============================================================
   13. UPLOAD-BEREICHE
   ============================================================ */

.kfz-upload__box,
.upload-zone {
  border: 1.5px dashed var(--border-2);
  border-radius: 10px;
  background: var(--bg-alt);
  transition: border-color .15s, background .15s, box-shadow .15s;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--muted);
}
.kfz-upload__box:hover,
.upload-zone:hover,
.upload-zone.drag {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(196,92,20,.08);
}

/* Drop-Panel (Energie-Upload) */
.drop-panel {
  border: 1.5px dashed var(--border-2);
  border-radius: 12px;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  transition: all .15s;
}
.drop-panel:hover,
.drop-panel.dragover {
  background: var(--accent-light);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,92,20,.10) inset;
}

.dp-icon {
  background: var(--accent-light);
  border-radius: 10px;
}

/* Upload-Card (Energie) */
.upload-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

/* File-Chip */
.file-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: none;
}


/* ============================================================
   14. PROMO-BLÖCKE
   ============================================================ */

/* ZUL-Promo */
.zul-promo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy3) 100%);
  border-radius: 16px;
  overflow: hidden;
}
.zul-promo::before {
  background: radial-gradient(ellipse at 90% 50%, rgba(196,92,20,.18) 0%, transparent 55%);
}

.zul-promo h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.zul-promo .tag,
.urlaub-text .tag {
  background: rgba(196,92,20,.18);
  border: 1px solid rgba(196,92,20,.38);
  color: #f4b98a;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: .1em;
  border-radius: 4px;
  padding: 4px 12px;
}

.zul-check {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: #e2e8f0;
}

.region-chip {
  background: rgba(196,92,20,.14);
  border: 1px solid rgba(196,92,20,.30);
  color: #f4b98a;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
}

.price-badge {
  background: var(--accent);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(196,92,20,.28);
}
.price-badge .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.discount-note {
  background: rgba(22,128,58,.15);
  border: 1px solid rgba(22,128,58,.28);
  color: #86efac;
  border-radius: 8px;
}

/* Urlaub-Banner */
.urlaub-banner {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  border-radius: 14px;
  overflow: hidden;
}
.urlaub-banner::before {
  background: radial-gradient(ellipse at 90% 50%, rgba(196,92,20,.18) 0%, transparent 55%);
}

/* Benefits-Panel */
.section--dark-benefits {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
}

.benefits-panel {
  background: linear-gradient(135deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.05) 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.benefits-panel h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.benefits-check {
  background: rgba(22,128,58,.20);
  border: 1px solid rgba(74,222,128,.45);
  color: #86efac;
  font-family: var(--font-display);
  font-weight: 800;
}


/* ============================================================
   15. CTA-BLOCK
   ============================================================ */

.cta-block {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 14px;
  padding: 44px 44px;
  box-shadow: 0 8px 32px rgba(196,92,20,.22);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}


/* ============================================================
   16. KONTAKT-SEITE
   ============================================================ */

.contact-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

.ico {
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 8px;
}

/* Erstinfo-Block */
.erstinfo-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.erstinfo-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
}


/* ============================================================
   17. KFZ PANELS & NOTES
   ============================================================ */

.kfz-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.kfz-panel h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

.kfz-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}

.kfz-note strong { color: var(--navy); }

/* KFZ Benefit */
.kfz-benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.kfz-benefit::before {
  background: var(--blue);
}

/* KFZ Contact-Card */
.kfz-contact-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 16px;
}

/* KFZ Steps */
.kfz-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.kfz-step::before {
  background: var(--blue);
}

/* KFZ Pills */
.kfz-pill {
  border: 1.5px solid var(--border-2);
  background: var(--white);
  color: var(--muted);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 600;
  transition: all .15s;
}
.kfz-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.kfz-pill--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.kfz-pill--active:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}

/* Info Box */
.info-box {
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 10px;
  color: #6b3510;
}
.info-box strong { color: var(--accent); }


/* ============================================================
   18. PREIS-TABELLEN (Zulassung)
   ============================================================ */

.price-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.price-section-head {
  background: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 20px;
}

.price-table td {
  font-size: 0.87rem;
  padding: 11px 20px;
}

.price-note {
  background: var(--bg-alt);
  font-size: 0.78rem;
  color: var(--muted);
}

/* Bonus-Box */
.bonus-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  border-radius: 14px;
}
.bonus-box h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #14532d;
}

/* Docs-Tabs */
.docs-tab {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border-2);
  background: var(--card);
  color: var(--muted);
  border-radius: 7px;
  padding: 8px 14px;
}
.docs-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.docs-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.docs-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}


/* ============================================================
   19. USP-LIST
   ============================================================ */

.usp-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: none;
}

.usp-list li::before {
  background: #f0fdf4;
  border: 1px solid #a7f3d0;
  color: var(--green);
}


/* ============================================================
   20. SCHEIBEN-SERVICE FORMULARE
   ============================================================ */

.preview-box {
  background: var(--navy);
  color: #cbd5e1;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
}

.btn-wa-scheiben {
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 8px;
  border: none;
}
.btn-wa-scheiben:hover { background: #14532d; }

.btn-copy {
  background: var(--white);
  color: var(--text-2);
  border: 1.5px solid var(--border-2);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
}
.btn-copy:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-clear-s {
  color: var(--muted);
  font-family: var(--font-display);
}
.btn-clear-s:hover { color: #dc2626; }

.fsec-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}


/* ============================================================
   21. FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-top h4 {
  font-family: var(--font-display);
  color: #e2e8f0;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.footer-top p,
.footer-top a,
.footer-top ul li {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.85;
  text-decoration: none;
}

.footer-top a:hover { color: #e2e8f0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 20px;
}

.footer__nav a {
  font-size: 0.8rem;
  color: #64748b;
  text-underline-offset: 3px;
}
.footer__nav a:hover { color: #e2e8f0; }

.footer__copy { color: #475569; font-size: 0.78rem; }

.partner-logos img {
  filter: brightness(0) invert(1);
  opacity: .5;
  transition: opacity .15s;
}
.partner-logos img:hover { opacity: .85; }


/* ============================================================
   22. SECTIONS / ALTERNATIV-HINTERGRUND
   ============================================================ */

.section--alt {
  background: var(--bg-alt);
}

.section--dark-benefits {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
}


/* ============================================================
   23. SUPPORT-BEREICH
   ============================================================ */

.support-section {
  background: var(--bg);
}


/* ============================================================
   24. TOAST
   ============================================================ */

.toast {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(15,31,53,.20);
}


/* ============================================================
   25. IMPRESSUM / DATENSCHUTZ (Textseiten)
   ============================================================ */

main.section h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

main.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}


/* ============================================================
   26. FOCUS-VISIBLE – Barrierefreiheit
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}


/* ============================================================
   27. HOVER & TRANSITION POLISH
   Alle Links in normalem Fließtext
   ============================================================ */

a { color: var(--accent); }
a:hover { color: var(--accent2); }

/* Subnav-Pfeile */
.subnav__arrow {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  border: 1px solid var(--border-2);
  font-size: 1rem;
}


/* ============================================================
   28. KFZ.CSS OVERRIDES
   (kfz.css hat einige hardcoded Werte die wir korrigieren)
   ============================================================ */

/* kfz-hero Fallback-BG auf Navy statt #0D2E63 */
.kfz-hero {
  background: var(--navy);
}

/* kfz-card radius vereinheitlichen */
.kfz-card {
  border-radius: 12px;
}

/* kfz-panel radius vereinheitlichen */
.kfz-panel {
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* kfz.css setzt nav__link active auf --blue-100/--blue,
   design.css übernimmt das mit den neuen Tokens */
.nav__link[aria-current="page"] {
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 7px;
  font-weight: 700;
}

/* Upload-Box hover in kfz.css: --blue → accent */
.kfz-upload__box:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(196,92,20,.08);
}

/* kfz note: weißer BG statt Blau-Tint */
.kfz-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}

/* Step counter circles: navy statt blue */
.kfz-step::before {
  background: var(--accent);
}

/* kfz-contact-card buttons */
.kfz-contact-card .btn-outline--blue {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.kfz-contact-card .btn-outline--blue:hover {
  background: rgba(255,255,255,.22);
}
