/* =========================================================
   EB Sachverständigenbüro – Kfz-Gutachter Stuttgart
   Design-Rezept: "Prüfstand soft" (dunkel-automotive, weiche Radien)
   Anthrazit #1D1F21 · Signalrot #C8102E · Hellgrau #B7B9BB
   Display: Chivo · Body: Inter · Labels/Zahlen: IBM Plex Mono
   ========================================================= */

:root {
  /* Flächen */
  --ink:        #0e1012;
  --s1:         #141618;
  --s2:         #1d1f21;   /* CI Anthrazit */
  --s3:         #26292c;
  --s4:         #303438;
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(255,255,255,.16);

  /* Helle Anker-Sektionen */
  --light-1:    #f3f4f5;
  --light-2:    #e7e9eb;
  --light-line: #dcdfe2;
  --on-light:   #16181a;
  --on-light-d: #5c6165;

  /* Marke */
  --accent:     #c8102e;
  --accent-hi:  #e8253f;
  --accent-dk:  #9b0c23;
  --accent-soft: rgba(200,16,46,.14);

  /* Text auf Dunkel */
  --text:       #e9ebed;
  --dim:        #a9aeb3;
  --dim-2:      #7d838a;

  --ok:         #2fbf6b;

  /* Runde, moderne Formensprache */
  --r-sm:       10px;
  --r:          16px;
  --r-lg:       26px;
  --r-pill:     999px;

  --font-display: 'Chivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --maxw: 1220px;
}

