

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;

  --brand:        #2563EB;
  --brand-deep:   #1E40AF;
  --brand-dark:   #172554;
  --brand-soft:   rgba(37, 99, 235, 0.08);
  --brand-line:   rgba(37, 99, 235, 0.22);

  --ink:      #0A0E14;
  --ink-2:    #3B4657;
  --ink-3:    #6C7889;
  --ink-4:    #9AA4B2;

  --bg:       #FFFFFF;
  --bg-soft:  #F7F9FC;
  --bg-deep:  #0B1120;
  --line:     #E4E9F0;
  --line-2:   #EFF3F8;

  --ok:    #15803D;
  --no:    #B91C1C;
  --maybe: #94A3B8;

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 26px;

  --shadow-sm: 0 1px 2px rgba(10, 14, 20, .05);
  --shadow:    0 2px 4px rgba(10, 14, 20, .04), 0 8px 24px rgba(10, 14, 20, .06);
  --shadow-lg: 0 4px 8px rgba(10, 14, 20, .04), 0 24px 64px rgba(10, 14, 20, .12);
  --shadow-xl: 0 8px 16px rgba(10, 14, 20, .05), 0 40px 100px rgba(10, 14, 20, .16);

  --wrap:  1200px;
  --wrap-w:1340px;
  --nav-h: 68px;
  
  --sec-pad: clamp(72px, 9vw, 132px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv05' 1, 'ss03' 1;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }

img { height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(37, 99, 235, .16); }

.wrap  { width: 100%; max-width: var(--wrap);   margin-inline: auto; padding-inline: 24px; }
.wrap-w{ width: 100%; max-width: var(--wrap-w); margin-inline: auto; padding-inline: 24px; }

.nur-fuer-screenreader {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4 {
  font-weight: 660;
  letter-spacing: -0.028em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.25rem); letter-spacing: -0.038em; line-height: 1.03; }
h2 { font-size: clamp(1.95rem, 3.4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); letter-spacing: -0.02em; line-height: 1.25; }

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 999px; padding: 6px 15px 6px 13px;
}
.eyebrow::before {
  content: ''; flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}

.abschnitt-kopf { max-width: 760px; }
.abschnitt-kopf h2 { margin-top: 18px; }
.abschnitt-kopf .lead { margin-top: 16px; }

section { padding-block: var(--sec-pad); position: relative; }
.tief   { background: var(--bg-soft); }
.tief + .tief { padding-top: 0; }

section[id]:not(.bildband) { scroll-margin-top: calc(20px - var(--sec-pad)); }
.funktion[id]              { scroll-margin-top: 20px; }

.tief + .tief[id]          { scroll-margin-top: 20px; }

section.hero[id]           { scroll-margin-top: 0; }

.trenner { border-top: 1px solid var(--line); }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding-inline: 24px;
  border-radius: var(--r); border: 1px solid transparent;
  font-size: .97rem; font-weight: 580; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .16s, border-color .16s, color .16s,
              transform .16s var(--ease), box-shadow .16s;
}
.knopf:active { transform: translateY(1px); }

.knopf-primaer {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 2px rgba(37,99,235,.28), 0 8px 22px rgba(37,99,235,.24);
}
.knopf-primaer:hover { background: var(--brand-deep); box-shadow: 0 2px 4px rgba(37,99,235,.3), 0 12px 30px rgba(37,99,235,.3); }

.knopf-rand {
  background: #fff; color: var(--ink);
  border-color: var(--line); box-shadow: var(--shadow-sm);
}
.knopf-rand:hover { border-color: #CBD5E1; background: #FCFDFE; }

.knopf-klein { height: 40px; padding-inline: 17px; font-size: .9rem; border-radius: 10px; }

.knopf-text {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-deep); font-weight: 560; text-decoration: none;
}
.knopf-text:hover { text-decoration: underline; text-underline-offset: 3px; }
.knopf-text svg { transition: transform .18s var(--ease); }
.knopf-text:hover svg { transform: translateX(3px); }

.kopf {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .72);
  border-bottom: 1px solid transparent;
  transition: background .22s, border-color .22s, box-shadow .22s;
}
.kopf.geheftet {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 3px rgba(10, 14, 20, .04);
}
.kopf-inhalt { display: flex; align-items: center; gap: 32px; width: 100%; }
.kopf-logo { display: block; flex-shrink: 0; }

.kopf-logo img { height: 42px; width: auto; }

.kopf-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }

.navi-gruppe { position: relative; }
.navi-kopf {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 13px; border-radius: 9px;
  font-size: .93rem; font-weight: 500; color: var(--ink-2);
  text-decoration: none; white-space: nowrap;
  transition: color .14s, background .14s;
}
.navi-kopf:hover,
.navi-gruppe:hover .navi-kopf,
.navi-gruppe:focus-within .navi-kopf { color: var(--ink); background: var(--bg-soft); }
.navi-pfeil { transition: transform .18s var(--ease); opacity: .55; }
.navi-gruppe:hover .navi-pfeil,
.navi-gruppe:focus-within .navi-pfeil { transform: rotate(180deg); opacity: 1; }

