/* =========================================================
   Mein Kind sicher im Netz · Design-System
   Farben, Typografie, Layout, Komponenten
   ========================================================= */
@import url('../fonts/fonts.css');

:root {
  --night: #0B1220;
  --night-2: #141C2E;
  --glow: #5AD8FF;
  --glow-dim: #2FA8D0;
  --glow-deep: #1A6B87;      /* blaue Schrift auf Hell (5,51 : 1) */
  --red: #E63946;
  --red-dark: #B92A36;
  --red-on-dark: #EA5560;    /* roter Text auf Night (5,32 : 1) */
  --green: #2E7D5B;
  --green-dark: #22604A;
  --green-on-dark: #3F9E72;  /* grüner Text auf Night (5,66 : 1) */
  --paper: #F7F5F0;
  --paper-2: #EEEBE3;
  --ink: #151A26;
  --ink-2: #4A5060;
  --line: #DAD6CC;
  --white: #FFFFFF;

  /* Akzentstufen je Untergrund (Markenhandbuch Kap. 3). Standard = heller Grund;
     .on-night und .on-color am Abschnitt schalten die Stufe um. */
  --acc-red: var(--red-dark);
  --acc-green: var(--green-dark);
  --acc-glow: var(--glow-deep);

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1120px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(11, 18, 32, .10);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
.on-night { --acc-red: var(--red-on-dark); --acc-green: var(--green-on-dark); --acc-glow: var(--glow); }
.on-color { --acc-red: #fff; --acc-green: #fff; --acc-glow: #fff; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
/* Inline-Icons ohne eigene Regel bleiben klein (Browser-Standard wäre 300×150 px) */
svg:not([width]):not([height]) { width: 1.25em; height: 1.25em; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--glow); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--night); color: #fff; padding: 8px 14px; border-radius: var(--radius); z-index: 100; }
.skip-link:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -.015em; margin: 0 0 .5em; font-weight: 800; text-wrap: balance; }
blockquote { text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1em; text-wrap: pretty; }
li, dd { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-2); max-width: 60ch; }
.eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9em; text-wrap: balance; }
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 3px; background: currentColor; vertical-align: middle; margin-right: 10px; border-radius: 2px; }
/* Bedeutung im Klassennamen, Stufe aus dem Untergrund (--acc-*, siehe :root / .on-night / .on-color) */
.eyebrow.red { color: var(--acc-red); }
.eyebrow.green { color: var(--acc-green); }
.eyebrow.glow { color: var(--acc-glow); }
strong { font-weight: 700; }
.muted { color: var(--ink-2); }
.small { font-size: .9rem; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-bottom: .4em; }
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.dark { background: var(--night); color: #fff; }
.dark .lead, .dark .muted { color: rgba(255,255,255,.72); }
.dark a { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  padding: .95em 1.6em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.1; text-wrap: balance;
  transition: transform .15s var(--ease), background .15s, color .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red-dark); color: #fff; box-shadow: 0 8px 24px rgba(185,42,54,.35); }
.btn-primary:hover { background: var(--red); }
.btn-glow { background: var(--glow); color: var(--night); box-shadow: 0 8px 24px rgba(90,216,255,.30); }
.btn-glow:hover { background: var(--glow); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.dark .btn-outline, .hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.dark .btn-outline:hover, .hero .btn-outline:hover { background: #fff; color: var(--night); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-lg { font-size: 1.15rem; padding: 1.1em 2em; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.cta-band .btn-outline:hover { background: #fff; color: var(--green-dark); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,18,32,.92); backdrop-filter: blur(10px); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; }
.brand img { height: 40px; width: auto; display: block; }   /* Wortmarke „Zeitungskopf“, 931×128, ergibt 291 px Breite */
@media (max-width: 420px) { .brand img { height: 34px; } }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { text-decoration: none; font-weight: 600; font-size: .95rem; opacity: .85; padding: .65rem 0; }   /* Klickfläche ≥ 44 px */
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav .btn { font-size: .95rem; padding: .8em 1.2em; opacity: 1; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; width: 44px; height: 44px; padding: 0; place-items: center; cursor: pointer; }
.nav-toggle svg { width: 28px; height: 28px; }
@media (max-width: 820px) {
  .nav-toggle { display: grid; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 72px; flex-direction: column; align-items: stretch; gap: 0; background: var(--night); border-bottom: 1px solid rgba(255,255,255,.1); padding: .6rem 1.25rem 1.2rem; }
  .nav.open { display: flex; }
  .nav a { padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav .btn { margin-top: .9rem; border: 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--night); color: #fff; padding: clamp(3.5rem, 9vw, 7.5rem) 0 clamp(3rem, 7vw, 6rem); }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 78% 62%, rgba(90,216,255,.28), transparent 70%),
    radial-gradient(40% 40% at 88% 90%, rgba(90,216,255,.18), transparent 70%),
    radial-gradient(70% 60% at 10% 0%, rgba(230,57,70,.10), transparent 70%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--red); }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-bottom: 1.4rem; }
.hero-trust { display: flex; gap: .7rem; align-items: center; color: rgba(255,255,255,.7); font-size: .95rem; }
.hero-trust svg { width: 22px; height: 22px; flex: none; color: var(--glow); }
.badge-date {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: .5rem 1rem .5rem .6rem; font-size: .9rem; margin-bottom: 1.6rem;
}
.badge-date .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--glow); box-shadow: 0 0 0 4px rgba(90,216,255,.25); }
.badge-date strong { font-family: var(--font-display); }
.badge-date .sep { opacity: .5; }

/* Foto-Slot: hier später das lizenzierte Bild einsetzen (siehe README) */
.hero-visual { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--night); box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero-visual figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem; font-size: .8rem; color: rgba(255,255,255,.55); background: linear-gradient(transparent, rgba(0,0,0,.6)); }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16 / 10; max-height: 340px; order: -1; }
}
/* Desktop-Overlay (ab 861 px): Querformat-Foto als Hintergrund hinter dem Text, links abgedunkelt.
   Auf dem Handy bleibt die Bildkachel über dem Text (Regeln oben), dort greift nichts davon. */
