/* ==========================================================================
   Industrieversicherung Leipzig — Martin Mothes, AXA
   Eigenständiges Stylesheet. Keine externen Ressourcen (DSGVO-konform,
   keine Google Fonts, keine CDNs, keine Cookies, kein Tracking).
   ========================================================================== */

:root {
  --navy:        #00008F;
  --red:         #FF1721;
  --red-deep:    #D4000F;   /* fuer Text auf Rot und rote Schrift, WCAG-konform */
  --ink:         #11162F;
  --slate:       #5A6079;
  --slate-light: #5F6683;
  --paper:       #FFFFFF;
  --mist:        #F5F7FC;
  --mist-deep:   #E9EDF9;
  --tint:        #EDF1FC;
  --line:        #E3E7F2;
  --line-strong: #C9D2E9;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
          Arial, "Liberation Sans", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 4px;
  --radius-sm: 2px;   /* Marken-Kachel, Chips, Icon-Flaechen */
  --radius-pill: 100px;
  --shadow: 0 1px 2px rgba(17,22,47,.04), 0 10px 28px rgba(17,22,47,.06);
  --shadow-lift: 0 2px 6px rgba(17,22,47,.06), 0 22px 50px rgba(17,22,47,.10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.12; }
p { margin: 0 0 1.05em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 8vw, 116px) 0; }
.section--mist { background: var(--mist); }
.section--tint { background: var(--tint); color: var(--ink); }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }

.h-display { font-size: clamp(34px, 5.4vw, 62px); }
.h-section { font-size: clamp(28px, 3.6vw, 42px); }
.h-card    { font-size: 20px; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--slate); line-height: 1.6; max-width: 62ch; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head .h-section + .lede,
.section-head h2 + .lede { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; font-size: 16px; font-weight: 650; letter-spacing: -.008em;
  border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--red-deep); color: #fff; box-shadow: 0 8px 22px rgba(212,0,15,.26); }
.btn--primary:hover { background: #B60009; box-shadow: 0 12px 28px rgba(212,0,15,.34); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: #000073; }
.btn--ghost { border-color: var(--line-strong); color: var(--navy); background: #fff; }
.btn--ghost:hover { border-color: var(--navy); background: var(--mist); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(12px, 2vw, 24px); height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; }
.brand__mark {
  width: 40px; height: 40px; flex: none; background: var(--navy);
  display: grid; place-items: center; border-radius: var(--radius-sm); position: relative; overflow: hidden;
}
.brand__mark::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 5px; background: var(--red); }
.brand__mark span { color: #fff; font-weight: 800; font-size: 16px; letter-spacing: -.03em; margin-bottom: 4px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.18; }
.brand__name { font-weight: 750; font-size: 15.5px; color: var(--ink); letter-spacing: -.018em; white-space: nowrap; }
.brand__sub { font-size: 11.5px; color: var(--slate); letter-spacing: .1em; white-space: nowrap; text-transform: uppercase; font-weight: 600; }

.nav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); }
.nav a { font-size: 15px; font-weight: 550; white-space: nowrap; color: var(--ink); text-decoration: none !important; position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red); transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.header-phone { font-weight: 700; font-size: 15px; color: var(--navy); white-space: nowrap; text-decoration: none !important; }
.brand { flex: none; }
.header-cta .btn { padding: 12px 20px; font-size: 15px; white-space: nowrap; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--radius); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px; background: var(--ink); transition: .22s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--ink);
  background:
    radial-gradient(115% 85% at 82% 4%, rgba(0,0,143,.10) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(168deg, #FFFFFF 0%, #EFF3FD 52%, #E6ECFB 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .85;
  background-image:
    linear-gradient(rgba(0,0,143,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,143,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 80% at 50% 24%, #000 22%, transparent 76%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 24%, #000 22%, transparent 76%);
}
.hero::after {
  content: ""; position: absolute; right: -14%; top: -24%;
  width: 60vw; height: 60vw; max-width: 820px; max-height: 820px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,23,33,.13) 0%, rgba(255,23,33,0) 66%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(72px, 10vw, 132px) 0 clamp(64px, 8vw, 104px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(36px, 5vw, 76px); align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--navy); margin-bottom: 24px;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--red); }
.hero h1 { color: var(--ink); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--navy); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .13em;
  background: rgba(255,23,33,.28); z-index: -1;
}
.hero__lede {
  font-size: clamp(17px, 1.7vw, 20px); color: var(--slate); max-width: 56ch;
  margin-bottom: 32px; line-height: 1.62;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero__note {
  font-size: 14px; color: var(--slate-light); display: flex; align-items: center; gap: 8px;
}
.hero__note svg { flex: none; }

/* Hero-Kennkarte */
.hero__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 32px 24px; box-shadow: var(--shadow);
}
.hero__card h2 {
  font-size: 15px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 20px; font-weight: 700;
}
.hero__card ul { list-style: none; }
.hero__card li {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 0;
  border-top: 1px solid var(--line); font-size: 15.5px; color: var(--ink); line-height: 1.5;
}
.hero__card li:first-child { border-top: 0; padding-top: 0; }
.hero__card li svg { flex: none; margin-top: 4px; }