.navi-klapp {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  padding-top: 12px;                 
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s, transform .16s var(--ease), visibility .16s;
  z-index: 10;
}
.navi-gruppe:hover .navi-klapp,
.navi-gruppe:focus-within .navi-klapp {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.navi-liste {
  display: grid; gap: 2px; padding: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.navi-zwei .navi-liste { grid-template-columns: repeat(2, minmax(230px, 1fr)); }
.navi-eins .navi-liste { grid-template-columns: minmax(260px, 1fr); }

.navi-liste a {
  
  display: grid; align-content: start; gap: 2px; padding: 9px 12px;
  border-radius: 10px; text-decoration: none;
  transition: background .13s;
}

.navi-liste a:hover,
.navi-liste a:focus-visible {
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px var(--brand-line);
}
.navi-liste a:hover .np-titel,
.navi-liste a:focus-visible .np-titel { color: var(--brand-deep); }
.navi-liste a:hover .np-unter,
.navi-liste a:focus-visible .np-unter { color: var(--ink-2); }

.np-titel { font-size: .93rem; font-weight: 580; color: var(--ink); transition: color .13s; }
.np-unter { font-size: .82rem; color: var(--ink-3); line-height: 1.35; transition: color .13s; }

.kopf-tasten { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

.kopf-menue {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); cursor: pointer;
  transition: background .14s, border-color .14s, color .14s;
}
.kopf-menue:hover { background: var(--bg-soft); }

.kopf-menue[aria-expanded="true"] {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.kopf-menue .km-zu { display: none; }
.kopf-menue[aria-expanded="true"] .km-auf { display: none; }
.kopf-menue[aria-expanded="true"] .km-zu  { display: block; }

.handy-navi {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: #fff;
  border-top: 1px solid var(--line);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.handy-navi.offen { opacity: 1; transform: none; }

.handy-navi[hidden] { display: none; }
.hn-rollen {
  height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 14px 20px calc(28px + env(safe-area-inset-bottom));
}
.hn-oben {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 0 14px; margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem; font-weight: 500; color: var(--ink-3); text-decoration: none;
}

.hn-gruppe { padding: 10px 0 6px; }

.hn-kopf {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0 12px;
  font-size: .82rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--brand-deep); text-decoration: none;
}
.hn-kopf::before {
  content: ''; flex: 0 0 auto;
  width: 20px; height: 3px; border-radius: 2px;
  background: var(--brand);
}

.hn-kopf::after {
  content: ''; flex: 1 1 auto; height: 1px;
  background: var(--brand-line);
}
.hn-punkt {
  display: block; padding: 11px 12px; margin: 0 -12px;
  border-radius: 9px;
  font-size: 1.02rem; font-weight: 500; color: var(--ink); text-decoration: none;
}
.hn-punkt:active { background: var(--bg-soft); }

.hn-punkt.aktiv, .hn-oben.aktiv {
  color: var(--brand-deep); font-weight: 600;
  background: var(--brand-soft);
}
.hn-tat { width: 100%; margin-top: 20px; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .handy-navi { transition: none; transform: none; }
}

.seitenleiste { display: none; }

@media (min-width: 1400px) {

  .seitenleiste {
    display: grid; gap: 0;
    position: fixed; left: 0; top: 50%; transform: translateY(-50%);
    z-index: 90; width: 168px; padding: 10px 8px 10px 28px;
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border: none;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    box-shadow: 0 2px 4px rgba(10, 14, 20, .04), 0 12px 32px rgba(10, 14, 20, .07);
  }
  
  .seitenleiste a {
    display: flex; align-items: center; gap: 9px;
    padding: 5px 9px; border-radius: 8px; text-decoration: none;
    font-size: .72rem; line-height: 1.3; color: var(--ink-3);
    white-space: nowrap;
    transition: color .16s, background .16s;
  }
  
  .seitenleiste a > span:first-child {
    flex: 0 0 auto; width: 2px; align-self: stretch; border-radius: 1px;
    background: var(--line);
    transition: background .16s;
  }
  .seitenleiste a:hover { color: var(--ink); background: var(--bg-soft); }

  .sl-zwinker {
    align-self: center; font-size: .78em; opacity: .55; line-height: 1;
    transition: opacity .16s;
  }
  .seitenleiste a:hover .sl-zwinker,
  .seitenleiste a.aktiv .sl-zwinker { opacity: 1; }

  .seitenleiste a.aktiv {
    color: var(--ink); font-weight: 620;
    background: none; box-shadow: none;
  }
  .seitenleiste a.aktiv > span:first-child { background: var(--brand); width: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .seitenleiste a, .seitenleiste a span { transition: none; }
}

@media (min-width: 1400px) and (max-width: 1583px) {
  body:not(.recht) .wrap {
    width: auto;
    margin-left: 192px;
    margin-right: 40px;
  }
}

.hero {
  padding-top: calc(var(--nav-h) + clamp(56px, 8vw, 104px));
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: -280px 0 auto 0; height: 900px;
  background:
    radial-gradient(58% 46% at 50% 32%, rgba(37, 99, 235, .10) 0%, transparent 68%),
    radial-gradient(40% 34% at 82% 12%, rgba(14, 165, 233, .07) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}

.hero h1 { margin-top: 22px; }

.hero h1 .zeile-2 {
  background-image: linear-gradient(94deg, var(--brand-dark), var(--brand-deep) 38%, var(--brand) 78%, #4B7EF0);
  -webkit-background-clip: text;
  background-clip: text;
  color: color-mix(in oklab, transparent 90%, var(--ink-3));
}
@supports not (background-clip: text) {
  .hero h1 .zeile-2 { background-image: none; color: var(--brand-deep); }
}

.hero-marke {
  display: inline-block; width: auto; height: .8em;
  margin-left: .3em; vertical-align: -.06em;
}

.wortmarke {
  display: inline-block; width: auto; height: .74em;
  vertical-align: -.02em;
}
.hero .lead { margin: 22px auto 0; max-width: 620px; font-weight: 500; }

.hero .hero-liste {
  display: block; max-width: 760px; margin: 0 auto 14px;
  font-size: .93em; color: var(--ink-3); line-height: 1.5; font-weight: 400;
}
.hero-tasten { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.hero-notiz { margin-top: 16px; font-size: .86rem; color: var(--ink-4); }

.fakten {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: clamp(48px, 5vw, 64px);
}

.fakt {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: 28px 18px 24px; text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.fakt::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 54px; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
}
.fakt:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fakt-wert {
  font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 700;
  letter-spacing: -.035em; line-height: 1.05;
  font-variant-numeric: tabular-nums;
  background-image: linear-gradient(150deg, var(--ink) 30%, var(--brand-deep));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@supports not (background-clip: text) { .fakt-wert { color: var(--ink); } }
.fakt-text {
  margin-top: 8px; font-size: .84rem; line-height: 1.45; color: var(--ink-3);
  max-width: 15em; margin-inline: auto;
}

.bildrahmen {
  position: relative; border-radius: var(--r-xl);
  background: linear-gradient(180deg, #fff, #F4F7FB);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.bildrahmen img { width: 100%; height: auto; }
.bildrahmen::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.hero-schatten {
  height: clamp(60px, 8vw, 120px);
  background: linear-gradient(180deg, transparent, var(--bg-soft));
}

.problem-buehne {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 56px); align-items: center; margin-top: 52px;
}
.programm-stapel { display: grid; gap: 10px; }
.programm {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-sm); color: var(--ink-2);
  font-size: .95rem;
}
.programm b { color: var(--ink); font-weight: 580; }
.programm-punkt { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); flex-shrink: 0; }

.problem-pfeil { color: var(--brand); display: grid; place-items: center; }
.problem-pfeil svg { width: 68px; height: auto; stroke-width: 2.2; }

@property --ergebnis-dreh {
  syntax: "<angle>";
  inherits: false;
  initial-value: 160deg;
}
@keyframes ergebnis-dreh  { to { --ergebnis-dreh: 520deg; } }
@keyframes ergebnis-glanz { to { transform: translate3d(28%, 22%, 0); } }

.ergebnis {
  position: relative; overflow: hidden;
  display: grid; gap: 6px; place-items: center; text-align: center;
  padding: 40px 28px; border-radius: var(--r-lg);
  background: linear-gradient(var(--ergebnis-dreh), var(--brand-dark), #1E3A8A 62%, #2A5BD7 128%);
  color: #fff;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.14);
  animation: ergebnis-dreh 26s linear infinite;
}
.ergebnis::after {
  content: ''; position: absolute; inset: -40%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,255,255,.13), transparent 70%);
  transform: translate3d(-28%, -18%, 0);
  animation: ergebnis-glanz 41.6s ease-in-out infinite alternate;
}
.ergebnis img { height: 30px; width: auto; margin-bottom: 8px; position: relative; z-index: 1; }
.ergebnis p { color: rgba(255,255,255,.72); font-size: .93rem; position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .ergebnis, .ergebnis::after { animation: none; }
}

.dachbild { margin-top: clamp(34px, 4vw, 52px); }
.dachbild img { width: 100%; height: auto; display: block; }

.ansichten {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 30px); margin-top: 44px;
}
.ansicht { margin: 0; }
.ansicht .bildrahmen { aspect-ratio: 4 / 3; }
.ansicht .bildrahmen img { width: 100%; height: 100%; object-fit: cover; }
.ansicht figcaption { margin-top: 18px; }
.ansicht h3 { margin-bottom: 7px; }
.ansicht p { color: var(--ink-2); font-size: .95rem; }

.ansichten-fuss {
  max-width: 720px; margin: clamp(30px, 3.4vw, 44px) auto 0;
  text-align: center; color: var(--ink-2);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}
.ansichten-fuss b { color: var(--ink); font-weight: 620; }

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

.funktion {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: clamp(36px, 5vw, 84px); align-items: center;
}
.funktion + .funktion { margin-top: clamp(80px, 9vw, 140px); }
.funktion.gedreht .funktion-text { order: 2; }
.funktion.gedreht .funktion-bild { order: 1; }

.funktion-text h2 { margin-top: 16px; }
.funktion-text .lead { margin-top: 16px; }

.punkte { margin-top: 26px; display: grid; gap: 13px; padding: 0; list-style: none; }
.punkte li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; color: var(--ink-2); }
.punkte svg { flex-shrink: 0; margin-top: 4px; color: var(--brand); }
.punkte b { color: var(--ink); font-weight: 580; }

.funktion-bild .bildrahmen { border-radius: var(--r-lg); }

.szene { position: relative; height: 300vh; }
.szene-halt {
  position: sticky; top: 0; height: 100vh;
  display: grid; place-items: center; overflow: hidden;
}
.szene-inhalt { width: 100%; max-width: var(--wrap); padding-inline: 24px; }
.szene-kopf { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.szene-buehne {
  position: relative; margin: 0 auto; width: min(100%, 880px);
  aspect-ratio: 16 / 9; border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  overflow: hidden; background: #E8EDF2;
}
.szene-buehne img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.szene-module {
  position: absolute;
  left: 30%; top: 43%; width: 40%; height: 15.5%;
  
  transform: rotate(6.1deg);
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.2%;
}
.szene-modul {
  background: rgba(14, 26, 54, .86);
  border: 1px solid rgba(130, 178, 255, .9);
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
  opacity: 0; transform: scale(.55);
  transition: opacity .26s var(--ease), transform .26s var(--ease);
}
.szene-modul.an { opacity: 1; transform: scale(1); }
.szene-zaehler {
  position: absolute; right: 16px; bottom: 16px;
  display: flex; gap: 18px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 18px; box-shadow: var(--shadow);
}
.szene-zaehler div { text-align: right; }
.szene-zaehler .z-wert {
  font-size: 1.15rem; font-weight: 660; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.szene-zaehler .z-text { font-size: .74rem; color: var(--ink-3); }
.szene-fortschritt {
  position: absolute; left: 0; bottom: 0; height: 3px;
  background: var(--brand); width: 0%;
}

.vergleichsbild {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  cursor: ew-resize; user-select: none; touch-action: none;
}

.vergleichsbild img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none; -webkit-user-drag: none;
}
.vergleichsbild .oben { clip-path: inset(0 0 0 50%); }
.vb-griff {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: #fff; box-shadow: 0 0 0 1px rgba(10,14,20,.14);
  pointer-events: none;
}
.vb-griff::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 42px; height: 42px; transform: translate(-50%, -50%);
  border-radius: 50%; background: #fff; box-shadow: var(--shadow);
}
.vb-marke {
  position: absolute; bottom: 14px; padding: 5px 11px;
  background: rgba(10,14,20,.72); color: #fff;
  border-radius: 999px; font-size: .76rem; font-weight: 560;
  backdrop-filter: blur(6px);
}
.vb-marke.links { left: 14px; }
.vb-marke.rechts { right: 14px; }

.raster {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 16px; margin-top: 48px;
}
.kachel {
  padding: 26px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .18s, box-shadow .22s var(--ease), transform .22s var(--ease);
}
.kachel:hover { border-color: #D2DCEA; box-shadow: var(--shadow); transform: translateY(-3px); }
.kachel-icon {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 10px; background: var(--brand-soft); color: var(--brand-deep);
  margin-bottom: 16px;
}
.kachel h3 { font-size: 1.03rem; }
.kachel p { margin-top: 7px; font-size: .92rem; color: var(--ink-3); line-height: 1.55; }

#daten .kachel {
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 30px 24px 28px; text-align: center;
}
#daten .kachel::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 54px; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
}
#daten .kachel p { max-width: 30em; margin-inline: auto; }

.tabelle-huelle {
  margin-top: 40px; border: 1px solid var(--line);
  border-radius: var(--r-lg); background: #fff;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.tabelle-rollen { overflow-x: auto; overscroll-behavior-x: contain; }
table.vergleich { border-collapse: separate; border-spacing: 0; width: 100%; min-width: 940px; font-size: .88rem; }
table.vergleich th, table.vergleich td { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--line-2); }
table.vergleich thead th {
  position: sticky; top: 0; z-index: 3;
  background: #fff; border-bottom: 1px solid var(--line);
  font-weight: 580; font-size: .82rem; color: var(--ink-2);
  white-space: nowrap;
}
table.vergleich tbody th {
  position: sticky; left: 0; z-index: 2;
  background: #fff; text-align: left; font-weight: 500; color: var(--ink);
  min-width: 260px; border-right: 1px solid var(--line);
}
table.vergleich thead th:first-child { z-index: 4; left: 0; text-align: left; }
table.vergleich .spalte-wir { background: var(--brand-soft); }
table.vergleich thead .spalte-wir { color: var(--brand-deep); font-weight: 680; }
table.vergleich tbody tr:hover th, table.vergleich tbody tr:hover td { background: #FAFCFE; }
table.vergleich tbody tr:hover .spalte-wir { background: rgba(37,99,235,.12); }

.z-ja   { color: var(--ok); font-weight: 620; }
.z-nein { color: var(--no); font-weight: 560; }
.z-ka   { color: var(--maybe); font-size: .82rem; }
.z-teil { color: #B45309; font-size: .82rem; }

.tabelle-fuss {
  padding: 16px 18px; background: var(--bg-soft);
  border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--ink-3); line-height: 1.55;
}
.rollhinweis {
  display: none; margin-top: 12px; font-size: .82rem; color: var(--ink-4);
}

.stufen {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px); margin: 46px 0 0; padding: 0; list-style: none;
  counter-reset: stufe;
}
.stufe {
  position: relative; padding: 28px 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.stufe-nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; margin-bottom: 14px;
  border-radius: 50%; background: var(--brand-soft); border: 1px solid var(--brand-line);
  color: var(--brand-deep); font-size: .86rem; font-weight: 660;
  font-variant-numeric: tabular-nums;
}
.stufe h3 { margin-bottom: 7px; }
.stufe p { color: var(--ink-2); font-size: .95rem; }

.eb-karte {
  max-width: 900px; margin-inline: auto;
  margin-top: clamp(20px, 2.4vw, 30px); padding: clamp(24px, 3vw, 34px);
  border-radius: var(--r-lg); border: 1px solid var(--brand-line);
  background: linear-gradient(180deg, rgba(37,99,235,.035), #fff 45%);
  display: grid; gap: 14px;
}
.eb-karte p { color: var(--ink-2); font-size: .98rem; max-width: 68ch; }

.eb-tasten { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--brand-line); text-align: center; }
.knopf-gross { height: 58px; padding-inline: 40px; font-size: 1.06rem; border-radius: var(--r); }

.eb-tasten-fuss {
  max-width: none; margin: 12px auto 0;
  font-size: .86rem; color: var(--ink-3);
}
.eb-karte b { color: var(--ink); font-weight: 620; }

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

.preis-gitter { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.preis-karte {
  padding: 32px; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: #fff;
  display: flex; flex-direction: column;
}
.preis-karte.hervor {
  border-color: var(--brand-line); box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(37,99,235,.035), #fff 40%);
}
.preis-marke {
  align-self: flex-start; font-size: .76rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--brand-deep); background: var(--brand-soft);
  border-radius: 999px; padding: 4px 11px; margin-bottom: 16px;
}
.preis-zahl { display: flex; align-items: baseline; gap: 6px; }
.preis-zahl .z {
  font-size: clamp(2.4rem, 4vw, 3.1rem); font-weight: 690;
  letter-spacing: -.04em; font-variant-numeric: tabular-nums;
}
.preis-zahl .e { font-size: .95rem; color: var(--ink-3); }
.preis-karte h3 { margin-bottom: 8px; }
.preis-karte .hinweis:last-of-type { margin-bottom: 24px; }
.preis-karte .hinweis { margin-top: 10px; font-size: .88rem; color: var(--ink-3); }

.preis-karte .knopf { margin-top: auto; }

.rechner {
  margin-top: 24px; padding: 26px 28px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-soft);
}
.rechner-kopf { display: flex; flex-wrap: wrap; gap: 16px; align-items: baseline; justify-content: space-between; }
.rechner-kopf label { font-weight: 560; }
.rechner-wert { font-size: 1.05rem; font-weight: 620; font-variant-numeric: tabular-nums; }
.rechner input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; margin-top: 18px;
  border-radius: 3px; background: #DCE3EC; cursor: pointer;
}
.rechner input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); cursor: grab;
}
.rechner input[type=range]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); cursor: grab;
}
.rechner-ergebnis {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px;
}
.rechner-feld {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 18px;
}
.rechner-feld .k { font-size: .82rem; color: var(--ink-3); }
.rechner-feld .v {
  margin-top: 3px; font-size: 1.35rem; font-weight: 660;
  letter-spacing: -.025em; font-variant-numeric: tabular-nums;
}