/* ---------------- Basis ---------------- */
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, .hero-title, .section-title { font-family: var(--font-display); line-height: 1.16; margin: 0; letter-spacing: -.012em; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(58px, 7vw, 96px) 0; position: relative; }
.section-s1 { background: var(--s1); }
.section-s2 { background: var(--s2); }
.desktop-only { display: none !important; }
.mobile-only { display: flex !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--dim);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 3px; border-radius: 3px; background: var(--accent); flex: none; }
.section-title { font-size: clamp(1.45rem, 2.8vw, 2.1rem); font-weight: 800; max-width: 22ch; }
.section-title.wide { max-width: 30ch; }
.hl { color: var(--accent-hi); }
.section-sub { color: var(--dim); max-width: 62ch; margin-top: 15px; font-size: 16px; }
.grid-deco {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 78%);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border: 1px solid transparent; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all .18s var(--ease); text-align: center;
}
.btn .ti { font-size: 18px; }
.btn-cta { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(200,16,46,.28); }
.btn-cta:hover { background: var(--accent-hi); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,16,46,.36); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.btn-light { background: #fff; color: var(--on-light); }
.btn-light:hover { background: #e9ebed; transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14,16,18,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 80px; }
.logo-img { height: 52px; width: auto; }
.main-nav { display: flex; gap: 24px; }
.main-nav a { font-size: 14.5px; font-weight: 500; color: var(--dim); position: relative; padding: 6px 0; transition: color .16s var(--ease); }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; border-radius: 2px; background: var(--accent); transition: right .22s var(--ease); }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.15; padding-right: 4px; }
.hp-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim-2); }
.hp-number { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: #fff; }
.icon-btn {
  width: 44px; height: 44px; border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border: 1px solid var(--line-2); font-size: 20px;
}
.icon-btn-wa { color: #4ade80; }

/* ---------------- HERO ---------------- */
.hero {
  position: relative; padding: clamp(34px, 4.5vw, 58px) 0 clamp(48px, 6vw, 72px);
  background: #0b0c0e url('../images/kfz-gutachter-stuttgart-hero.webp') 34% center / cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(10,11,13,.95) 0%, rgba(11,13,15,.9) 38%, rgba(11,13,15,.6) 62%, rgba(11,13,15,.78) 100%),
    linear-gradient(180deg, rgba(10,11,13,.6) 0%, transparent 26%, rgba(10,11,13,.82) 100%);
}
.hero-split { display: grid; grid-template-columns: minmax(0,1fr); gap: 28px; align-items: start; }
.hero-content { max-width: 620px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--r-pill); background: var(--accent-soft);
  border: 1px solid rgba(200,16,46,.4); color: #ff8195; margin-bottom: 18px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-hi); box-shadow: 0 0 0 0 rgba(232,37,63,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(232,37,63,0); } 100% { box-shadow: 0 0 0 0 rgba(232,37,63,0); } }

.hero-kicker { font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--dim); margin: 0 0 12px; }
.hero-title { font-size: clamp(1.75rem, 3.6vw, 2.7rem); font-weight: 900; letter-spacing: -.022em; line-height: 1.12; margin-bottom: 16px; }
.hero-sub { color: var(--dim); font-size: 16.5px; max-width: 52ch; }
.hero-usps { list-style: none; padding: 0; margin: 20px 0 18px; display: grid; gap: 10px; }
.hero-usps li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: #d7dade; }
.hero-usps .ti { color: var(--accent-hi); font-size: 19px; flex: none; margin-top: 1px; }
.hero-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--dim); margin-bottom: 20px; }
.stars { color: #ffb400; letter-spacing: .08em; font-size: 15px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 11px; }

/* ---------------- Quiz / Multi-Step-Formular ---------------- */
.quiz {
  background: #f6f7f8; color: var(--on-light); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.quiz::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); }
.quiz-inner { padding: 24px 22px 22px; }
.quiz-head strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 19px; line-height: 1.22; }
.quiz-head span { display: block; font-size: 13.5px; color: var(--on-light-d); margin-top: 6px; }
.quiz-progress-head { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--on-light-d); margin-top: 16px; }
.quiz-bar { height: 5px; background: #dfe2e5; border-radius: var(--r-pill); margin-top: 7px; overflow: hidden; }
.q-bar { display: block; height: 100%; width: 20%; background: var(--accent); border-radius: var(--r-pill); transition: width .4s var(--ease); }
.q-title { font-family: var(--font-display); font-weight: 800; font-size: 18.5px; margin: 20px 0 14px; line-height: 1.28; }
.q-hint { font-size: 13.5px; color: var(--on-light-d); margin: -8px 0 14px; }
.q-grid { display: grid; gap: 9px; }
.q-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 1fr; }
.q-opt {
  display: flex; align-items: center; gap: 11px; padding: 14px 16px; cursor: pointer;
  background: #fff; border: 1px solid #dee1e4; border-radius: var(--r);
  font-size: 14.5px; font-weight: 500; line-height: 1.3; transition: all .16s var(--ease);
  position: relative; text-align: left; width: 100%; min-height: 58px;
}
.q-opt .ti { font-size: 20px; color: var(--accent); flex: none; }
.q-opt:hover { border-color: var(--accent); background: #fff5f6; transform: translateY(-1px); }
.q-opt-tag {
  position: absolute; top: -9px; right: 10px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .06em;
  text-transform: uppercase; background: var(--accent); color: #fff; padding: 3px 9px; border-radius: var(--r-pill);
}
.q-field {
  width: 100%; padding: 13px 15px; border: 1px solid #dee1e4; border-radius: var(--r);
  background: #fff; color: var(--on-light); font-size: 15.5px; font-family: var(--font-body);
}
.q-field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,16,46,.12); }
.q-back { display: inline-flex; align-items: center; gap: 6px; margin-top: 13px; font-size: 13.5px; color: var(--on-light-d); cursor: pointer; }
.q-back:hover { color: var(--accent); }
.q-note { font-size: 12.5px; color: var(--on-light-d); display: flex; align-items: center; gap: 6px; margin: 4px 0 0; }
.q-error { font-size: 13.5px; color: var(--accent); margin-top: 10px; font-weight: 600; }
.q-error a { text-decoration: underline; }
.form-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--on-light-d); line-height: 1.45; }
.form-consent input { margin-top: 3px; accent-color: var(--accent); flex: none; }
.form-consent a { text-decoration: underline; }
.quiz-trust { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; padding-top: 14px; border-top: 1px solid #e4e7ea; font-size: 12.5px; color: var(--on-light-d); text-align: center; }
.qt-g { width: 17px; height: 17px; }
.qt-stars { color: #ffb400; font-size: 13px; }
.qt-score { font-family: var(--font-display); font-weight: 800; color: var(--on-light); }
.quiz-done { padding: 34px 24px; text-align: center; }
.quiz-done .ti-circle-check { font-size: 46px; color: var(--ok); }
.quiz-done strong { display: block; font-family: var(--font-display); font-size: 20px; margin: 10px 0 8px; }
.quiz-done p { font-size: 14.5px; color: var(--on-light-d); }
.quiz-done-urgent { margin-top: 18px; padding-top: 16px; border-top: 1px solid #e4e7ea; }
.quiz-done-urgent-label { font-size: 13px; color: var(--on-light-d); }
.quiz-done-urgent-btns { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.quiz-urgent-btn { width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 21px; }
.quiz-urgent-wa { background: #25d366; }


/* ---------------- Versicherer-Logos ---------------- */
.insurers { background: var(--s1); padding: clamp(42px, 5vw, 66px) 0 clamp(46px, 5.5vw, 70px); border-bottom: 1px solid var(--line); }
.insurers-head { text-align: center; margin-bottom: 30px; }
.insurers-head h2 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 800; }
.insurers-head .eyebrow { justify-content: center; }
.ins-marquee {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ins-track { display: flex; width: max-content; animation: insScroll 46s linear infinite; }
.ins-track:hover { animation-play-state: paused; }
.ins-set { display: flex; align-items: center; }
.ins-item { padding: 0 clamp(26px, 3.4vw, 52px); display: flex; align-items: center; }
.ins-item img {
  height: clamp(34px, 4vw, 50px); width: auto; max-width: 230px; object-fit: contain;
  opacity: .82; transition: opacity .25s var(--ease);
}
.ins-track:hover .ins-item img { opacity: 1; }
@keyframes insScroll { to { transform: translateX(-50%); } }
.insurers-note { text-align: center; font-size: 11.5px; color: var(--dim-2); margin-top: 26px; }

/* ---------------- Fall-Slider (helle Anker-Sektion) ---------------- */
.cases { background: var(--light-1); color: var(--on-light); }
.cases .eyebrow { color: var(--on-light-d); }
.cases .section-sub { color: var(--on-light-d); }

.case-slider { margin-top: 34px; position: relative; }
.case-viewport { overflow: hidden; border-radius: var(--r-lg); }
.case-track { display: flex; transition: transform .5s var(--ease); }
.case {
  flex: 0 0 100%; display: grid; grid-template-columns: minmax(0,1fr); background: #fff;
  border: 1px solid var(--light-line); border-radius: var(--r-lg); overflow: hidden;
}
.case-media { position: relative; min-height: 210px; background-size: cover; background-position: center; }
.case-media::after {
  content: attr(data-label); position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase;
  background: rgba(14,16,18,.85); color: #fff; padding: 6px 12px; border-radius: var(--r-pill);
}
.case-body { padding: 22px 22px 24px; }
.case-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.case-head h3 { font-size: 17.5px; font-weight: 800; }
.case-head p { font-size: 13.5px; color: var(--on-light-d); margin: 5px 0 0; }
.case-plus {
  font-family: var(--font-display); font-weight: 800; font-size: 14.5px; white-space: nowrap;
  background: rgba(47,191,107,.12); color: #14803f; border: 1px solid rgba(47,191,107,.35);
  padding: 8px 14px; border-radius: var(--r-pill);
}
.bars { display: grid; gap: 13px; }
.bar-row { display: grid; gap: 6px; }
.bar-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.bar-label { font-size: 13px; color: var(--on-light-d); font-weight: 500; }
.bar-val { font-family: var(--font-mono); font-weight: 600; font-size: 14.5px; color: var(--on-light); white-space: nowrap; }
.bar-track { height: 13px; background: #e6e9ec; border-radius: var(--r-pill); overflow: hidden; }
.bar-fill { display: block; height: 100%; width: 0; background: #9aa1a8; border-radius: var(--r-pill); transition: width 1.1s var(--ease); }
.bar-row.is-us .bar-label { color: var(--on-light); font-weight: 700; }
.bar-row.is-us .bar-val { color: var(--accent); font-weight: 600; }
.bar-row.is-us .bar-fill { background: linear-gradient(90deg, var(--accent-dk), var(--accent)); }
.case-note { font-size: 12.5px; color: var(--on-light-d); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--light-line); display: flex; gap: 8px; }
.case-note .ti { color: var(--accent); font-size: 16px; flex: none; margin-top: 2px; }

.case-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.case-dots { display: flex; gap: 7px; }
.case-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: #c8ccd0; cursor: pointer; transition: all .2s var(--ease); }
.case-dot.is-active { background: var(--accent); width: 26px; border-radius: var(--r-pill); }
.case-arrows { display: flex; gap: 9px; align-items: center; }
.case-count { font-family: var(--font-mono); font-size: 12.5px; color: var(--on-light-d); margin-right: 6px; }
.case-arrow {
  width: 44px; height: 44px; border-radius: var(--r-pill); border: 1.5px solid var(--light-line);
  background: #fff; color: var(--on-light); font-size: 19px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; transition: all .18s var(--ease);
}
.case-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.cases-disclaimer {
  margin-top: 24px; font-size: 12.5px; color: var(--on-light-d); line-height: 1.6;
  background: #e9ebed; border-left: 3px solid var(--accent); padding: 15px 18px; border-radius: 0 var(--r) var(--r) 0;
}

/* ---------------- Recht/Kosten-Band ---------------- */
.rights { background: var(--s2); position: relative; overflow: hidden; }
.rights-inner { display: grid; grid-template-columns: minmax(0,1fr); gap: 32px; align-items: center; }
.rights h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; }
.rights-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 15px; }
.rights-list li { display: flex; gap: 13px; }
.rights-list .ti { font-size: 22px; color: var(--accent-hi); flex: none; }
.rights-list strong { display: block; font-family: var(--font-display); font-size: 15.5px; margin-bottom: 3px; }
.rights-list span { font-size: 14px; color: var(--dim); line-height: 1.55; }
.rights-card { background: var(--s1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; position: relative; }
.rights-card::before { content: ''; position: absolute; top: 0; left: 26px; width: 46px; height: 4px; border-radius: 0 0 4px 4px; background: var(--accent); }
.rights-price { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.rights-price span { color: var(--accent); }
.rights-card h3 { font-size: 17.5px; margin: 12px 0 8px; }
.rights-card p { font-size: 14px; color: var(--dim); }
.rights-fine { font-family: var(--font-mono); font-size: 11.5px; color: var(--dim-2); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); line-height: 1.55; }

/* ---------------- Leistungen (Bento mit Bild) ---------------- */
.svc-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 15px; margin-top: 38px; }
.svc {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: var(--s2); min-height: 246px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.svc-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .95; transition: opacity .35s var(--ease), transform .6s var(--ease);
}
.svc::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,16,18,.15) 0%, rgba(14,16,18,.55) 42%, rgba(12,14,16,.9) 74%, rgba(12,14,16,.97) 100%); }
.svc:hover { border-color: rgba(200,16,46,.5); transform: translateY(-3px); }
.svc:hover .svc-img { opacity: 1; transform: scale(1.05); }
.svc-body { position: relative; z-index: 2; padding: 22px; }
.svc h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.svc p { font-size: 14px; color: #c3c8cd; line-height: 1.55; }
.svc-checks { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 6px; }
.svc-checks li { font-size: 13px; color: #c3c8cd; display: flex; gap: 8px; align-items: flex-start; }
.svc-checks .ti { color: var(--accent-hi); font-size: 15px; flex: none; margin-top: 2px; }
.svc-lead { min-height: 300px; }
.svc-lead h3 { font-size: clamp(1.2rem, 2.1vw, 1.55rem); }
.svc-lead p { font-size: 15px; max-width: 48ch; }

/* ---------------- Ablauf ---------------- */
.brandmark {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('../images/eb-logo-light.webp') center 52% / min(720px, 78%) auto no-repeat;
  opacity: .07;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 52%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 52%, #000 35%, transparent 78%);
}
#ablauf > .container { position: relative; z-index: 1; }

.flow-head { text-align: center; max-width: 660px; margin: 0 auto; }
.flow-head .eyebrow { justify-content: center; }
.flow-head .section-title { margin: 0 auto; }
.flow-head .section-sub { margin-left: auto; margin-right: auto; }

/* Animierte Schritt-Icons (lokal, ohne externe Bibliothek) */
.pstep__badge .ti { display: inline-block; transform-origin: 50% 60%; }
.pstep:nth-of-type(2) .pstep__badge .ti { animation: icoRing 3.4s var(--ease) infinite; }
.pstep:nth-of-type(3) .pstep__badge .ti { animation: icoPop 3.4s var(--ease) .5s infinite; }
.pstep:nth-of-type(4) .pstep__badge .ti { animation: icoShot 3.4s var(--ease) 1s infinite; }
.pstep:nth-of-type(5) .pstep__badge .ti { animation: icoCheck 3.4s var(--ease) 1.5s infinite; }
@keyframes icoRing {
  0%, 62%, 100% { transform: rotate(0) scale(1); }
  66% { transform: rotate(-13deg) scale(1.08); }
  70% { transform: rotate(11deg) scale(1.08); }
  74% { transform: rotate(-9deg) scale(1.06); }
  78% { transform: rotate(7deg) scale(1.04); }
  82% { transform: rotate(0) scale(1); }
}
@keyframes icoPop {
  0%, 60%, 100% { transform: translateY(0) scale(1); }
  68% { transform: translateY(-5px) scale(1.12); }
  76% { transform: translateY(0) scale(.97); }
  84% { transform: translateY(0) scale(1); }
}
@keyframes icoShot {
  0%, 58%, 100% { transform: scale(1); filter: none; }
  64% { transform: scale(1.14); filter: drop-shadow(0 0 10px rgba(255,255,255,.85)); }
  68% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255,255,255,.3)); }
  74% { transform: scale(1.06); filter: drop-shadow(0 0 8px rgba(255,255,255,.6)); }
  80% { transform: scale(1); filter: none; }
}
@keyframes icoCheck {
  0%, 58%, 100% { transform: scale(1) rotate(0); }
  66% { transform: scale(1.16) rotate(-6deg); }
  74% { transform: scale(1.02) rotate(4deg); }
  82% { transform: scale(1) rotate(0); }
}