@media (min-width: 861px) {
  .hero.hero-overlay { min-height: 82vh; display: flex; align-items: center; }
  .hero.hero-overlay .container { position: static; display: block; }
  .hero.hero-overlay .container > div:first-child { position: relative; z-index: 2; max-width: 720px; }
  .hero.hero-overlay .hero-visual { position: absolute; inset: 0; margin: 0; z-index: 0; aspect-ratio: auto; border-radius: 0; box-shadow: none; background: none; }
  .hero.hero-overlay .hero-visual img { object-position: 50% 50%; }
  .hero.hero-overlay::before { z-index: 1; background: linear-gradient(90deg, rgba(11,18,32,.86) 0%, rgba(11,18,32,.40) 45%, rgba(11,18,32,0) 100%), linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,.35) 100%); }
}

/* ---------- Karten ---------- */
.card { background: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 6px 20px rgba(11,18,32,.06); }
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card.mark-red { border-top: 5px solid var(--red); }
.card.mark-green { border-top: 5px solid var(--green); }
.card.mark-glow { border-top: 5px solid var(--glow); }
.dark .card { background: var(--night-2); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,.08); }
.card .num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--red); margin-bottom: .3em; }
.card .pflaster { margin-top: 1rem; padding-top: .9rem; border-top: 1px dashed var(--line); font-size: .95rem; color: var(--green-dark); }
.card .pflaster::before { content: '→ '; font-weight: 700; }