/* ---------- Vertrauensleiste ---------- */
.trust {background: #fff; color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);}
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item {padding: 32px 28px; border-left: 1px solid var(--line);}
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__value {font-size: 27px; font-weight: 750; letter-spacing: -.028em; margin-bottom: 4px; color: var(--navy);}
.trust__label {font-size: 14px; color: var(--slate); line-height: 1.45;}

/* ---------- Leistungskarten ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: #fff; padding: 32px 32px 32px; display: flex; flex-direction: column;
  transition: background .2s ease, transform .2s ease; position: relative;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .26s ease;
}
.card:hover { background: var(--mist); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--mist); border-radius: var(--radius-sm); color: var(--navy); flex: none;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--slate); line-height: 1.58; margin: 0; }

/* ---------- Branchen ---------- */
.branchen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.branche {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; display: flex; flex-direction: column;
  transition: box-shadow .24s ease, transform .24s ease, border-color .24s ease;
}
.branche:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); border-color: #CDD2E6; }
.branche__visual {
  height: 128px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, #EEF2FD 0%, #DDE5F8 100%);
  border-bottom: 1px solid var(--line);
}
.branche__visual::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(90deg, rgba(0,0,143,.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.branche__visual svg { position: absolute; right: 18px; bottom: 14px; opacity: .9; z-index: 2; }
.branche__tag {
  position: absolute; left: 18px; top: 16px; z-index: 2; font-size: 11px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: #fff;
  background: var(--red-deep); padding: 4px 8px; border-radius: var(--radius-sm);
}
.branche__body { padding: 24px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.branche__body h3 { font-size: 19px; margin-bottom: 8px; }
.branche__body p { font-size: 15px; color: var(--slate); margin-bottom: 16px; }
.branche__list { list-style: none; margin-top: auto; }
.branche__list li {
  font-size: 14px; color: var(--ink); padding: 8px 0 8px 16px; position: relative; line-height: 1.45;
}
.branche__list li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 7px; height: 7px;
  background: var(--navy); border-radius: var(--radius-sm);
}

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {position: relative; padding-top: 32px; border-top: 2px solid var(--line-strong);}
.step__num {
  position: absolute; top: -1px; left: 0; transform: translateY(-50%);
  background: var(--tint); padding-right: 16px;
  font-size: 13px; font-weight: 800; letter-spacing: .16em; color: var(--red-deep);
}
.step h3 {font-size: 19px; margin-bottom: 8px; color: var(--ink);}
.step p {font-size: 15px; color: var(--slate); margin: 0; line-height: 1.6;}

/* ---------- Über mich ---------- */
.about { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.about__panel {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  padding: 40px 32px; border-radius: var(--radius); position: relative;
  overflow: hidden; box-shadow: var(--shadow);
}
.about__panel::after {
  content: ""; position: absolute; right: -30%; bottom: -40%; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,23,33,.09) 0%, transparent 68%);
}
.about__panel .name { font-size: 24px; font-weight: 750; letter-spacing: -.02em; margin-bottom: 8px; }
.about__panel .role {font-size: 14.5px; color: var(--navy); margin-bottom: 24px; font-weight: 600;}
.about__facts { list-style: none; position: relative; z-index: 2; }
.about__facts li {padding: 12px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink);}
.about__facts li:first-child { border-top: 0; }
.about__facts strong {
  display: block; font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--slate-light); font-weight: 700; margin-bottom: 4px;
}
.about__text p { color: var(--slate); font-size: 16.5px; }
.about__text p strong { color: var(--ink); }