.flow-steps { position: relative; display: grid; grid-template-columns: minmax(0,1fr); gap: 28px; margin: 40px auto 36px; max-width: 460px; }
.flowline {
  position: absolute; top: 0; bottom: 0; left: 39px; width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent-dk), var(--accent) 45%, #6b7075);
  background-size: 100% 220%; animation: flowV 3.2s linear infinite; opacity: .6; z-index: 0;
}
.flowline::after {
  content: ''; position: absolute; left: 50%; top: 0; width: 11px; height: 11px; margin-left: -5.5px;
  border-radius: 50%; background: var(--accent-hi);
  box-shadow: 0 0 0 4px rgba(200,16,46,.2), 0 0 16px rgba(232,37,63,.8);
  animation: travelV 3.6s cubic-bezier(.5,0,.5,1) infinite;
}
@keyframes flowV { to { background-position: 0 -220%; } }
@keyframes travelV { 0% { top: 0; } 100% { top: 100%; } }
.pstep { position: relative; z-index: 1; display: grid; grid-template-columns: 80px minmax(0,1fr); column-gap: 20px; align-items: start; }
.pstep__badge {
  position: relative; width: 80px; height: 80px; border-radius: 50%; background: var(--s3);
  border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center;
  grid-column: 1; grid-row: 1 / span 3;
}
.pstep__badge::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: ping 2.6s var(--ease) infinite; }
.pstep:nth-of-type(3) .pstep__badge::before { animation-delay: .6s; }
.pstep:nth-of-type(4) .pstep__badge::before { animation-delay: 1.2s; }
.pstep:nth-of-type(5) .pstep__badge::before { animation-delay: 1.8s; }
@keyframes ping { 0% { transform: scale(1); opacity: .5; } 70%, 100% { transform: scale(1.2); opacity: 0; } }
.pstep__badge .ti { font-size: 32px; color: var(--accent-hi); }
.pstep__num {
  position: absolute; top: -4px; right: -4px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--font-display); font-size: 13.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pstep > :not(.pstep__badge) { grid-column: 2; }