/* ---------- Wunde: Statements ---------- */
.wunde { background: var(--paper); }
.statements { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.statement { background: #fff; border-radius: var(--radius); padding: 1.6rem; border-left: 5px solid var(--red); }
.statement h3 { margin-bottom: .4em; }
.statement p { margin-bottom: 0; color: var(--ink-2); }
.stats { margin-top: 2.5rem; display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.stat { padding: 1.4rem 1.6rem; border-radius: var(--radius); background: var(--night); color: #fff; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--glow); }
.stat p { margin: .4rem 0 0; color: rgba(255,255,255,.8); font-size: .95rem; }
.stat cite { display: block; margin-top: .6rem; font-size: .75rem; font-style: normal; color: rgba(255,255,255,.5); }
.stat cite a { color: inherit; display: inline-block; padding: .7rem 0; }

/* ---------- Selbsttest ---------- */
.test { background: var(--night); color: #fff; }
.test-list { display: grid; gap: .8rem; counter-reset: q; max-width: 760px; }
.test-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; background: var(--night-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.test-item p { margin: 0; font-weight: 600; }
.test-item p::before { counter-increment: q; content: counter(q) '. '; color: var(--glow); font-family: var(--font-display); }
.test-answers { display: flex; gap: .5rem; }
.test-answers button { font: inherit; font-weight: 700; padding: .55em 1em; border-radius: 999px; border: 2px solid rgba(255,255,255,.3); background: transparent; color: #fff; cursor: pointer; }
.test-answers button:hover { border-color: #fff; }
.test-answers button[aria-pressed="true"] { background: #fff; color: var(--night); border-color: #fff; }
.test-answers button[data-value="nein"][aria-pressed="true"] { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.test-result { margin-top: 1.5rem; padding: 1.4rem 1.6rem; border-radius: var(--radius); background: rgba(230,57,70,.12); border: 1px solid rgba(230,57,70,.4); max-width: 760px; }
.test-result[hidden] { display: none; }
.test-result p { margin: 0 0 1rem; }
.test-result p:last-child { margin: 0; }
@media (max-width: 560px) { .test-item { grid-template-columns: 1fr; } }

/* ---------- Kernsatz ---------- */
.kernsatz { background: var(--red); color: #fff; padding: clamp(3rem, 7vw, 5.5rem) 0; }
.kernsatz blockquote { margin: 0; max-width: 20ch; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -.02em; }
.kernsatz p { margin: 1.4rem 0 0; max-width: 40ch; font-size: 1.5rem; line-height: 1.35; opacity: .92; }   /* rote Vollfläche: nichts unter 24 px (Kap. 3) */

/* ---------- Ablauf ---------- */
.ablauf { background: var(--paper-2); }
.timeline { display: grid; gap: 1.2rem; }
.tl-item { display: grid; grid-template-columns: 110px 1fr; gap: 1.2rem; background: #fff; border-radius: var(--radius); padding: 1.4rem 1.6rem; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; border-radius: var(--radius) 0 0 var(--radius); background: var(--red); }
.tl-item.green::before { background: var(--green); }
.tl-item.glow::before { background: var(--glow); }
.tl-item.neutral::before { background: var(--ink-2); }
.tl-time { font-family: var(--font-display); font-weight: 700; color: var(--ink-2); font-size: .95rem; padding-top: .2rem; }
.tl-item h3 { margin-bottom: .3em; }
.tl-item p { margin: 0; color: var(--ink-2); }
.tl-item ul { margin: .6rem 0 0; padding-left: 1.2rem; color: var(--ink-2); }
.tl-item li { margin-bottom: .25rem; }
.chip { display: inline-block; font-size: .8rem; font-weight: 700; padding: .25em .7em; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); margin-left: .4rem; vertical-align: middle; }
@media (max-width: 600px) { .tl-item { grid-template-columns: 1fr; gap: .3rem; } }

/* ---------- Personen ---------- */
.persons { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }   /* 2 Spalten ab 822 px Container, sonst 1 */
.person { display: grid; grid-template-columns: 96px 1fr; gap: 1.2rem; align-items: start; }
.person-photo { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--night), var(--night-2)); color: var(--glow); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person h3 { margin-bottom: .15em; }
.person .role { color: var(--ink-2); font-weight: 600; font-size: .95rem; margin-bottom: .6rem; }
.person p { font-size: .98rem; color: var(--ink-2); }
.person.lead-person { grid-column: 1 / -1; grid-template-columns: 140px 1fr; }
.person.lead-person .person-photo { width: 140px; height: 140px; font-size: 2.2rem; }
@media (max-width: 560px) { .person, .person.lead-person { grid-template-columns: 1fr; } }

/* ---------- Anmeldung ---------- */
.anmeldung { background: var(--night); color: #fff; }
.anmeldung .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.anmeldung h2 { color: #fff; }
.form-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.3rem; margin-bottom: .2em; }
.form-card .termin { display: flex; align-items: center; gap: .7rem; background: var(--paper); border-radius: var(--radius); padding: .9rem 1rem; margin: 1rem 0 1.2rem; font-weight: 600; }
.form-card .termin svg { width: 22px; height: 22px; color: var(--red); flex: none; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .35rem; }
.field input[type="text"], .field input[type="email"], .field select, .field textarea {
  width: 100%; font: inherit; padding: .8em 1em; border: 2px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--night); outline: 3px solid var(--glow); outline-offset: 3px; }
.field.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.field.check input { margin-top: .3em; width: 18px; height: 18px; flex: none; }
.field.check label { font-weight: 500; margin: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-2); margin: .9rem 0 0; }
.form-msg { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: var(--radius); font-weight: 600; }
.form-msg[hidden] { display: none; }
.form-msg.ok { background: rgba(46,125,91,.12); color: var(--green-dark); border: 1px solid rgba(46,125,91,.4); }
.form-msg.err { background: rgba(230,57,70,.10); color: var(--red-dark); border: 1px solid rgba(230,57,70,.4); }
.promise { display: grid; gap: .9rem; margin-top: 1.6rem; }
.promise li { display: grid; grid-template-columns: 28px 1fr; gap: .8rem; align-items: start; list-style: none; color: rgba(255,255,255,.85); }
.promise ul { padding: 0; margin: 0; }
.promise svg { width: 26px; height: 26px; color: var(--glow); }
.anmeldung ul.promise { padding: 0; margin: 1.6rem 0 0; }
@media (max-width: 860px) { .anmeldung .container { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq details { background: #fff; border-radius: var(--radius); padding: 0 1.4rem; margin-bottom: .7rem; border: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--red); flex: none; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 0 0 1.1rem; color: var(--ink-2); }

/* ---------- Copy-Vorlagen (Multiplikatoren) ---------- */
.vorlage { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; }
.vorlage-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .9rem 1.2rem; background: var(--paper-2); }
.vorlage-head h3 { margin: 0; font-size: 1.05rem; }
.vorlage pre { margin: 0; padding: 1.2rem; white-space: pre-wrap; font: inherit; font-size: .95rem; line-height: 1.55; color: var(--ink-2); max-height: 320px; overflow: auto; }
.btn-copy { font: inherit; font-weight: 700; font-size: .85rem; padding: .5em .9em; border-radius: 999px; border: 2px solid var(--night); background: var(--night); color: #fff; cursor: pointer; white-space: nowrap; }
.btn-copy.done { background: var(--green); border-color: var(--green); }

/* ---------- Download-Kacheln ---------- */
.dl { display: flex; gap: 1rem; align-items: center; background: #fff; border-radius: var(--radius); padding: 1.2rem 1.3rem; border: 1px solid var(--line); text-decoration: none; }
.dl .icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--paper-2); display: grid; place-items: center; color: var(--night); flex: none; }
.dl .icon svg { width: 24px; height: 24px; }
.dl strong { display: block; font-family: var(--font-display); }
.dl span { font-size: .9rem; color: var(--ink-2); }
.dl.soon { opacity: .75; }
.dl.soon .tag { font-size: .75rem; font-weight: 700; color: var(--red-dark); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Schritte ---------- */
.steps { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); counter-reset: s; }
.step { background: #fff; border-radius: var(--radius); padding: 1.6rem; position: relative; }
.step::before { counter-increment: s; content: counter(s); font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--red); line-height: 1; display: block; margin-bottom: .5rem; }
.step h3 { margin-bottom: .3em; }
.step p { margin: 0; color: var(--ink-2); }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--green); color: #fff; padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.cta-band .container { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { margin-bottom: .2em; }
.cta-band p { margin: 0; opacity: .92; }
@media (max-width: 720px) { .cta-band .container { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: rgba(255,255,255,.8); padding: 3.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .8em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { text-decoration: none; display: inline-block; padding: .55rem 0; }   /* Klickfläche ≥ 44 px */
.site-footer li { margin-bottom: 0; }
.site-footer a:hover { text-decoration: underline; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; max-width: 40ch; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; color: rgba(255,255,255,.55); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
@media (max-width: 720px) { .site-footer .container { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---------- Kleine Seiten (Impressum etc.) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.6rem; margin-top: 2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; }
.prose ul { padding-left: 1.2rem; }
.page-head { background: var(--night); color: #fff; padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.page-head h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.page-head:not(.hero-form) .container > div:first-child { max-width: 760px; }
.page-head .lead { color: rgba(255,255,255,.8); }
.notice { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; font-size: .95rem; }

/* ---------- Teilen ---------- */
.share-buttons { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .4rem; }
.card .share-btn { font-size: .9rem; padding: .6em 1em; border-color: var(--line); }
.share-btn { display: inline-flex; align-items: center; gap: .6rem; font: inherit; font-weight: 700; font-size: .98rem; padding: .75em 1.2em; border-radius: 999px; border: 2px solid var(--line); background: #fff; color: var(--ink); text-decoration: none; cursor: pointer; transition: transform .15s var(--ease), border-color .15s; }
.share-btn:hover { transform: translateY(-2px); border-color: var(--ink); }
.share-btn .dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.share-btn.done { border-color: var(--green); color: var(--green-dark); }
.share-btn[hidden] { display: none; }

/* =========================================================
   Ergänzungen September 2026 (Übernahmen aus Version A)
   ========================================================= */

/* Eckdaten-Leiste im Hero (Termin / Beginn / Format / Dauer) */
.facts { list-style: none; margin: 0 0 1.6rem; padding: 1rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.facts li { display: grid; grid-template-columns: 26px 1fr; align-items: center; gap: .7rem; min-width: 0; }
.facts li:nth-child(odd) { padding-right: 1.2rem; border-right: 1px solid rgba(255,255,255,.14); }
.facts li:nth-child(even) { padding-left: 1.4rem; }
.facts svg { width: 26px; height: 26px; color: var(--glow); }
.facts small { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; }
.facts strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.2; text-wrap: balance; }
@media (max-width: 640px) {
  .facts { gap: .45rem .9rem; padding: .7rem 0; margin-bottom: 1.3rem; }
  .facts li { grid-template-columns: 18px 1fr; gap: .4rem; }
  .facts li:nth-child(odd), .facts li:nth-child(even) { border: 0; padding: 0; }
  .facts small { display: none; }
  .facts svg { width: 18px; height: 18px; }
  .facts strong { font-size: .92rem; }
}
@media (max-width: 480px) {
  /* kompakte Einzelzeile: „Di., 10.11. · 20:00 Uhr · online · ca. 90 Min.“ (Kurzform aus data-short) */
  .facts { display: flex; flex-wrap: wrap; gap: .2rem .45rem; padding: .6rem 0; }
  .facts li { display: flex; }
  .facts svg { display: none; }
  .facts li + li::before { content: '·'; color: rgba(255,255,255,.45); }
  .facts strong[data-short] { font-size: 0; }
  .facts strong[data-short]::before { content: attr(data-short); font-size: .9rem; }
}

/* Trust-Bar direkt unter dem Hero */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 0; }
.trustbar ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem 2.2rem; justify-content: space-between; }
.trustbar li { display: flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .95rem; color: var(--ink); text-wrap: balance; }
.trustbar svg { width: 20px; height: 20px; color: var(--green); flex: none; }
@media (max-width: 720px) { .trustbar ul { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem; } .trustbar li { font-size: .88rem; align-items: flex-start; line-height: 1.3; } .trustbar svg { width: 18px; height: 18px; margin-top: .1rem; } }

/* Ergebnis-Block „Danach weißt Du“ */
.result { background: #fff; border-radius: var(--radius); padding: 1.6rem; border-top: 5px solid var(--green); }
.result .icon { width: 46px; height: 46px; border-radius: var(--radius); background: rgba(46,125,91,.12); color: var(--green); display: grid; place-items: center; margin-bottom: 1rem; }
.result .icon svg { width: 24px; height: 24px; }
.result h3 { margin-bottom: .4em; }
.result p { margin: 0; color: var(--ink-2); }

/* Highlight Live-Demo */
.highlight { margin-top: 1.6rem; display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: center; background: var(--night); color: #fff; border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; border: 1px solid rgba(90,216,255,.35); box-shadow: 0 0 0 4px rgba(90,216,255,.08), var(--shadow); }
.highlight .icon { width: 60px; height: 60px; border-radius: var(--radius); background: rgba(90,216,255,.15); color: var(--glow); display: grid; place-items: center; }
.highlight .icon svg { width: 30px; height: 30px; }
.highlight h3 { margin-bottom: .3em; color: #fff; }
.highlight p { margin: 0; color: rgba(255,255,255,.78); }
.highlight .chip { background: rgba(90,216,255,.18); color: var(--glow); }
@media (max-width: 640px) { .highlight { grid-template-columns: 1fr; } }

/* Formular-Sektion „Dein Platz“: eigener Block in Dunkelgrün */
.anmeldung .lead { color: rgba(255,255,255,.8); }
.anmeldung.green { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--green-dark) 0%, var(--night) 100%); }
.anmeldung.green::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 60% at 85% 15%, rgba(90,216,255,.20), transparent 70%), radial-gradient(40% 50% at 10% 100%, rgba(90,216,255,.10), transparent 70%); }
.anmeldung.green .container { position: relative; }
.anmeldung.green .promise li { color: rgba(255,255,255,.92); }
.anmeldung.green .form-card { box-shadow: 0 30px 60px rgba(0,0,0,.35); }

/* Formular im Hero (Multiplikatoren) */
.hero-form .container { align-items: center; }
.hero-form h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.form-card.compact .field { margin-bottom: .75rem; }
.form-card.compact .field.check { font-size: .82rem; margin-bottom: .6rem; }
.form-card.compact .field.check input { margin-top: .2em; }
.form-trust { list-style: none; margin: .9rem 0 0; padding: 0; display: flex; flex-wrap: nowrap; justify-content: center; gap: .75rem; font-size: .78rem; color: var(--ink-2); white-space: nowrap; }
.form-trust li { display: flex; align-items: center; gap: .3rem; }
.form-card { min-width: 0; }
@media (max-width: 480px) { .form-trust { flex-wrap: wrap; white-space: normal; gap: .25rem .7rem; } }
.form-trust svg { width: 14px; height: 14px; color: var(--green); flex: none; }

/* Eckdaten-Karte (Multiplikatoren) */
.blick { background: #fff; }
.blick .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.eckdaten { background: linear-gradient(160deg, var(--night) 0%, var(--night-2) 100%); color: #fff; border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow); }
.eckdaten h3 { color: #fff; padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.18); margin-bottom: 1.2rem; }
.eckdaten ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.eckdaten li { display: flex; gap: .9rem; align-items: center; }
.eckdaten svg { width: 26px; height: 26px; color: var(--glow); flex: none; }
.eckdaten small { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; }
.eckdaten strong { font-family: var(--font-display); font-size: 1.05rem; }
@media (max-width: 860px) { .blick .container { grid-template-columns: 1fr; } }

/* Warnhinweis, breite Karte */
.notice.warn { background: rgba(230,57,70,.08); border-color: rgba(230,57,70,.45); display: flex; gap: .8rem; align-items: flex-start; color: var(--ink); }
.notice.warn svg { width: 22px; height: 22px; color: var(--red-dark); flex: none; margin-top: .15rem; }
.notice.warn p { margin: 0; }
.card.wide { grid-column: 1 / -1; }
.card .chip { margin-left: .5rem; font-size: .72rem; background: rgba(46,125,91,.12); color: var(--green-dark); }
