/* Pionier Ads, Design-System Meridian (Markenblatt 17.09.2026)
   Farben: Nacht #0D1512, Schiefer #16221C, Wiese #22A06B, Stein #8FA397, Weiß #EEF2EE
   Schrift: Manrope (Marke, Titel), Figtree (Fließtext). Selbst gehostet, kein Google-Aufruf.
   Hausregeln: keine Versalien, keine Rahmen, Text linksbündig, Bewegung nur auf Nutzeraktion. */

@font-face { font-family: "Manrope"; src: url("/assets/fonts/Manrope-latin.woff2") format("woff2"); font-weight: 500 800; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("/assets/fonts/Figtree-latin.woff2") format("woff2"); font-weight: 400 600; font-display: swap; }

:root {
  --nacht: #0d1512;
  --schiefer: #16221c;
  --schiefer-hell: #1e2d25;
  --wiese: #22a06b;
  --wiese-hell: #3dc487;
  --stein: #8fa397;
  --weiss: #eef2ee;
  --papier: #f5f7f3;
  --text-hell: #2a3a31;
  --text-hell-2: #56675d;
  --titel: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --text: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --radius: 20px;
  --radius-klein: 10px;
  --schatten: 0 1px 2px rgba(13,21,18,0.05), 0 18px 40px -20px rgba(13,21,18,0.22);
  --uebergang: .32s cubic-bezier(.16,1,.3,1);
  --breite: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; background: var(--papier); color: var(--nacht); font-family: var(--text); font-size: 18px; line-height: 1.55; text-align: left; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wiese); text-decoration: none; }
a:hover { color: var(--nacht); }
h1, h2, h3, h4 { font-family: var(--titel); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--text-hell-2); max-width: 640px; }
.dunkel .lead { color: var(--stein); }
strong { font-weight: 600; }
:focus-visible { outline: 3px solid var(--wiese); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Raster */
.wrap { width: min(var(--breite), calc(100% - 40px)); margin: 0 auto; }
.abschnitt { padding: clamp(72px, 9vw, 128px) 0; }
.abschnitt-kopf { display: flex; flex-direction: column; gap: 18px; max-width: 820px; margin-bottom: clamp(40px, 5vw, 64px); }
.raster-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.raster-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.raster-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 960px) { .raster-3, .raster-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .raster-2, .raster-3, .raster-4 { grid-template-columns: 1fr; } }