.ki-preise { margin-top: 44px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.ki-preise summary {
  padding: 18px 24px; cursor: pointer; font-weight: 580;
  background: #fff; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ki-preise summary::-webkit-details-marker { display: none; }
.ki-preise summary::after { content: '+'; font-size: 1.3rem; color: var(--ink-3); font-weight: 400; }
.ki-preise[open] summary::after { content: '−'; }
.ki-erklaerung {
  max-width: 760px; margin: clamp(34px, 4vw, 52px) auto 0;
}
.ki-erklaerung h3 { margin-top: 26px; }
.ki-erklaerung h3:first-child { margin-top: 0; }
.ki-erklaerung p {
  margin-top: 10px; color: var(--ink-2);
  font-size: 1.02rem; line-height: 1.62; text-wrap: pretty;
}

.ki-liste { border-top: 1px solid var(--line); }
.ki-zeile {
  display: flex; align-items: baseline; gap: 14px;
  padding: 11px 24px; border-bottom: 1px solid var(--line-2);
  font-size: .92rem;
}
.ki-zeile:last-child { border-bottom: 0; }
.ki-zeile .n { flex: 1; }
.ki-zeile .p { font-weight: 620; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ki-zeile.frei .p { color: var(--ok); }
.ki-hinweis { padding: 16px 24px; background: var(--bg-soft); font-size: .85rem; color: var(--ink-3); }

.gruender {
  display: grid; grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px); align-items: center;
}

.gruender-bild {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: var(--r-xl); overflow: hidden;
  background: radial-gradient(85% 70% at 50% 108%, rgba(37, 99, 235, .20) 0%, transparent 62%),
              linear-gradient(170deg, #EDF2FA 0%, #DFE8F5 100%);
  box-shadow: var(--shadow);
}
.gruender-bild img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%;
  filter: drop-shadow(0 12px 26px rgba(10, 14, 20, .16));
}
.gruender blockquote {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.5;
  letter-spacing: -.02em; color: var(--ink);
}
.gruender cite { display: block; margin-top: 18px; font-style: normal; color: var(--ink-3); font-size: .92rem; }

.einarbeitung-fuss {
  max-width: 680px; margin: clamp(30px, 3.4vw, 44px) auto 0;
  text-align: center; color: var(--ink-2);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.vita {
  display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px); align-items: start; margin-top: 46px;
}
.vita-bild { position: sticky; top: calc(var(--nav-h) + 28px); }
.vita-bild .bildrahmen { aspect-ratio: 2 / 3; }
.vita-bild .bildrahmen img { width: 100%; height: 100%; object-fit: cover; }
.vita-name { margin-top: 16px; font-weight: 620; font-size: 1.05rem; }
.vita-rolle { color: var(--ink-3); font-size: .92rem; }

#uebermich .abschnitt-kopf .lead strong { color: var(--ink); font-weight: 620; }

.vita-text h3 { margin-top: 30px; }
.vita-text h3:first-child { margin-top: 0; }
.vita-text p {
  margin-top: 10px; color: var(--ink-2);
  font-size: 1.02rem; line-height: 1.62; text-wrap: pretty; max-width: 62ch;
}
.vita-schluss {
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important; font-weight: 500;
}

@media (max-width: 860px) {
  .vita { grid-template-columns: 1fr; gap: 26px; }
  .vita-bild { position: static; max-width: 420px; }
}

.faq { margin-top: 40px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  padding: 20px 40px 20px 0; cursor: pointer; position: relative;
  font-weight: 560; font-size: 1.03rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 10px; height: 10px; margin-top: -6px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq .antwort { padding: 0 40px 22px 0; color: var(--ink-2); }
.faq .antwort p + p { margin-top: 12px; }

.kontakt { background: var(--bg-deep); color: #fff; }
.kontakt h2 { color: #fff; }
.kontakt .lead { color: rgba(255,255,255,.62); }
.kontakt-gitter {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px); align-items: start;
}
.kontakt-punkte { margin-top: 30px; display: grid; gap: 14px; padding: 0; list-style: none; }
.kontakt-punkte li { display: flex; gap: 11px; color: rgba(255,255,255,.74); font-size: .96rem; }
.kontakt-punkte svg { flex-shrink: 0; margin-top: 4px; color: #60A5FA; }

.formular {
  background: #fff; color: var(--ink);
  border-radius: var(--r-xl); padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-xl);
}
.feldpaar { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feld { display: grid; gap: 7px; margin-bottom: 14px; }
.feld label { font-size: .87rem; font-weight: 560; color: var(--ink-2); }
.feld input, .feld textarea, .feld select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; font-size: .96rem;
  transition: border-color .14s, box-shadow .14s;
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37,99,235,.14);
}
.feld textarea { resize: vertical; min-height: 96px; }
.feld-fehler input, .feld-fehler textarea { border-color: var(--no); }

.zustimmung.feld-fehler input { outline: 2px solid var(--no); outline-offset: 2px; }
.feld .fehler { font-size: .82rem; color: var(--no); }
.formular-freiwillig {
  margin: 2px 0 14px; font-size: .84rem; color: var(--ink-3);
}
.formular-fuss {
  margin-top: 12px; text-align: center;
  font-size: .84rem; color: var(--ink-3);
}

.zustimmung { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 18px; }
.zustimmung input { margin-top: 4px; width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--brand); }
.zustimmung label { font-size: .85rem; color: var(--ink-3); line-height: 1.5; }
.zustimmung a { color: var(--brand-deep); }

.honigtopf {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.formular-melden { margin-top: 14px; font-size: .9rem; display: none; }
.formular-melden.gut  { display: block; color: var(--ok); }
.formular-melden.boese{ display: block; color: var(--no); }

.fuss { background: var(--bg-deep); color: rgba(255,255,255,.56); padding-block: 56px 40px; }
.fuss-oben { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.fuss img { height: 40px; width: auto; opacity: .92; }
.fuss-links { display: flex; flex-wrap: wrap; gap: 26px; font-size: .92rem; }
.fuss-links a { color: rgba(255,255,255,.68); text-decoration: none; }
.fuss-links a:hover { color: #fff; }
.fuss-unten {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem;
}

.fuss-youtube { display: inline-flex; align-items: center; gap: 7px; }
.fuss-youtube svg { flex: 0 0 auto; opacity: .8; transition: opacity .16s; }
.fuss-youtube:hover svg { opacity: 1; }

.zeig { opacity: 0; transform: translateY(20px); }
.zeig.da {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .zeig { opacity: 1 !important; transform: none !important; }
  .szene { height: auto !important; }
  .szene-halt { position: static !important; height: auto !important; padding-block: 64px; }
  .szene-modul { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 1020px) {
  .funktion { grid-template-columns: 1fr; gap: 32px; }
  .funktion.gedreht .funktion-text,
  .funktion.gedreht .funktion-bild { order: 0; }
  .kontakt-gitter { grid-template-columns: 1fr; }
  .gruender { grid-template-columns: 1fr; }
  .gruender-bild { max-width: 240px; }
}

@media (max-width: 860px) {
  .fakten { grid-template-columns: repeat(2, 1fr); }
  .problem-buehne { grid-template-columns: 1fr; }
  .problem-pfeil svg { transform: rotate(90deg); width: 54px; }
  .problem-pfeil { transform: rotate(90deg); }
  .preis-gitter { grid-template-columns: 1fr; }
  .rollhinweis { display: block; }
  .szene { height: 260vh; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap, .wrap-w { padding-inline: 18px; }
  .feldpaar { grid-template-columns: 1fr; }
  .rechner-ergebnis { grid-template-columns: 1fr; }
  .hero-tasten .knopf { width: 100%; }
}

@media (max-width: 640px) {
  .hero .eyebrow { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 20px); }
}

.thema-schalter {
  display: flex; flex-wrap: wrap; gap: 12px 16px; row-gap: 14px;
  align-items: center; justify-content: center;
  margin: 34px 0 22px;
}
.thema-modus {
  display: inline-flex; padding: 4px; gap: 2px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 11px; box-shadow: var(--shadow-sm);
}
.thema-modus button {
  border: 0; background: transparent; cursor: pointer;
  padding: 7px 13px; border-radius: 8px;
  font-size: .86rem; font-weight: 540; color: var(--ink-3);
  transition: background .15s, color .15s;
}
.thema-modus button.an { background: var(--ink); color: #fff; }

.thema-farben { display: flex; flex-wrap: wrap; gap: 8px; }
.thema-farben button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 9px; cursor: pointer;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; font-size: .84rem; font-weight: 520;
  color: var(--ink-2);
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.thema-farben button span {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--tupfer);
  box-shadow: inset 0 0 0 1px rgba(10, 14, 20, .12);
}
.thema-farben button:hover { border-color: #CBD5E1; }
.thema-farben button.an {
  color: var(--ink); border-color: var(--tupfer);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tupfer) 18%, transparent);
}

.thema-bild { position: relative; }
.thema-bild img { width: 100%; height: auto; display: block; }

.thema-hinweis {
  position: absolute; transform: translateY(-50%);
  display: flex; align-items: center; gap: 8px;
  padding: 8px 11px 8px 9px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: 0 8px 26px rgba(10, 14, 20, .20);
  font-size: clamp(.66rem, .86vw, .82rem);
  line-height: 1.4; text-align: left; color: var(--ink-2);
  pointer-events: none;
}
.thema-hinweis[hidden] { display: none; }
.thema-hinweis svg { flex: 0 0 auto; color: var(--brand); }

.thema-hinweis--nav { left: 4.4%; top: 88%; max-width: min(19%, 230px); }

.thema-hinweis--kacheln { left: 44%; top: 71%; max-width: min(19%, 235px); }

@media (max-width: 700px) { .thema-hinweis { display: none; } }

@media (max-width: 860px) {
  .thema-schalter { gap: 10px 14px; }
  .thema-farben button { padding: 6px 11px 6px 8px; font-size: .82rem; }
}
@media (max-width: 560px) {
  
  .thema-schalter { flex-direction: column; align-items: center; }
  .thema-farben { justify-content: center; }
}

.lieben-gitter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px; margin-top: clamp(36px, 4vw, 52px);
}
.lieben-karte {
  flex: 0 1 calc(33.333% - 16px); min-width: 300px;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.lieben-karte:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.lieben-bild { aspect-ratio: 4 / 3; background: var(--bg-soft); overflow: hidden; }
.lieben-bild img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lieben-text { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.lieben-text h3 {
  font-size: 1.06rem; font-weight: 640; letter-spacing: -.015em;
  line-height: 1.3; color: var(--ink);
}

.lieben-wer {
  background-image: linear-gradient(96deg, var(--brand-dark), var(--brand-deep) 45%, var(--brand));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@supports not (background-clip: text) { .lieben-wer { color: var(--brand-deep); } }

.lieben-text .punkte { margin-top: 0; gap: 10px; }   
.lieben-text .punkte li { font-size: .88rem; line-height: 1.5; }

.lieben-karte--konter { background: var(--ink); border-color: var(--ink); }
.lieben-karte--konter .lieben-text h3 { color: #fff; }
.lieben-karte--konter .lieben-wer {
  background-image: linear-gradient(96deg, #7FA9FF, #C9DCFF);
}
@supports not (background-clip: text) { .lieben-karte--konter .lieben-wer { color: #9DBBFF; } }
.lieben-karte--konter .punkte li { color: rgba(255,255,255,.72); }
.lieben-karte--konter .punkte b { color: #fff; }
.lieben-karte--konter .punkte svg { color: #7FA9FF; }
.lieben-karte--konter .lieben-bild { background: rgba(255,255,255,.06); }

@media (max-width: 1080px) { .lieben-karte { flex-basis: calc(50% - 12px); } }
@media (max-width: 680px)  { .lieben-karte { flex-basis: 100%; } }

.bildband {
  position: relative; padding: 0;
  height: clamp(280px, 38vw, 520px); overflow: hidden;
}
.bildband img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.bildband::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 24, .74) 0%, rgba(8, 13, 24, .34) 46%, transparent 72%);
}
.bildband-text {
  position: relative; z-index: 1;
  height: 100%; display: flex; align-items: center;
}
.bildband-text p {
  max-width: 30ch; color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 620; letter-spacing: -.028em; line-height: 1.2;
  text-wrap: balance;
}

.bildband-marke {
  display: block; margin-bottom: 12px; line-height: 1;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255, 255, 255, .82);
}
.bildband-marke::before {
  content: ''; display: inline-block; vertical-align: middle;
  width: 22px; height: 2px; margin-right: 10px; margin-top: -2px;
  background: var(--brand); border-radius: 2px;
}

.bildband-text span {
  display: block; margin-top: 12px;
  font-size: clamp(.92rem, 1.2vw, 1.02rem); font-weight: 450;
  color: rgba(255, 255, 255, .72); letter-spacing: 0; line-height: 1.5;
}
@media (max-width: 700px) {
  .bildband::after { background: linear-gradient(180deg, rgba(8,13,24,.3) 0%, rgba(8,13,24,.78) 100%); }
  .bildband-text { align-items: flex-end; padding-bottom: 30px; }
}

.team-raster {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
  gap: 14px; margin-top: 44px;
}
.person {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .18s, box-shadow .22s var(--ease), transform .22s var(--ease);
}
.person:hover { border-color: #D2DCEA; box-shadow: var(--shadow); transform: translateY(-3px); }
.person-bild {
  aspect-ratio: 1 / 1; position: relative; overflow: hidden;
  background: radial-gradient(80% 70% at 50% 105%, rgba(37,99,235,.18) 0%, transparent 62%),
              linear-gradient(170deg, #EDF2FA 0%, #DFE8F5 100%);
}
.person-bild img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; }
.person.ki .person-bild {
  background: radial-gradient(80% 70% at 50% 105%, rgba(15,23,42,.22) 0%, transparent 62%),
              linear-gradient(170deg, #E7EBF2 0%, #D6DDE8 100%);
}
.person-text { padding: 16px 18px 20px; }
.person-name { font-weight: 620; letter-spacing: -.018em; }
.person-rolle {
  margin-top: 2px; font-size: .82rem; font-weight: 560;
  color: var(--brand-deep); text-transform: uppercase; letter-spacing: .035em;
}
.person.ki .person-rolle { color: var(--ink-3); }
.person p { margin-top: 9px; font-size: .89rem; color: var(--ink-3); line-height: 1.5; }
.person-marke {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(10, 14, 20, .74); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}

@media (min-width: 1000px) {
  .raster-3 { grid-template-columns: repeat(3, 1fr); }
}

.team-gruppe { margin: 40px 0 8px; }
.abteilung {
  display: flex; align-items: baseline; gap: 10px;
  margin: 40px 0 4px; font-size: 1.05rem; font-weight: 620;
  letter-spacing: -.015em;
}
.abteilung span {
  font-size: .78rem; font-weight: 600; color: var(--ink-4);
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 2px 9px;
}
.team-raster { margin-top: 14px; }
.bild-unterschrift {
  margin-top: 12px; font-size: .88rem; color: var(--ink-3);
  font-style: italic;
}

@media (max-width: 1180px) {
  .kopf-logo img { height: 36px; }
}

@media (max-width: 999px) {
  .kopf-nav { display: none; }
  .kopf-tasten .knopf-rand { display: none; }
  .kopf-menue { display: flex; order: 3; margin-left: 0; }
  .kopf-inhalt { gap: 12px; }
  .kopf-tasten { margin-left: auto; order: 2; gap: 0; }
  .kopf-logo { order: 1; }
  
  .kopf-logo img { height: clamp(22px, calc(17.8vw - 40px), 42px); }
  .handy-navi { display: block; }
}
@media (max-width: 430px) {
  .kopf-tasten .knopf-klein { height: 36px; padding-inline: 13px; font-size: .85rem; }
}

@media (max-width: 480px) {
  .kopf .wrap-w { padding-inline: 16px; }
  .kopf-inhalt { gap: 10px; }
}

@media (max-width: 359px) {
  .kopf .wrap-w { padding-inline: 12px; }
  .kopf-inhalt { gap: 8px; }
  .kopf-tasten .knopf-klein { padding-inline: 10px; font-size: .8rem; }
}
.kopf-menue, .kopf-tasten { flex-shrink: 0; }

body.recht { background: var(--bg-soft); }
.recht-wrap { max-width: 820px; margin-inline: auto; padding: calc(var(--nav-h) + 48px) 24px 96px; }
.recht-karte {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px); box-shadow: var(--shadow-sm);
}
.recht-kopf {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.recht-kopf h1 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
.recht-karte h2 {
  font-size: 1.12rem; font-weight: 620; margin-top: 34px; margin-bottom: 8px;
  letter-spacing: -.018em; scroll-margin-top: calc(var(--nav-h) + 20px);
}

.recht-karte .recht-kopf + h2 { margin-top: 0; }
.recht-karte h3 { font-size: 1rem; margin-top: 22px; margin-bottom: 6px; }
.recht-karte p, .recht-karte li { color: var(--ink-2); font-size: .97rem; }
.recht-karte p { margin-top: 10px; }
.recht-karte ul, .recht-karte ol { margin: 10px 0 0; padding-left: 22px; }
.recht-karte li { margin-top: 5px; }
.recht-karte a { color: var(--brand-deep); text-underline-offset: 2px; }
.recht-karte table { border-collapse: collapse; width: 100%; margin-top: 12px; font-size: .9rem; }
.recht-karte th, .recht-karte td { border: 1px solid var(--line); padding: 8px 11px; text-align: left; vertical-align: top; }
.recht-karte th { background: var(--bg-soft); font-weight: 580; }
.recht-meta {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .86rem; color: var(--ink-4);
}
.recht-zurueck {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .92rem; font-weight: 540; color: var(--ink-3); text-decoration: none;
}
.recht-zurueck:hover { color: var(--ink); }