/* ---------- Bewertungen ---------- */
.notice {
  display: flex; gap: 16px; align-items: flex-start; background: #FFF7E6;
  border: 1px solid #F0D9A6; border-left: 4px solid #D99A00;
  padding: 16px 20px; border-radius: var(--radius); font-size: 14.5px;
  color: #6B4E00; margin-bottom: 32px; line-height: 1.55;
}
.notice svg { flex: none; margin-top: 4px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.review__badge {
  position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: #8A6D00;
  background: #FFF3D6; border: 1px solid #EFDCA8; padding: 4px 8px; border-radius: var(--radius-sm);
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--red-deep); }
.review p { font-size: 16px; color: var(--ink); line-height: 1.6; margin-bottom: 20px; }
.review__meta { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; }
.review__meta strong { display: block; color: var(--ink); font-weight: 650; }
.review__meta span { color: var(--slate-light); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-size: 18px; font-weight: 650; letter-spacing: -.012em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 32px; width: 12px; height: 12px;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 36px; }
.faq summary:hover { color: var(--navy); }
.faq__body { padding: 0 60px 24px 0; color: var(--slate); font-size: 16px; line-height: 1.68; }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.kontakt { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 650; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 16px; font-family: inherit; font-size: 16px; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,0,143,.1);
}
.field textarea { min-height: 128px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--slate); line-height: 1.5; margin-bottom: 24px; }
.consent input { width: 17px; height: 17px; margin-top: 4px; flex: none; accent-color: var(--navy); }
.form-card .btn { width: 100%; }
.form-hint { font-size: 12.5px; color: var(--slate-light); margin: 16px 0 0; line-height: 1.5; }

.kontakt__aside h2 { margin-bottom: 16px; }
.contact-list { list-style: none; margin: 28px 0 0; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.contact-list .ico { width: 40px; height: 40px; flex: none; background: var(--navy); color: #fff; display: grid; place-items: center; border-radius: var(--radius-sm); }
.contact-list strong { display: block; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--slate-light); font-weight: 700; margin-bottom: 4px; }
.contact-list a, .contact-list span { font-size: 16.5px; color: var(--ink); font-weight: 550; }
.contact-list a:hover { color: var(--navy); }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--navy); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: clamp(40px, 5vw, 62px) 0; }
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0; font-size: 16.5px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #F2F5FC; color: var(--slate); font-size: 14.5px;
  padding: clamp(48px, 6vw, 72px) 0 0; border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer h4 { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; font-weight: 700; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; line-height: 1.5; }