.pstep h3 { font-size: 17px; font-weight: 800; margin-top: 6px; }
.pstep p { font-size: 14px; color: var(--dim); margin-top: 8px; line-height: 1.55; }
.pstep__meta {
  display: inline-block; margin-top: 10px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--accent-hi);
  border: 1px solid rgba(200,16,46,.4); background: var(--accent-soft); padding: 5px 12px; border-radius: var(--r-pill);
}
.steps-cta { text-align: center; }
.steps-cta-sub { font-size: 13px; color: var(--dim-2); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 7px; }

/* ---------------- CTA-Band mit Bild ---------------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: #0b0c0e url('../images/cta-versicherung-meldet-sich.webp') center / cover no-repeat;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(95deg, rgba(140,8,28,.94) 0%, rgba(160,10,32,.86) 42%, rgba(20,12,14,.72) 72%, rgba(14,16,18,.8) 100%);
}
.cta-band .container { padding-top: clamp(42px, 5vw, 62px); padding-bottom: clamp(42px, 5vw, 62px); position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 800; color: #fff; max-width: 24ch; }
.cta-band p { color: rgba(255,255,255,.86); margin-top: 12px; max-width: 52ch; font-size: 15.5px; }
.cta-band-inner { display: grid; gap: 22px; align-items: center; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 11px; }

/* ---------------- Bewertungen (Auto-Marquee) ---------------- */
.rev-summary-bar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.rev-summary-pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--s2); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 10px 18px;
}
.rev-summary-pill svg { width: 20px; height: 20px; }
.rev-summary-pill b { font-family: var(--font-display); font-size: 17px; }
.rev-summary-pill span { font-size: 13.5px; color: var(--dim); }