/* Flächen: hell ist Standard, .dunkel ist die Ausnahme für Hero-Karten und den Abschluss */
.hell { background: #ffffff; color: var(--nacht); }
.dunkel { background: var(--nacht); color: var(--weiss); }
.dunkel h1, .dunkel h2, .dunkel h3 { color: var(--weiss); }
.dunkel p { color: var(--stein); }
.dunkel a { color: var(--wiese-hell); } .dunkel a:hover { color: var(--weiss); }
.karte { background: #ffffff; border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--schatten); }
.dunkel .karte { background: var(--schiefer); box-shadow: none; }
.karte h3 { margin-top: 4px; }
.karte p { color: var(--text-hell-2); font-size: 17px; }
.dunkel .karte p { color: var(--stein); }
.zaehler { font-family: var(--titel); font-weight: 700; font-size: 15px; color: var(--wiese); letter-spacing: 0; }
.dunkel .zaehler { color: var(--wiese-hell); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--text); font-weight: 600; font-size: 17px; line-height: 1; padding: 17px 26px; border-radius: var(--radius-klein); border: 0; cursor: pointer; transition: transform var(--uebergang), background var(--uebergang), color var(--uebergang); min-height: 48px; }
.btn:hover { transform: translateY(-1px); }
.btn-primaer { background: var(--wiese); color: var(--nacht); }
.btn-primaer:hover { background: var(--wiese-hell); color: var(--nacht); }
.btn-dunkel { background: var(--nacht); color: var(--weiss); }
.btn-dunkel:hover { background: var(--schiefer-hell); color: var(--weiss); }
.btn-hell { background: var(--weiss); color: var(--nacht); }
.btn-hell:hover { background: #ffffff; color: var(--nacht); }
.btn-leise { background: transparent; color: var(--nacht); padding-left: 8px; padding-right: 8px; }
.dunkel .btn-leise { color: var(--weiss); }
.btn svg { width: 18px; height: 18px; }
.cta-zeile { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-hinweis { font-size: 16px; color: var(--text-hell-2); }
.dunkel .cta-hinweis { color: var(--stein); }

/* Header */
.kopf { position: sticky; top: 0; z-index: 50; background: rgba(245,247,243,0.88); box-shadow: 0 1px 0 rgba(13,21,18,0.06); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.kopf-innen { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.marke { display: inline-flex; align-items: center; gap: 10px; font-family: var(--titel); font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: var(--nacht); white-space: nowrap; }
.marke:hover { color: var(--nacht); }
.fuss .marke, .fuss .marke:hover { color: var(--weiss); }
.marke svg { width: 30px; height: 30px; flex: none; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--nacht); font-size: 16px; font-weight: 500; white-space: nowrap; }
.nav a:hover { color: var(--wiese); }
.nav .btn { padding: 12px 18px; font-size: 15px; min-height: 44px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--nacht); padding: 10px; cursor: pointer; min-width: 44px; min-height: 44px; }
/* Untermenü */
.nav-gruppe { position: relative; display: flex; align-items: center; gap: 4px; }
.nav-pfeil { background: none; border: 0; color: var(--text-hell-2); padding: 6px; cursor: pointer; display: inline-flex; min-width: 28px; min-height: 28px; align-items: center; justify-content: center; }
.untermenu { display: none; position: absolute; top: calc(100% + 14px); left: -16px; min-width: 300px; background: #ffffff; border-radius: 14px; padding: 10px; box-shadow: var(--schatten); flex-direction: column; gap: 2px; }
.untermenu a { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: 10px; color: var(--nacht); }
.untermenu a:hover { background: rgba(34,160,107,0.12); color: var(--nacht); }
.untermenu b { font-family: var(--titel); font-weight: 700; font-size: 16px; }
.untermenu span { font-size: 14px; color: var(--text-hell-2); }
.nav-gruppe:hover .untermenu, .nav-gruppe.offen .untermenu, .nav-gruppe:focus-within .untermenu { display: flex; }
.nav-gruppe::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
@media (max-width: 820px) {
  .nav-gruppe { flex-wrap: wrap; width: 100%; }
  .untermenu { position: static; width: 100%; min-width: 0; padding: 4px 0 4px 12px; background: transparent; box-shadow: none; }
  .nav-gruppe:hover .untermenu { display: none; }
  .nav-gruppe.offen .untermenu, .nav-gruppe:focus-within .untermenu { display: flex; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #ffffff; flex-direction: column; align-items: flex-start; padding: 20px 20px 28px; gap: 18px; box-shadow: var(--schatten); }
  .nav.offen { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* Hero */
.hero { padding: clamp(64px, 8vw, 120px) 0 clamp(56px, 7vw, 96px); }
.hero-innen { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .hero-innen { grid-template-columns: 1fr; } }
.hero-text { display: flex; flex-direction: column; gap: 26px; }
.hero-bild { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); aspect-ratio: 4 / 5; background: #ffffff; }
.hero-bild img { width: 100%; height: 100%; object-fit: cover; }
.akzent { color: var(--wiese); }
.dunkel .akzent { color: var(--wiese-hell); }

/* Kennzahlen */
.kennzahlen { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 12px; }
@media (max-width: 900px) { .kennzahlen { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.kennzahl { background: #ffffff; box-shadow: var(--schatten); border-radius: var(--radius); padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 8px; }
.kennzahl b { font-family: var(--titel); font-weight: 800; font-size: clamp(30px, 3vw, 40px); letter-spacing: -0.03em; color: var(--wiese); line-height: 1; }
.kennzahl span { font-size: 15px; color: var(--text-hell-2); line-height: 1.4; }
.dunkel .kennzahl { background: var(--schiefer); box-shadow: none; }
.dunkel .kennzahl b { color: var(--wiese-hell); }
.dunkel .kennzahl span { color: var(--stein); }
.fussnote { font-size: 14px; color: var(--text-hell-2); margin-top: 16px; }
.dunkel .fussnote { color: var(--stein); }

/* Nischen-Kacheln */
.nische { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 40px; border-radius: var(--radius); background: var(--nacht); min-height: 340px; transition: transform var(--uebergang); color: var(--weiss); }
.nische:hover { transform: translateY(-3px); color: var(--weiss); }
.nische .zaehler { color: var(--wiese-hell); }
.nische h3 { font-size: clamp(26px, 2.6vw, 34px); color: var(--weiss); }
.nische p { color: var(--stein); }
.nische .weiter { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--weiss); }
.nische .weiter svg { width: 18px; height: 18px; }
.nische-leise { background: #ffffff; box-shadow: var(--schatten); color: var(--nacht); }
.nische-leise h3 { color: var(--nacht); }
.nische-leise p { color: var(--text-hell-2); }
.nische-leise .weiter, .nische-leise:hover { color: var(--nacht); }

/* Schritte (Leistung) */
.schritt { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; padding: clamp(28px, 4vw, 56px) 0; }
.schritt + .schritt { box-shadow: inset 0 1px 0 rgba(13,21,18,0.08); }
@media (max-width: 860px) { .schritt { grid-template-columns: 1fr; } .schritt.umgekehrt .schritt-bild { order: -1; } }
.schritt.umgekehrt .schritt-text { order: 2; }
.schritt-text { display: flex; flex-direction: column; gap: 16px; }
.schritt-text p { font-size: 18px; color: var(--text-hell); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.tags span { font-size: 15px; font-weight: 500; padding: 8px 14px; border-radius: 999px; background: rgba(34,160,107,0.12); color: #17754d; }
.schritt-bild { border-radius: var(--radius); overflow: hidden; background: #ffffff; box-shadow: var(--schatten); min-height: 300px; display: flex; align-items: center; justify-content: center; padding: 28px; }

/* Mock-Bausteine (kein Foto nötig) */
.mock { width: 100%; max-width: 420px; background: var(--nacht); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 14px; color: var(--weiss); box-shadow: var(--schatten); }
.mock-zeile { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 15px; color: var(--stein); }
.mock-balken { height: 10px; border-radius: 999px; background: var(--schiefer-hell); overflow: hidden; }
.mock-balken i { display: block; height: 100%; background: var(--wiese); border-radius: 999px; }
.mock-kachel { background: var(--schiefer); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.mock-kachel b { font-family: var(--titel); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--wiese-hell); }
.mock-kachel span { font-size: 14px; color: var(--stein); }
.mock-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 8px 12px; border-radius: 999px; background: rgba(34,160,107,0.16); color: var(--wiese-hell); width: fit-content; }
.mock-punkt { width: 10px; height: 10px; border-radius: 50%; background: var(--wiese); flex: none; }
.mock-lead { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center; background: var(--schiefer); border-radius: 12px; padding: 12px 14px; }
.mock-lead .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--wiese); color: var(--nacht); font-family: var(--titel); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.mock-lead b { font-size: 15px; display: block; }
.mock-lead small { font-size: 13px; color: var(--stein); }
.mock-phone { width: 250px; aspect-ratio: 9 / 18; border-radius: 34px; background: var(--nacht); box-shadow: 0 0 0 8px var(--schiefer-hell), var(--schatten); padding: 18px 14px; display: flex; flex-direction: column; gap: 12px; }
.mock-phone .story { flex: 1; border-radius: 20px; background: linear-gradient(160deg, #1e2d25, #0d1512); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; gap: 8px; }
.mock-phone .story b { font-family: var(--titel); font-size: 18px; line-height: 1.15; }
.mock-phone .story span { font-size: 13px; color: var(--stein); }
.mock-phone .story .btn { padding: 12px 16px; font-size: 14px; min-height: 40px; }

/* Referenzen */
.referenz { display: flex; flex-direction: column; gap: 0; background: #ffffff; box-shadow: var(--schatten); border-radius: var(--radius); overflow: hidden; color: var(--nacht); transition: transform var(--uebergang); }
.referenz:hover { transform: translateY(-3px); color: var(--nacht); }
.referenz img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.referenz-text { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 8px; }
.referenz-text small { font-size: 14px; color: var(--text-hell-2); }
.referenz-text h3 { font-size: 24px; }
.referenz-text p { font-size: 16px; color: var(--text-hell-2); }
.referenz-text .stand { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--wiese); }

/* Punkte-Liste (ohne Häkchen) */
.punkte { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
@media (max-width: 900px) { .punkte { grid-template-columns: 1fr; } }
.punkt { display: flex; flex-direction: column; gap: 10px; }
.punkt h3 { font-size: 22px; }
.punkt p { color: var(--text-hell-2); font-size: 17px; }

/* Funnel */
.funnel { background: #ffffff; box-shadow: var(--schatten); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); max-width: 760px; }
.funnel-fortschritt { height: 6px; border-radius: 999px; background: rgba(13,21,18,0.08); overflow: hidden; margin-bottom: 28px; }
.funnel-fortschritt i { display: block; height: 100%; background: var(--wiese); border-radius: 999px; transition: width var(--uebergang); }
.funnel-schritt { display: none; flex-direction: column; gap: 20px; }
.funnel-schritt.aktiv { display: flex; }
.funnel-schritt h3 { font-size: clamp(22px, 2.4vw, 28px); }
.optionen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 600px) { .optionen { grid-template-columns: 1fr; } }
.option { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: var(--radius-klein); background: var(--papier); cursor: pointer; font-size: 17px; font-weight: 500; transition: background var(--uebergang); min-height: 56px; }
.option:hover { background: rgba(34,160,107,0.12); }
.option input { appearance: none; width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--stein); flex: none; margin: 0; }
.option input:checked { background: var(--wiese); box-shadow: inset 0 0 0 5px #ffffff; }
.feld { display: flex; flex-direction: column; gap: 8px; }
.feld label { font-size: 15px; font-weight: 600; }
.feld input, .feld select, .feld textarea { font: inherit; font-size: 17px; padding: 14px 16px; border-radius: var(--radius-klein); border: 0; background: var(--papier); color: var(--nacht); min-height: 52px; width: 100%; }
.feld textarea { min-height: 120px; resize: vertical; }
.feld-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 600px) { .feld-2 { grid-template-columns: 1fr; } }
.einwilligung { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-hell-2); }
.einwilligung input { width: 22px; height: 22px; flex: none; margin-top: 2px; accent-color: var(--wiese); }
.funnel-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 8px; }
.funnel-nav [data-weiter] { margin-left: auto; }
.funnel-fehler { display: none; font-size: 15px; color: #a83a2a; }
.funnel-fehler.sichtbar { display: block; }
.honig { position: absolute; left: -9999px; }
.funnel-danke { display: none; flex-direction: column; gap: 16px; }
.funnel-danke.aktiv { display: flex; }
.kalender { width: 100%; min-height: 680px; border: 0; border-radius: var(--radius-klein); background: #ffffff; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq details { background: #ffffff; box-shadow: var(--schatten); border-radius: var(--radius-klein); padding: 6px 22px; }
.faq summary { cursor: pointer; font-family: var(--titel); font-weight: 700; font-size: 18px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--wiese); flex: none; }
.faq details[open] summary::after { content: "×"; }
.faq details p { padding: 0 0 20px; color: var(--text-hell); font-size: 17px; }

/* Abschluss-CTA (alt, ungenutzt) */
.cta-block { background: var(--wiese); color: var(--nacht); border-radius: var(--radius); padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; gap: 22px; }
.cta-block h2 { color: var(--nacht); }
.cta-block p { color: #0d1512; opacity: .8; font-size: 19px; max-width: 640px; }

/* Footer */
.fuss { background: var(--nacht); color: var(--stein); padding: 64px 0 40px; }
.fuss-innen { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .fuss-innen { grid-template-columns: 1fr; } }
.fuss p { font-size: 15px; max-width: 420px; }
.fuss h4 { font-size: 15px; color: var(--weiss); margin-bottom: 14px; letter-spacing: 0; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fuss a { color: var(--stein); font-size: 15px; }
.fuss a:hover { color: var(--weiss); }
.fuss p { color: var(--stein); }
.fuss-unten { margin-top: 48px; font-size: 14px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* Rechtsseiten */
.recht { max-width: 800px; display: flex; flex-direction: column; gap: 18px; }
.recht h2 { font-size: 26px; margin-top: 24px; }
.recht h3 { font-size: 20px; margin-top: 8px; }
.recht p, .recht li { color: var(--text-hell); font-size: 17px; }
.recht ul { padding-left: 20px; }


/* Globaler Erstgespräch-Block vor dem Footer */
.gcta { position: relative; overflow: hidden; background: var(--nacht); color: var(--weiss); padding: clamp(88px, 11vw, 150px) 0; }
.gcta::before { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; top: -280px; right: -160px; background: radial-gradient(circle, rgba(34,160,107,0.42), transparent 62%); filter: blur(12px); animation: drift 26s ease-in-out infinite alternate; pointer-events: none; }
.gcta::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; bottom: -260px; left: -120px; background: radial-gradient(circle, rgba(61,196,135,0.22), transparent 64%); filter: blur(14px); animation: drift 32s ease-in-out infinite alternate-reverse; pointer-events: none; }
.gcta-innen { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 22px; max-width: 760px; }
.gcta h2 { color: var(--weiss); font-size: clamp(36px, 4.6vw, 60px); }
.gcta p { color: var(--stein); font-size: clamp(18px, 1.5vw, 21px); max-width: 640px; }
.gcta .akzent { color: var(--wiese-hell); }
.gcta .btn { align-self: flex-start; }
@keyframes drift { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(70px, -50px) scale(1.12); } 100% { transform: translate(-50px, 40px) scale(1); } }

/* Hero: leuchtender Hintergrund und gestaffelter Einstieg */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 900px; height: 900px; border-radius: 50%; top: -420px; right: -220px; background: radial-gradient(circle, rgba(34,160,107,0.16), transparent 62%); filter: blur(10px); animation: drift 30s ease-in-out infinite alternate; pointer-events: none; }
.hero .wrap { position: relative; z-index: 1; }
.hero-text > * { animation: einstieg .7s cubic-bezier(.16,1,.3,1) both; }
.hero-text > :nth-child(1) { animation-delay: .05s; }
.hero-text > :nth-child(2) { animation-delay: .18s; }
.hero-text > :nth-child(3) { animation-delay: .3s; }
.hero-bild { animation: einstieg .8s cubic-bezier(.16,1,.3,1) .28s both; }
@keyframes einstieg { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Scroll-Reveal: Elemente mit data-reveal kommen einmal beim ersten Sichtkontakt */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].sichtbar { opacity: 1; transform: none; }
[data-reveal-gruppe] > * { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal-gruppe].sichtbar > * { opacity: 1; transform: none; }
[data-reveal-gruppe].sichtbar > :nth-child(2) { transition-delay: .08s; }
[data-reveal-gruppe].sichtbar > :nth-child(3) { transition-delay: .16s; }
[data-reveal-gruppe].sichtbar > :nth-child(4) { transition-delay: .24s; }
[data-reveal-gruppe].sichtbar > :nth-child(5) { transition-delay: .32s; }

/* Mock-Balken wachsen, wenn sie ins Bild kommen */
.mock-balken i { transform-origin: left; transform: scaleX(0); transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.sichtbar .mock-balken i, .hero .mock-balken i { transform: scaleX(1); }
.hero .mock-balken i { animation: wachsen 1.2s cubic-bezier(.16,1,.3,1) .5s both; }
@keyframes wachsen { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Lesefortschritt unter dem Header */
.kopf-fortschritt { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--wiese); transition: width .1s linear; }

/* Karten und Referenzen heben sich beim Zeigen */
.karte, .nische, .referenz, .kennzahl { transition: transform var(--uebergang), box-shadow var(--uebergang); }
.karte:hover, .kennzahl:hover { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-gruppe] > * { opacity: 1; transform: none; }
  .mock-balken i { transform: none; }
  .hero::before, .gcta::before, .gcta::after { animation: none; }
}