.site-footer a { color: var(--slate); }
.site-footer a:hover { color: var(--navy); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand__name { color: var(--ink); }
.footer-brand .brand__sub { color: var(--slate-light); }
.footer-note { font-size: 13.5px; line-height: 1.6; color: var(--slate-light); }
.footer-bar {
  border-top: 1px solid var(--line); padding: 24px 0 32px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13.5px;
}
.footer-bar nav { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Rechtsseiten ---------- */
.legal { padding: clamp(52px, 6vw, 84px) 0 clamp(64px, 8vw, 104px); }
.legal__inner { max-width: 800px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.legal .updated { color: var(--slate-light); font-size: 14.5px; margin-bottom: 44px; }
.legal h2 { font-size: 21px; margin: 44px 0 16px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--slate); font-size: 16px; line-height: 1.72; }
.legal strong { color: var(--ink); }
.legal ul { padding-left: 20px; margin-bottom: 1.05em; }
.legal li { margin-bottom: 8px; }
.legal .datablock {
  background: var(--mist); border-left: 3px solid var(--navy);
  padding: 24px 24px; border-radius: var(--radius); margin-bottom: 24px;
}
.legal .datablock p { margin-bottom: .5em; color: var(--ink); }
.legal .datablock p:last-child { margin-bottom: 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; margin-bottom: 32px; }

/* ---------- Platzhalter-Markierung ---------- */
.todo {
  background: #FFE8E8; color: #A50010; font-weight: 700; padding: 4px 8px;
  border-radius: var(--radius-sm); font-size: .93em; border: 1px dashed #E08A8A;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .branchen { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .reviews { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .kontakt { grid-template-columns: 1fr; }
  .nav, .header-phone { display: none; }
  .header-cta > .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 0; right: 0; top: 76px; background: #fff;
    border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px;
    box-shadow: var(--shadow-lift);
  }
  .nav.open a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; }
  .nav.open a::after { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16.5px; }
  .cards { grid-template-columns: 1fr; }
  .branchen { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .field--row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .btn:hover, .branche:hover { transform: none; }
}

@media print {
  .js .js-reveal { opacity: 1 !important; transform: none !important; }
  .site-header, .cta-band, .hero__actions, .form-card { display: none; }
  body { font-size: 11pt; color: #000; }
  .hero, .section--tint, .trust, .showcase, .spotlight { background: #fff !important; color: #000 !important; }
}

/* ==========================================================================
   ERWEITERUNG · Sonderkonzepte, Risiko-Radar, Scroll-Reveals
   ========================================================================== */

/* ---------- Scroll-Reveal (SSR-/JS-sicher: ohne JS bleibt alles sichtbar) -- */
/* Nur wenn JS aktiv ist, wird ausgeblendet. Ohne JS bleibt alles sichtbar. */
.js .js-reveal { opacity: 0; transform: translateY(22px); }
.js .js-reveal.is-in { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
.js .js-reveal.d1 { transition-delay: .07s; }
.js .js-reveal.d2 { transition-delay: .14s; }
.js .js-reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .js .js-reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Hero: lebendiger Verlauf ---------- */
.hero__pulse {
  position: absolute; z-index: 1; left: 50%; top: 34%;
  width: 78vw; height: 78vw; max-width: 900px; max-height: 900px;
  transform: translate(-50%,-50%); pointer-events: none; opacity: .9;
}
.hero__pulse circle { fill: none; stroke: rgba(0,0,143,.24); stroke-width: 1.2; }
.hero__pulse .p { transform-origin: center; animation: ring 7s ease-out infinite; }
.hero__pulse .p2 { animation-delay: 2.3s; }
.hero__pulse .p3 { animation-delay: 4.6s; }
@keyframes ring {
  0%   { transform: scale(.35); opacity: 0; }
  18%  { opacity: .85; }
  100% { transform: scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero__pulse .p { animation: none; opacity: .3; } }

/* ---------- Sonderkonzepte ---------- */
.spotlight {
  background:
    radial-gradient(85% 110% at 90% 0%, rgba(255,23,33,.07) 0%, rgba(255,23,33,0) 55%),
    linear-gradient(160deg, #FFFFFF 0%, #EDF1FC 55%, #E7EDFB 100%);
  color: var(--ink); position: relative; overflow: hidden;
}
.spotlight::before {
  content: ""; position: absolute; inset: 0; opacity: .7;
  background-image:
    linear-gradient(rgba(0,0,143,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,143,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}
.spotlight > .wrap { position: relative; z-index: 2; }
.spotlight .h-section, .spotlight h3 { color: var(--ink); }

.konzept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px; }
.konzept {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 32px 32px; position: relative; overflow: hidden; box-shadow: var(--shadow);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.konzept:hover {border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-lift);}
.konzept__head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.konzept__ico {
  width: 46px; height: 46px; flex: none; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--red-deep); color: #fff;
}
.konzept__head h3 { font-size: 21px; margin: 0; }
.konzept__head span {
  display: block; font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; margin-top: 4px;
}
.konzept p {color: var(--slate); font-size: 15.8px; line-height: 1.62;}
.konzept ul { list-style: none; margin-top: 16px; }
.konzept li {font-size: 15px; color: var(--ink); padding: 8px 0 8px 24px; position: relative; line-height: 1.5;}
.konzept li::before {
  content: ""; position: absolute; left: 0; top: 15px; width: 11px; height: 6px;
  border-left: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.usp-band {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--red); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow);
}
.usp-band__key {font-size: 20px; font-weight: 750; letter-spacing: -.02em; color: var(--navy);}
.usp-band p {margin: 0; color: var(--slate); font-size: 15.5px; max-width: 64ch;}

.fineprint {font-size: 13px; color: var(--slate-light); margin-top: 24px; line-height: 1.6; max-width: 78ch;}

/* ---------- Risiko-Radar ---------- */
.risiko { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: clamp(30px,4vw,60px); align-items: start; }

.branch-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.branch-tab {
  font-family: inherit; font-size: 14.5px; font-weight: 620; cursor: pointer;
  padding: 8px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: #fff; color: var(--slate); transition: all .2s ease;
}
.branch-tab:hover { border-color: var(--navy); color: var(--navy); }
.branch-tab[aria-selected="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

.radar-card {
  background: linear-gradient(158deg, #FFFFFF 0%, #F2F5FD 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  border-radius: var(--radius); padding: 24px 24px 20px; position: relative; overflow: hidden;
}
.radar-card::after {
  content: ""; position: absolute; right: -30%; top: -30%; width: 320px; height: 320px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,0,143,.07) 0%, transparent 68%);
}
.radar-card svg { width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.radar-grid { fill: none; stroke: rgba(0,0,143,.16); stroke-width: 1; }
.radar-axis { stroke: rgba(0,0,143,.14); stroke-width: 1; }
.radar-shape { fill: rgba(255,23,33,.20); stroke: #FF1721; stroke-width: 2.2; stroke-linejoin: round; }
.radar-dot   { fill: #D4000F; stroke: #fff; stroke-width: 1.2; }
.radar-label { fill: #4A5273; font-size: 10.5px; font-weight: 600; font-family: var(--sans); }
.radar-caption {
  position: relative; z-index: 2; text-align: center; margin-top: 8px;
  font-size: 12px; color: var(--slate-light); line-height: 1.5;
}

.risiko__panel h3 { font-size: 24px; margin-bottom: 8px; }
.risiko__panel .sub { color: var(--slate); font-size: 15.5px; margin-bottom: 24px; }

.bars { list-style: none; margin-bottom: 28px; }
.bars li { margin-bottom: 16px; }
.bars .bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.bars .bar-name { font-size: 15.5px; font-weight: 620; color: var(--ink); }
.bars .bar-val { font-size: 12.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--slate-light); }
.bars .bar-track { height: 7px; background: var(--mist-deep); border-radius: var(--radius-pill); overflow: hidden; }
.bars .bar-fill {
  height: 100%; border-radius: var(--radius-pill); width: 0;
  background: linear-gradient(90deg, var(--navy) 0%, #FF1721 100%);
  transition: width .75s cubic-bezier(.2,.75,.3,1);
}

.szenario {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 24px 24px;
}
.szenario h4 { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 12px; font-weight: 700; }
.szenario p { font-size: 16px; color: var(--ink); line-height: 1.62; margin-bottom: 16px; }
.szenario .deckungen { display: flex; flex-wrap: wrap; gap: 8px; }
.szenario .tag {
  font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: var(--radius-pill);
  background: var(--mist); color: var(--navy); border: 1px solid var(--line);
}
.risiko-fade { animation: rfade .45s ease; }
@keyframes rfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .risiko-fade { animation: none; } .bars .bar-fill { transition: none; } }

@media (max-width: 900px) {
  .konzept-grid { grid-template-columns: 1fr; }
  .risiko { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ERWEITERUNG · Schadenfall-Showcase (animiert)
   ========================================================================== */
.showcase {
  background: linear-gradient(180deg, #F7F9FE 0%, #EDF1FC 60%, #F7F9FE 100%);
  color: var(--ink); position: relative; overflow: hidden;
  padding: clamp(46px, 6vw, 78px) 0 clamp(38px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.showcase::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background-image:
    linear-gradient(rgba(0,0,143,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,143,.05) 1px, transparent 1px);
  background-size: 54px 54px;
}
.showcase > .wrap { position: relative; z-index: 2; }
.showcase__head { max-width: 700px; margin-bottom: clamp(26px, 3vw, 40px); }
.showcase__head h2 { font-size: clamp(24px, 3.1vw, 36px); color: var(--ink); }

.stage {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 52px); align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); min-height: 300px;
  box-shadow: var(--shadow);
}

/* --- Bühne links: Szenen übereinander --- */
.stage__visual { position: relative; }
.scene { display: none; }
.scene.is-on { display: block; animation: sceneIn .5s ease both; }
.scene svg { width: 100%; height: auto; display: block; }
@keyframes sceneIn { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }

/* --- Bühne rechts: Zahlen --- */
.stage__info .kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #fff; background: var(--red-deep);
  padding: 4px 8px; border-radius: var(--radius-sm); margin-bottom: 16px;
}
.stage__info h3 {font-size: clamp(21px, 2.4vw, 28px); color: var(--ink); margin-bottom: 12px;}
.stage__info .lauf {color: var(--slate); font-size: 15.5px; line-height: 1.6; margin-bottom: 24px;}
.betrag {
  font-size: clamp(36px, 5.4vw, 56px); font-weight: 800; letter-spacing: -.035em;
  line-height: 1; color: var(--navy); margin-bottom: 4px; font-variant-numeric: tabular-nums;
}
.betrag small {font-size: .42em; font-weight: 700; letter-spacing: -.01em; margin-left: 8px; color: var(--slate-light);}
.betrag-label {
  font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--slate-light); font-weight: 700; margin-bottom: 20px;
}
.posten { list-style: none; margin-bottom: 20px; }
.posten li {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 8px 0; border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--slate);
}
.posten li:first-child { border-top: 0; }
.posten li b {color: var(--ink); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums;}
.stage__info .deckung {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 620;
  color: #B00814; background: #FFF1F1; border: 1px solid #FFC9CC;
  padding: 8px 14px; border-radius: var(--radius-pill);
}

/* --- Navigation --- */
.showcase__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.case-tab {
  font-family: inherit; font-size: 13.5px; font-weight: 620; cursor: pointer;
  color: var(--slate); background: transparent; padding: 12px 16px 12px;
  border: 0; border-top: 2px solid var(--line-strong); position: relative;
  transition: color .2s ease; text-align: left; flex: 1 1 150px;
}
.case-tab:hover { color: var(--navy); }
.case-tab[aria-selected="true"] { color: var(--navy); }
.case-tab::after {
  content: ""; position: absolute; left: 0; top: -2px; height: 2px; width: 0; background: var(--red);
}
.case-tab[aria-selected="true"]::after { width: 100%; }
.case-tab[aria-selected="true"].is-running::after { animation: caseFill 8s linear forwards; }
@keyframes caseFill { from { width: 0; } to { width: 100%; } }

.showcase .fineprint { margin-top: 20px; }

/* --- Szenen-Animationen --- */
.flame   { transform-box: fill-box; transform-origin: center bottom; animation: flame 1.15s ease-in-out infinite alternate; }
.flame-b { animation-duration: .85s; animation-delay: .18s; }
.flame-c { animation-duration: 1.4s; animation-delay: .34s; }
@keyframes flame { from { transform: scaleY(.72) scaleX(1.04); opacity: .82; } to { transform: scaleY(1.1) scaleX(.94); opacity: 1; } }
.smoke { animation: smoke 3.4s ease-out infinite; }
.smoke-b { animation-delay: 1.1s; } .smoke-c { animation-delay: 2.2s; }
@keyframes smoke { 0% { transform: translateY(0) scale(.6); opacity: 0; } 25% { opacity: .35; } 100% { transform: translateY(-64px) scale(1.5); opacity: 0; } }
.blink  { animation: blink 1s steps(1) infinite; }
.blink-b { animation-delay: .33s; } .blink-c { animation-delay: .66s; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .18; } }
.scanline { animation: scanline 2.6s ease-in-out infinite; }
@keyframes scanline { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(112px); } }
.alert { transform-box: fill-box; transform-origin: center; animation: alert 1.5s ease-in-out infinite; }
@keyframes alert { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.09); opacity: .72; } }
.fall { animation: fall 2.6s cubic-bezier(.5,0,.85,1) infinite; }
@keyframes fall { 0%, 18% { transform: translateY(-52px); opacity: 0; } 26% { opacity: 1; } 46%, 100% { transform: translateY(0); opacity: 1; } }
.gear { transform-box: fill-box; transform-origin: center; animation: gear 6s linear infinite; }
.gear-s { transform-box: fill-box; transform-origin: center; animation: gear 4s linear infinite reverse; }
@keyframes gear { to { transform: rotate(360deg); } }
.spark { animation: spark 1.3s ease-out infinite; }
.spark-b { animation-delay: .45s; } .spark-c { animation-delay: .9s; }
@keyframes spark { 0% { transform: translate(0,0) scale(1); opacity: 1; } 100% { transform: translate(26px,-24px) scale(0); opacity: 0; } }
.grow { transform-box: fill-box; transform-origin: left center; animation: grow 2.8s ease-out infinite; }
@keyframes grow { 0% { transform: scaleX(0); } 55%, 100% { transform: scaleX(1); } }
.pulse-r { transform-box: fill-box; transform-origin: center; animation: pulseR 2.4s ease-out infinite; }
@keyframes pulseR { 0% { transform: scale(.5); opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .flame, .smoke, .blink, .scanline, .alert, .fall, .gear, .gear-s, .spark, .grow, .pulse-r,
  .case-tab[aria-selected="true"].is-running::after, .scene.is-on { animation: none !important; }
  .smoke, .spark, .pulse-r { opacity: .3; }
}

@media (max-width: 860px) {
  .stage { grid-template-columns: 1fr; gap: 24px; }
  .case-tab { flex: 1 1 45%; font-size: 13px; padding: 8px 12px 12px; }
}

/* ==========================================================================
   ERWEITERUNG · Launch-Bausteine und Apple-Design-Regeln
   Maßstab: design-tokens.md · Regelnummern verweisen auf den apple-design-Skill
   ========================================================================== */

/* --- Regel 15 · Letter-Spacing ist größenabhängig, nicht global --- */
.h-display { letter-spacing: -.034em; }          /* sehr groß  → deutlich negativ */
.h-section { letter-spacing: -.024em; }          /* groß       → negativ */
.h-card    { letter-spacing: -.014em; }          /* mittel     → leicht negativ */
body, p, li, .lede { letter-spacing: 0; }        /* Fließtext  → neutral */
.eyebrow, .betrag-label, .bar-val, .site-footer h4,
.contact-list strong, .about__facts strong, .step__num,
.branche__tag, .kicker { letter-spacing: .13em; } /* Kleintext → positiv */
.fineprint, .form-hint, .radar-caption { letter-spacing: .004em; }

/* --- Regel 1 · Feedback beim Runterdrücken, nicht beim Loslassen --- */
.btn:active,
.branch-tab:active,
.case-tab:active,
.nav-toggle:active { transform: scale(.975); transition-duration: .1s; }
.card:active, .branche:active, .konzept:active { transform: scale(.995); }

/* --- Regel 4 · Spring-Anmutung statt linearer Dauer (damping 1.0, kein Überschwingen) --- */
:root {
  --spring:      cubic-bezier(.32, .72, 0, 1);
  --spring-soft: cubic-bezier(.4, .8, .2, 1);
  --dur-fast: .14s;
  --dur-base: .28s;
  --dur-slow: .52s;
}
.btn { transition: transform var(--dur-fast) var(--spring), background var(--dur-base) var(--spring-soft), border-color var(--dur-base) var(--spring-soft), color var(--dur-base) var(--spring-soft), box-shadow var(--dur-base) var(--spring-soft); }
.branche, .konzept, .card { transition: transform var(--dur-base) var(--spring), box-shadow var(--dur-base) var(--spring-soft), border-color var(--dur-base) var(--spring-soft), background var(--dur-base) var(--spring-soft); }
.js .js-reveal.is-in { transition: opacity var(--dur-slow) var(--spring), transform var(--dur-slow) var(--spring); }

/* --- Regel 12 · Weiche Scroll-Kante statt harter 1px-Linie --- */
.site-header { border-bottom: 0; }
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -18px; height: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17,22,47,.07) 0%, rgba(17,22,47,0) 100%);
  opacity: 0; transition: opacity var(--dur-base) var(--spring-soft);
}
.site-header.is-scrolled::after { opacity: 1; }

/* --- Regel 14 · Drei Signale getrennt behandeln --- */
@media (prefers-reduced-transparency: reduce) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .hero__card, .mobilebar { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (prefers-contrast: more) {
  :root { --slate: #333A55; --slate-light: #454B67; --line: #9AA5C4; --line-strong: #6F7CA6; }
  .btn--outline, .btn--ghost { border-width: 2px; }
  .card, .branche, .konzept, .stage, .radar-card, .form-card { border-width: 2px; }
}

/* --- Sticky Kontaktleiste am Handy (Launch-Punkt 9) --- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 -1px 0 var(--line), 0 -12px 28px rgba(17,22,47,.09);
}
.mobilebar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 12px; border-radius: var(--radius); font-size: 15.5px; font-weight: 650;
  text-decoration: none !important; transition: transform var(--dur-fast) var(--spring);
}
.mobilebar a:active { transform: scale(.975); }
.mobilebar .tel  { background: #fff; color: var(--navy); border: 1.5px solid var(--line-strong); }
.mobilebar .anfr { background: var(--red-deep); color: #fff; }
@media (max-width: 860px) {
  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
}
@media print { .mobilebar { display: none !important; } }

/* --- Breadcrumbs (Launch-Punkt 5) --- */
.crumbs { font-size: 13.5px; color: var(--slate-light); margin-bottom: 24px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 0; margin: 0; }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "›"; color: var(--line-strong); }
.crumbs a { color: var(--slate); }
.crumbs a:hover { color: var(--navy); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* --- Anfahrt und Karte (Launch-Punkt 14) --- */
.anfahrt { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(24px,3vw,44px); align-items: start; }
.karte {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.karte svg { width: 100%; height: auto; display: block; }
.karte__fuss {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--slate);
}
.wegliste { list-style: none; }
.wegliste li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.wegliste li:first-child { border-top: 0; padding-top: 0; }
.wegliste .ico { width: 36px; height: 36px; flex: none; border-radius: var(--radius-sm); background: var(--mist); color: var(--navy); display: grid; place-items: center; }
.wegliste > li > div > strong:first-child { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 4px; }
.wegliste span strong { color: var(--ink); }
.wegliste span { font-size: 14.5px; color: var(--slate); line-height: 1.5; }

/* --- Referenzen (Launch-Punkt 6) --- */
.refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ref {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.ref__kopf { padding: 24px 24px 0; }
.ref__branche { font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.ref h3 { font-size: 18px; margin-bottom: 8px; }
.ref__body { padding: 0 24px 24px; }
.ref__body p { font-size: 15px; color: var(--slate); margin-bottom: 16px; }
.ref__kennzahl { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.ref__kennzahl div { font-size: 13px; color: var(--slate-light); }
.ref__kennzahl b { display: block; font-size: 19px; color: var(--navy); letter-spacing: -.02em; }

/* --- Team-/Portraitplatzhalter (Launch-Punkt 20) --- */
.portrait {
  aspect-ratio: 4 / 5; border-radius: var(--radius); border: 2px dashed var(--line-strong);
  background: linear-gradient(150deg, #F7F9FE 0%, #EAEFFB 100%);
  display: grid; place-items: center; text-align: center; padding: 24px; gap: 8px;
}
.portrait svg { color: var(--line-strong); }
.portrait span { font-size: 13.5px; color: var(--slate); line-height: 1.5; max-width: 24ch; }

/* --- Fehler- und Dankeseite --- */
.zentriert { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: clamp(56px,8vw,110px) 0; }
.zentriert__inner { max-width: 620px; }
.zentriert .code { font-size: clamp(64px, 12vw, 132px); font-weight: 800; letter-spacing: -.05em; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.zentriert h1 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; }
.zentriert p { color: var(--slate); font-size: 17px; margin-bottom: 28px; }
.zentriert .aktionen { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.haken {
  width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%;
  background: #E8F7EE; color: #0C7A3E; display: grid; place-items: center;
  animation: hakenAn .5s cubic-bezier(.32,.72,0,1) both;
}
@keyframes hakenAn { from { transform: scale(.8); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .haken { animation: none; } }

@media (max-width: 1000px) { .refs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px)  { .anfahrt { grid-template-columns: 1fr; } }
@media (max-width: 620px)  { .refs { grid-template-columns: 1fr; } }

/* ==========================================================================
   ERWEITERUNG · Vorstellungsvideo im Hero
   ========================================================================== */
.hero__video {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-lift);
}
.hero__video video,
.hero__video img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }

/* Platzhalter, solange kein Video hinterlegt ist */
.videoplatz {
  position: relative; display: block; width: 100%; border: 0; padding: 0;
  background: none; text-align: left; cursor: default;
}
.videoplatz__hinweis {
  position: absolute; left: 16px; bottom: 16px; max-width: 62%;
  background: rgba(255,255,255,.93); border: 1px dashed var(--line-strong);
  border-radius: var(--radius); padding: 8px 12px;
  font-size: 12.5px; color: var(--slate); line-height: 1.45;
}
.videoplatz__hinweis strong { color: var(--ink); }

.video-fuss {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--slate-light); background: #fff; white-space: nowrap;
}
.video-fuss span { display: inline-flex; align-items: center; gap: 8px; }

/* Kompaktzeile mit den Absicherungspunkten unter dem Hero-Text */
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero__chips li {
  list-style: none; font-size: 13px; white-space: nowrap; font-weight: 600; color: var(--navy);
  background: rgba(255,255,255,.72); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: var(--radius-pill);
}
@media (max-width: 860px) {
  .hero__chips { gap: 8px; }
  .hero__chips li { font-size: 13px; padding: 8px 12px; }
}


/* ==========================================================================
   ERWEITERUNG · Agentur und Kooperationen
   ========================================================================== */
.agentur { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: clamp(24px,3.5vw,52px); align-items: start; }
.agentur__karte, .agentur__koop {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.agentur h3 { font-size: 21px; margin-bottom: 12px; }
.agentur p { font-size: 15.5px; color: var(--slate); line-height: 1.62; }
.agentur__zahlen { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; margin: 24px 0 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.agentur__zahlen li { display: flex; flex-direction: column; }
.agentur__zahlen b { font-size: 26px; font-weight: 800; letter-spacing: -.028em; color: var(--navy); line-height: 1.1; }
.agentur__zahlen span { font-size: 13.5px; color: var(--slate-light); margin-top: 4px; }
.agentur__quelle { font-size: 13px !important; color: var(--slate-light) !important; margin: 0 !important; }

.koopliste { list-style: none; }
.koopliste li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.koopliste li:first-child { border-top: 0; padding-top: 0; }
.koopliste__ico { width: 40px; height: 40px; flex: none; border-radius: var(--radius-sm); background: var(--mist); color: var(--navy); display: grid; place-items: center; }
.koopliste strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.koopliste span:not(.koopliste__ico) { font-size: 14.5px; color: var(--slate); line-height: 1.5; }

@media (max-width: 860px) { .agentur { grid-template-columns: 1fr; } }


/* --- Portraitfoto im Bereich Über mich --- */
.portraitbild {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow); margin-bottom: 20px;
  background: linear-gradient(160deg, #F7F9FE 0%, #E2EAFA 100%);
}


/* --- Verlinkte Überschriften in Karten --- */
.card h3 a, .branche__body h3 a, .ref h3 a {
  color: inherit; text-decoration: none !important;
}
.card:hover h3 a, .branche:hover h3 a { color: var(--navy); }