.rev-marquee {
  position: relative; overflow: hidden; margin-top: 34px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.rev-track { display: flex; width: max-content; animation: revScroll 60s linear infinite; }
.rev-track:hover { animation-play-state: paused; }
.rev-set { display: flex; }
@keyframes revScroll { to { transform: translateX(-50%); } }
.rev-card {
  width: 330px; flex: none; margin-right: 16px; background: var(--s2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 20px 18px; display: flex; flex-direction: column;
}
.rev-g { width: 20px; height: 20px; margin-bottom: 9px; }
.rev-stars { color: #ffb400; letter-spacing: .1em; display: block; margin-bottom: 8px; font-size: 13px; }
.rev-quote { font-size: 14px; line-height: 1.55; color: #d3d7db; flex: 1; }
.rev-person { display: flex; align-items: center; gap: 11px; margin-top: 15px; }
.rev-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--s4); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; flex: none;
}
.rev-avatar-b { background: #3c2126; }
.rev-avatar-c { background: #2a3136; }
.rev-avatar-d { background: #33302a; }
.rev-who strong { display: block; font-size: 14px; }
.rev-who span { font-size: 12.5px; color: var(--dim-2); }
.rev-verified { margin-top: 11px; font-size: 11px; color: var(--dim-2); display: flex; align-items: center; gap: 6px; }
.rev-verified .ti { color: #4285F4; font-size: 15px; }

/* ---------------- Vergleichstabelle ---------------- */
.compare { background: var(--light-1); color: var(--on-light); }
.compare .eyebrow { color: var(--on-light-d); }
.compare .section-sub { color: var(--on-light-d); }
.ctable-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--light-line); background: #fff; margin-top: 34px; }
.ctable { width: 100%; border-collapse: collapse; }
.ctable th, .ctable td { padding: 15px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--light-line); font-size: 14px; }
.ctable thead th { font-family: var(--font-display); font-size: 13.5px; font-weight: 800; background: var(--light-2); }
.ctable thead th:first-child { width: 30%; border-top-left-radius: var(--r-lg); }
.ctable thead th:last-child { border-top-right-radius: var(--r-lg); }
.ctable .col-us { background: rgba(200,16,46,.05); }
.ctable thead .col-us { background: var(--accent); color: #fff; }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable .crit { font-weight: 600; }
.ctable .ti-x { color: #b0b5ba; }
.ctable .ti-check { color: var(--accent); }
.ctable .cell { display: flex; gap: 8px; align-items: flex-start; }
.ctable .cell .ti { font-size: 17px; flex: none; margin-top: 1px; }
.compare-foot { margin-top: 20px; font-size: 12.5px; color: var(--on-light-d); display: flex; gap: 9px; align-items: flex-start; }
.compare-foot .ti { color: var(--accent); font-size: 18px; flex: none; }

/* ---------------- Sachverständiger ---------------- */
.expert-inner { display: grid; grid-template-columns: minmax(0,1fr); gap: 32px; align-items: center; }
.expert-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; }
.expert-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; margin-top: 24px; }
.expert-fact { background: var(--s2); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 17px; }
.expert-fact strong { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 800; }
.expert-fact span { font-size: 12.5px; color: var(--dim-2); }
.expert-quote { border-left: 3px solid var(--accent); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 4px 0 4px 16px; margin: 22px 0 0; font-size: 15.5px; color: #d5d9dd; font-style: italic; }
.expert-sign { font-family: var(--font-mono); font-size: 12.5px; color: var(--dim-2); margin-top: 10px; }

/* ---------------- Einsatzgebiet ---------------- */
.area {
  position: relative; isolation: isolate; overflow: hidden;
  background: #0b0c0e url('../images/einsatzgebiet-stuttgart.webp') center / cover no-repeat;
}
.area::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,13,15,.82) 0%, rgba(11,13,15,.9) 55%, rgba(11,13,15,.96) 100%);
}
.area-head { text-align: center; max-width: 640px; margin: 0 auto; }
.area-head .eyebrow { justify-content: center; }
.area-head .section-title { margin: 0 auto; }
.area-head .section-sub { margin-left: auto; margin-right: auto; }
.area-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin: 32px auto 0; max-width: 720px; }
.area-stat {
  text-align: center; background: rgba(29,31,33,.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); border-radius: var(--r); padding: 18px 12px;
}
.area-stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; color: #fff; }
.area-stat span { font-size: 12px; color: var(--dim); }

.area-cols { display: grid; grid-template-columns: minmax(0,1fr); gap: 14px; margin-top: 32px; }
.area-col {
  background: rgba(29,31,33,.74); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 22px 20px;
}
.area-col h3 { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.area-col h3 .ti { color: var(--accent-hi); font-size: 19px; }
.area-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.area-col li { font-size: 14px; color: var(--dim); display: flex; align-items: center; gap: 9px; }
.area-col li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }
.area-col li.is-main { color: #fff; font-weight: 600; }
.area-foot {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 28px; text-align: center; font-size: 14.5px; color: var(--dim);
}

/* ---------------- Kontakt ---------------- */
.contact { background: var(--ink); }
.contact-inner { display: grid; grid-template-columns: minmax(0,1fr); gap: 32px; align-items: start; }
.contact-ways { display: grid; gap: 11px; margin-top: 26px; }
.way {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--s2); transition: all .18s var(--ease);
}
.way:hover { border-color: var(--accent); transform: translateX(3px); }
.way .ti { font-size: 23px; color: var(--accent-hi); flex: none; }
.way strong { display: block; font-family: var(--font-display); font-size: 16px; }
.way span { font-size: 13px; color: var(--dim-2); }
.way-wa .ti { color: #25d366; }

/* ---------------- FAQ ---------------- */
.faq-head { text-align: center; max-width: 640px; margin: 0 auto; }
.faq-head .eyebrow { justify-content: center; }
.faq-head .section-title { margin: 0 auto; }
.faq-list { margin-top: 34px; display: grid; gap: 10px; }
.faq-item { background: var(--s2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-item[open] { border-color: rgba(200,16,46,.45); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 17px 20px; display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\ea5f'; font-family: 'tabler-icons'; font-size: 19px; color: var(--accent-hi); transition: transform .2s var(--ease); flex: none; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-body { padding: 0 20px 20px; font-size: 14.5px; color: var(--dim); line-height: 1.65; }

/* ---------------- Final-CTA ---------------- */
.final {
  position: relative; text-align: center; isolation: isolate;
  background: #0b0c0e url('../images/kfz-gutachter-stuttgart-final-cta.webp') center / cover no-repeat;
}
.final::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,12,14,.88), rgba(11,12,14,.8)); }
.final h2 { font-size: clamp(1.6rem, 3.1vw, 2.4rem); font-weight: 900; margin: 0 auto; max-width: 22ch; }
.final p { color: var(--dim); max-width: 56ch; margin: 16px auto 24px; font-size: 16px; }
.final .hero-cta { justify-content: center; }
.final-trust { margin-top: 20px; font-size: 13px; color: var(--dim-2); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--s1); border-top: 1px solid var(--line); padding-top: clamp(44px, 5.5vw, 66px); }
.footer-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 30px; padding-bottom: 38px; }
.footer-logo { height: 62px; width: auto; margin-bottom: 16px; }
.footer-col h3 { font-size: 13px; font-family: var(--font-mono); font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: var(--dim-2); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--dim); }
.footer-col a:hover { color: var(--accent-hi); }
.footer-about { font-size: 14px; color: var(--dim); max-width: 38ch; }
.footer-contact-line { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px; color: var(--dim); }
.footer-contact-line .ti { color: var(--accent-hi); font-size: 18px; }
.footer-address { font-size: 13.5px; color: var(--dim); margin-top: 14px; line-height: 1.6; display: flex; gap: 10px; }
.footer-address .ti { color: var(--accent-hi); font-size: 18px; flex: none; margin-top: 2px; }
.footer-bottom-wrap { border-top: 1px solid var(--line); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; padding: 20px 22px; font-size: 12.5px; color: var(--dim-2); }
.footer-bottom a:hover { color: var(--accent-hi); }
.footer-legal-note { font-size: 11.5px; color: var(--dim-2); padding: 0 22px 22px; line-height: 1.6; max-width: 90ch; }

/* ---------------- Sticky Bar (Mobile) ---------------- */
.sticky-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70; display: none; gap: 10px;
  padding: 10px; border-radius: var(--r-lg);
  background: rgba(20,22,24,.92); backdrop-filter: blur(12px); border: 1px solid var(--line-2);
  box-shadow: 0 14px 34px rgba(0,0,0,.5);
  transform: translateY(calc(100% + 16px)); transition: transform .3s var(--ease);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-call, .sticky-form {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  border: 1px solid transparent; cursor: pointer;
}
.sticky-call { background: var(--accent); color: #fff; }
.sticky-form { background: rgba(255,255,255,.09); color: var(--text); border-color: var(--line-2); }

/* ---------------- Modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6,7,8,.8); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 470px; background: #f6f7f8; color: var(--on-light);
  border-radius: var(--r-lg); padding: 28px 24px 24px; max-height: 92vh; overflow-y: auto;
}
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: var(--r-pill); border: 1px solid #e2e5e8; background: #fff; color: var(--on-light-d); cursor: pointer; font-size: 18px; }
.modal-card h2 { font-size: 20px; font-weight: 800; }
.modal-sub { font-size: 13.5px; color: var(--on-light-d); margin: 8px 0 18px; }
.lead-form { display: grid; gap: 10px; }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid #e2e5e8; border-radius: var(--r); background: #fff;
  font-family: var(--font-body); font-size: 15.5px; color: var(--on-light);
}
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(200,16,46,.12); }
.form-note { font-size: 12.5px; color: var(--on-light-d); display: flex; align-items: center; gap: 6px; margin: 2px 0 0; }
.modal-quick { display: flex; gap: 8px; margin-top: 14px; }
.modal-quick a { flex: 1; text-align: center; padding: 11px 6px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; border: 1px solid #e2e5e8; background: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; }
.mq-wa { color: #128c7e; }
.form-success { text-align: center; padding: 24px 0; }
.form-success .ti { font-size: 46px; color: var(--ok); }
.form-success strong { display: block; font-family: var(--font-display); font-size: 19px; margin: 10px 0 6px; }
.form-success p { font-size: 14.5px; color: var(--on-light-d); }

/* ---------------- Cookie-Banner ---------------- */
.cookie-wall { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 18px; }
.cookie-wall[hidden] { display: none; }
.cookie-backdrop { position: absolute; inset: 0; background: rgba(6,7,8,.72); backdrop-filter: blur(3px); }
.cookie-card { position: relative; z-index: 1; width: 100%; max-width: 470px; background: #f6f7f8; color: var(--on-light); border-radius: var(--r-lg); padding: 26px 24px; max-height: 92vh; overflow-y: auto; }
.cookie-logo img { height: 46px; width: auto; margin: 0 auto 16px; }
.cookie-title { font-size: 18.5px; font-weight: 800; text-align: center; }
.cookie-text { font-size: 13px; color: var(--on-light-d); margin: 12px 0; line-height: 1.6; }
.cookie-links { display: flex; gap: 8px; justify-content: center; font-size: 12.5px; color: var(--on-light-d); margin-bottom: 16px; }
.cookie-links a { text-decoration: underline; }
.cookie-actions { display: grid; gap: 10px; }
.cookie-btn-accept { background: var(--accent); color: #fff; width: 100%; }
.cookie-actions-row { display: flex; gap: 10px; }
.btn-cookie-reject, .btn-cookie-settings {
  flex: 1; padding: 12px; border-radius: var(--r-pill); border: 1px solid #e2e5e8; background: #fff;
  color: var(--on-light-d); font-size: 13px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-cookie-reject:hover, .btn-cookie-settings:hover { border-color: var(--accent); color: var(--accent); }
.cookie-settings-panel { margin-top: 16px; border-top: 1px solid #e4e7ea; padding-top: 16px; display: grid; gap: 14px; }
.cookie-category { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.cookie-cat-label { font-weight: 700; font-size: 14px; }
.cookie-cat-text { font-size: 12.5px; color: var(--on-light-d); }
.cookie-always-on { font-size: 12px; color: var(--ok); font-weight: 600; white-space: nowrap; }
.cookie-toggle-wrap { position: relative; width: 44px; height: 25px; flex: none; }
.cookie-toggle-input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-toggle-track { position: absolute; inset: 0; background: #cdd1d5; border-radius: 999px; transition: background .2s; }
.cookie-toggle-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; transition: transform .2s; }
.cookie-toggle-input:checked + .cookie-toggle-track { background: var(--accent); }
.cookie-toggle-input:checked + .cookie-toggle-track::after { transform: translateX(19px); }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- 404 ---------------- */
.err-page { min-height: 74vh; display: flex; align-items: center; padding: 64px 0; }
.err-code {
  font-family: var(--font-display); font-size: clamp(4rem, 13vw, 8rem); font-weight: 900;
  line-height: .95; letter-spacing: -.05em; color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.18);
}
.err-code span { color: var(--accent); -webkit-text-stroke: 0; }
.err-page h1 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 800; margin: 16px 0 12px; }
.err-page p { color: var(--dim); max-width: 54ch; font-size: 15.5px; }
.err-links { display: grid; gap: 10px; margin-top: 28px; max-width: 430px; }
.err-link { display: flex; align-items: center; gap: 13px; padding: 15px 18px; border: 1px solid var(--line); background: var(--s2); border-radius: var(--r); transition: all .18s var(--ease); }
.err-link:hover { border-color: var(--accent); transform: translateX(3px); }
.err-link .ti { color: var(--accent-hi); font-size: 21px; flex: none; }
.err-link strong { display: block; font-family: var(--font-display); font-size: 15px; }
.err-link span { font-size: 12.5px; color: var(--dim-2); }

/* ---------------- Rechtsseiten ---------------- */
.legal { padding: 50px 0 66px; }
.legal .container { max-width: 860px; }
.legal h1 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 800; margin-bottom: 24px; }
.legal h2 { font-size: 19px; font-weight: 800; margin: 32px 0 12px; }
.legal h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.legal p, .legal li { font-size: 15px; color: var(--dim); line-height: 1.7; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent-hi); text-decoration: underline; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--dim); margin-bottom: 24px; }
.legal-back:hover { color: var(--accent-hi); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 700px) {
  .case { grid-template-columns: minmax(0,34%) minmax(0,1fr); }
  .case-media { min-height: 260px; }
  .case-body { padding: 26px 30px 28px; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .svc-lead { grid-column: span 2; }
  .cta-band-inner { grid-template-columns: minmax(0,1fr) auto; }
  .area-cols { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .contact-inner { grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .expert-inner { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
  .rights-inner { grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); }
  .modal-card, .cookie-card { padding: 32px 30px 28px; }
  .quiz-inner { padding: 26px 24px 22px; }
}

@media (min-width: 1000px) {
  .desktop-only { display: flex !important; }
  .mobile-only { display: none !important; }
  .hero-split { grid-template-columns: minmax(0,1.06fr) minmax(0,.94fr); gap: 44px; align-items: center; }
  .hero { padding: clamp(50px, 5.5vw, 82px) 0 clamp(60px, 6.5vw, 94px); }
  .svc-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .svc-lead { grid-column: span 3; min-height: 320px; }
  .svc-lead .svc-body { max-width: 62%; }
  .svc:last-child { grid-column: span 2; }
  .svc:last-child .svc-body { max-width: 74%; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .flow-steps { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; max-width: none; }
  .flowline { top: 40px; bottom: auto; left: 12.5%; right: 12.5%; width: auto; height: 3px;
    background: linear-gradient(90deg, var(--accent-dk), var(--accent) 45%, #6b7075); background-size: 220% 100%;
    animation: flowH 3.2s linear infinite; }
  .flowline::after { left: 0; top: 50%; margin-top: -5.5px; margin-left: 0; animation: travelH 3.6s cubic-bezier(.5,0,.5,1) infinite; }
  @keyframes flowH { to { background-position: -220% 0; } }
  @keyframes travelH { 0% { left: 0; } 100% { left: 100%; } }
  .pstep { display: block; text-align: center; padding: 0 6px; }
  .pstep__badge { margin: 0 auto 18px; }
  .pstep__num { right: -2px; }
}

@media (max-width: 999px) {
  .sticky-bar { display: flex; }
  body { padding-bottom: 86px; }
  .hero-cta .btn { flex: 1; min-width: 180px; }
  .ctable th, .ctable td { padding: 12px 12px; font-size: 13px; }
}

@media (max-width: 520px) {
  .q-grid-2 { grid-template-columns: minmax(0,1fr); }
  .expert-facts { grid-template-columns: minmax(0,1fr); }
  .cookie-actions-row { flex-direction: column; }
  .area-stats { grid-template-columns: minmax(0,1fr); }
  .rev-card { width: 290px; }
  .case-nav { flex-direction: column-reverse; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .rev-track, .ins-track { animation: none !important; }
}
