/* ============================================================
   OFFLINE HELDEN SCHWEIZ — Design-System «Plattform» v1
   Vermarktungsplattform: weiss, klar, conversion-orientiert.
   Anlehnung an die DE-Marke nur über Farben (Grün/Gold) und
   Fraunces als Akzentschrift — Aufbau und Look eigenständig.
   01 Tokens   04 Nav        07 Katalog & Filter   10 Formulare
   02 Typo     05 Hero       08 Pakete & Preise    11 Spezial
   03 Buttons  06 Sektionen  09 Proof & FAQ        12 Footer/A11y
   ============================================================ */

/* ---------- 00 · Fonts (lokal, DSG-freundlich) ---------- */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-latin-vf.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-latin-vf.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-latin-vf-italic.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}

/* ---------- 01 · Tokens & Reset ---------- */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F9F7;
  --paper: #FCFDFC;
  --bg-tint: #EAF3EE;
  --ink: #14201A;
  --ink-2: #3D4C44;
  --muted: #67766E;
  --green: #258057;
  --green-deep: #1B5E40;
  --green-dark: #11402C;
  --green-night: #0A2A1D;
  --green-soft: #DEEFE6;
  --gold: #D4A12B;
  --gold-deep: #8F6B0E;
  --gold-soft: #FBF2DB;
  --gold-light: #FFC857;
  --terra: #B35A33;
  --terra-soft: #F8E9E1;
  --blau: #3D5A80;          /* Themenfeld Schutz & Grenzen */
  --blau-soft: #E8EEF5;
  --line: #E4ECE7;
  --line-soft: #F0F2F1;
  --line-strong: #D4DCD8;

  /* v3: weiche Formensprache — grosse Radien, weiche Schatten */
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 999px;
  --shadow-sm: 0 2px 12px rgba(17, 40, 28, 0.05);
  --shadow-md: 0 16px 40px rgba(17, 40, 28, 0.09);

  --font-ui: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --fs-display: clamp(2.1rem, 4.4vw + 0.8rem, 3.8rem);
  --fs-h1: clamp(1.95rem, 3.0vw + 0.45rem, 2.8rem);
  --fs-h2: clamp(1.45rem, 2.0vw + 0.45rem, 2.0rem);
  --fs-h3: 1.08rem;
  --fs-lead: clamp(1.12rem, 0.55vw + 1.0rem, 1.3rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
/* clip statt hidden: schneidet gleich ab, bricht aber position:sticky NICHT (Katalog-Leiste) */
@supports (overflow-x: clip) { html, body { overflow-x: clip; } }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: none; }
p a, li a { text-decoration: underline; text-decoration-color: rgba(37, 128, 87, 0.35); text-underline-offset: 3px; }
p a:hover, li a:hover { text-decoration-color: var(--green); }
ul { padding-left: 1.15em; }
::selection { background: var(--gold-light); color: var(--green-night); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section-tight { padding: clamp(36px, 4.5vw, 60px) 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--bg-tint); }
.section-dark { background: linear-gradient(165deg, var(--green-dark), var(--green-night)); color: rgba(245, 250, 247, 0.92); }
.section-dark h2, .section-dark h3 { color: #fff; }

/* ---------- 02 · Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.45em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: 1.15; }
h3 { font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -0.01em; }
.display { font-size: var(--fs-display); line-height: 1.05; }

.serif { font-family: var(--font-serif); font-weight: 560; letter-spacing: 0; }
/* Marken-Signatur: Highlights in Headlines als Fraunces-Kursive */
h1 .hl, h2 .hl, .display .hl {
  font-family: var(--font-serif); font-style: italic; font-weight: 580;
  font-size: 1.0em; letter-spacing: -0.005em; color: var(--green-deep);
}
.section-dark .hl, .hero-dark .hl { color: var(--gold-light); }

.lead { font-size: var(--fs-lead); line-height: 1.62; color: var(--ink-2); max-width: 58ch; }
.section-dark .lead { color: rgba(245, 250, 247, 0.82); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; font-weight: 760; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-deep);
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--gold); }
.kicker.light { color: var(--gold-light); }
.kicker.light::before { background: var(--gold-light); }
.kicker.center { justify-content: center; }
.kicker.center::after { content: ""; width: 22px; height: 2px; background: var(--gold); }
.kicker.light.center::after { background: var(--gold-light); }

.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head .kicker { margin-bottom: 14px; }
.section-head p { color: var(--ink-2); margin: 0; }
.section-head.left { margin: 0 0 36px; text-align: left; }

/* ---------- 03 · Buttons, Tags, Preise ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  font-family: var(--font-ui); font-weight: 740; font-size: 0.97rem; line-height: 1;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s, border-color 0.24s, color 0.24s;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 5px 16px rgba(37, 128, 87, 0.24); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: 0 9px 22px rgba(27, 94, 64, 0.3); }
.btn-gold { background: var(--gold-light); color: var(--green-night); }
.btn-gold:hover { background: #FFD673; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(212, 161, 43, 0.32); }
.btn-ghost { border-color: var(--line-strong); color: var(--green-deep); background: #fff; }
.btn-ghost:hover { border-color: var(--green); background: var(--bg-tint); }
.btn-dark { background: var(--green-night); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { border-color: rgba(255, 255, 255, 0.4); color: #fff; background: transparent; }
.btn-light:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.75); }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }
.btn-sm { padding: 10px 16px; font-size: 0.88rem; }
.btn-arrow { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.18s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 720; font-size: 0.95rem; color: var(--green-deep); }
.text-link svg { width: 16px; height: 16px; transition: transform 0.18s; }
.text-link:hover svg { transform: translateX(3px); }

/* Fachbereichs-Tags */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 760; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--pill);
}
.tag-a { background: var(--green-soft); color: var(--green-deep); }
.tag-b { background: var(--terra-soft); color: #94481F; }
.tag-c { background: var(--blau-soft); color: var(--blau); }
.tag-gold { background: var(--gold-soft); color: var(--gold-deep); }
.tag-soon { background: var(--gold-soft); color: var(--gold-deep); }

.price {
  font-weight: 830; font-size: 1.08rem; color: var(--green-deep);
  letter-spacing: -0.01em; white-space: nowrap;
}
.price small { font-weight: 600; font-size: 0.74em; color: var(--muted); }

/* ---------- 04 · Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
body.scrolled .nav { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; gap: 22px; padding: 14px 24px; max-width: 1280px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; border-radius: 9px; }
.logo-text { font-weight: 830; font-size: 0.92rem; letter-spacing: 0.08em; color: var(--green-night); line-height: 1.15; }
.logo-ch { display: block; font-family: var(--font-serif); font-style: italic; font-weight: 560; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--green); }
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a { padding: 9px 12px; font-size: 0.93rem; font-weight: 620; color: var(--ink-2); border-radius: 8px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--green-deep); background: var(--bg-tint); }
.nav-links a.active { color: var(--green-deep); background: var(--green-soft); }
.nav-cta { flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; z-index: 95; }
body.nav-open .nav-toggle { position: fixed; top: 14px; right: 18px; z-index: 96; }
.nav-toggle span { width: 23px; height: 2.4px; background: var(--green-night); border-radius: 2px; transition: transform 0.3s, opacity 0.25s, background 0.3s; }
body.nav-open .nav-toggle span { background: #fff; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: linear-gradient(165deg, var(--green-dark), var(--green-night));
  display: flex; flex-direction: column; justify-content: center;
  padding: 84px 34px 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.ov-link {
  font-weight: 780; font-size: clamp(1.45rem, 5.6vw, 2rem); line-height: 1.65;
  color: #fff; letter-spacing: -0.01em;
}
.ov-link:hover, .ov-link.active { color: var(--gold-light); }
.ov-contact { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.16); font-size: 0.94rem; color: rgba(255, 255, 255, 0.7); display: flex; flex-direction: column; gap: 7px; }
.ov-contact a { color: var(--gold-light); font-weight: 650; }

/* ---------- 05 · Hero (Split) ---------- */
.hero { padding: clamp(48px, 6.5vw, 92px) 0 clamp(40px, 5vw, 72px); background:
  radial-gradient(720px 360px at 92% -12%, rgba(212, 161, 43, 0.10), transparent 60%),
  radial-gradient(600px 320px at -8% 110%, rgba(37, 128, 87, 0.08), transparent 60%),
  var(--bg);
}
/* Dunkler Marken-Hero (Startseite): Brand-Anker in Dunkelgrün + Gold */
.hero-dark {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, var(--green-dark) 0%, #08251A 100%);
  color: rgba(245, 250, 247, 0.92);
}
/* v18: Hero ohne Deko-Kreise — ruhiger, satter Verlauf */
.hero-dark .hero-grid { position: relative; z-index: 2; }
.hero-dark h1 { color: #fff; }
.hero-dark .lead { color: rgba(245, 250, 247, 0.84); }
.hero-dark .hero-checks li { color: rgba(245, 250, 247, 0.85); }
.hero-dark .hero-checks svg { color: var(--gold-light); }
.hero-dark .hero-note { color: rgba(245, 250, 247, 0.75); }
.hero-dark .hero-visual img { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); }
.hero-dark { padding-bottom: clamp(72px, 8vw, 124px); }
/* Sanfte Welle als Hero-Abschluss (weiche Formensprache) */
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3;
  width: 100%; height: clamp(40px, 6vw, 80px); display: block;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin: 16px 0 18px; text-wrap: balance; }
.hero .lead { margin: 0 0 26px; max-width: 50ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.hero-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; color: var(--ink-2); font-weight: 560; }
.hero-checks svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3.1; object-fit: cover; width: 100%; }
.stat-chip {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 14px 20px; line-height: 1.25;
}
.stat-chip strong { display: block; font-size: 1.3rem; font-weight: 830; color: var(--green-deep); letter-spacing: -0.01em; }
.stat-chip span { font-size: 0.76rem; color: var(--muted); font-weight: 600; }
.stat-chip.c1 { top: 18px; left: -26px; }
.stat-chip.c2 { bottom: 52px; right: -22px; }
.stat-chip.c3 { bottom: 18px; left: 18px; }
.hero-note { margin: 16px 0 0; font-size: 0.8rem; color: var(--muted); }

/* Proof-Strip: ruhiges 4er-Raster statt zufälligem Umbruch */
.proof-strip { border-bottom: 1px solid var(--line); background: var(--bg-soft); padding: 20px 0; }
.proof-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 22px; align-items: center; }
.proof-item { display: flex; align-items: center; justify-content: center; text-align: center; gap: 10px; font-size: 0.85rem; font-weight: 660; color: var(--ink-2); line-height: 1.35; }
.proof-item svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; }
.proof-item .serif { font-size: 0.98rem; white-space: nowrap; }
@media (max-width: 1080px) { .proof-strip-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .proof-strip-inner { grid-template-columns: 1fr; } .proof-item { justify-content: flex-start; text-align: left; } }

/* Page-Header (Unterseiten) */
.page-header { padding: clamp(44px, 5.5vw, 72px) 0 clamp(30px, 4vw, 48px); border-bottom: 1px solid var(--line); background:
  radial-gradient(640px 280px at 90% -20%, rgba(212, 161, 43, 0.12), transparent 62%),
  linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 88%); }
/* v8: Dunkler Marken-Header für alle Unterseiten — einheitlicher Auftritt mit dem Start-Hero */
.page-header.dark {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, var(--green-dark) 0%, var(--green-night) 100%);
  border-bottom: 0;
  padding-bottom: clamp(58px, 7vw, 100px);
  color: rgba(245, 250, 247, 0.9);
}
.page-header.dark::before {
  content: ""; position: absolute; top: -170px; right: -110px;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.13), transparent 65%);
}
.page-header.dark .container { position: relative; z-index: 2; }
.page-header.dark h1 { color: #fff; }
.page-header.dark .hl { color: var(--gold-light); }
.page-header.dark .lead { color: rgba(245, 250, 247, 0.84); }
.page-header.dark .breadcrumb, .page-header.dark .breadcrumb a { color: rgba(245, 250, 247, 0.6); }
.page-header.dark .breadcrumb a:hover { color: var(--gold-light); }
.page-header.dark .breadcrumb span { color: var(--gold-light); }
.page-header.dark .tag-soon { background: rgba(255, 200, 87, 0.16); color: var(--gold-light); }
.page-header.dark p a { color: var(--gold-light); text-decoration-color: rgba(255, 200, 87, 0.4); }
.page-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
  width: 100%; height: clamp(26px, 4vw, 52px); display: block;
}
.page-header h1 { max-width: 22ch; margin: 14px 0 12px; text-wrap: balance; }
.page-header .lead { max-width: 62ch; margin: 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--muted); font-weight: 580; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; }
.breadcrumb span { color: var(--green-deep); font-weight: 680; }

/* ---------- 06 · Bento & Karten ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }

/* Bento: Produktlinien */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento-tile {
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 250px; padding: 24px;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.bento-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.bento-tile.span-7 { grid-column: span 7; }
.bento-tile.span-5 { grid-column: span 5; }
.bento-tile.span-6 { grid-column: span 6; }
.bento-tile.tint-green { background: var(--bg-tint); border-color: rgba(37, 128, 87, 0.22); }
.bento-tile.tint-gold { background: var(--gold-soft); border-color: rgba(212, 161, 43, 0.3); }
.bento-img { position: absolute; inset: 0; }
.bento-img img { width: 100%; height: 100%; object-fit: cover; }
.bento-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(11, 44, 31, 0.06) 30%, rgba(11, 44, 31, 0.78) 100%); }
.bento-tile .bt-body { position: relative; z-index: 2; }
.bento-tile.on-img, .bento-tile.on-img h3 { color: #fff; }
.bento-tile.on-img p { color: rgba(255, 255, 255, 0.85); }
.bento-tile h3 { margin: 10px 0 6px; font-size: 1.3rem; }
.bento-tile p { margin: 0 0 14px; font-size: 0.94rem; color: var(--ink-2); max-width: 52ch; }
.bento-tile .text-link { color: inherit; }
.bento-tile.on-img .text-link { color: var(--gold-light); }

/* ---------- 07 · Katalog & Filter ---------- */
.filterbar {
  display: grid; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
  position: sticky; top: 70px; z-index: 40;
}
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-size: 0.74rem; font-weight: 780; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); min-width: 96px; }
.chip {
  appearance: none; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--font-ui); font-size: 0.86rem; font-weight: 640; color: var(--ink-2);
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.chip:hover { border-color: var(--green); color: var(--green-deep); }
.chip[aria-pressed="true"] { background: var(--green-night); border-color: var(--green-night); color: #fff; }
.filter-count { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.offer-card { display: flex; flex-direction: column; padding: 22px 24px 20px; }
/* Farbcode je Fachbereich als Akzentlinie */
.offer-card[data-bereich="medienkompetenz"] { border-top: 2px solid var(--green); }
.offer-card[data-bereich="essstoerungen"] { border-top: 2px solid var(--terra); }
.offer-card[data-bereich="schutz"] { border-top: 2px solid var(--blau); }
.offer-card[data-bereich="mediafitpass"] { border-top: 2px solid var(--gold); }

/* v3: Gruppen-Überschriften im Katalog — geben den 25 Karten sichtbare Ordnung.
   Werden per JS ausgeblendet, wenn die ganze Gruppe weggefiltert ist. */
.offer-group-head {
  grid-column: 1 / -1;
  display: flex; align-items: flex-start; gap: 14px;
  margin: 48px 0 2px; padding: 30px 4px 0; border-top: 1px solid var(--line);
}
.offer-grid > .offer-group-head:first-child { margin-top: 6px; padding-top: 0; border-top: none; }
.ogh-dot { width: 13px; height: 13px; border-radius: 50%; margin-top: 10px; flex-shrink: 0; }
.ogh-dot.dot-a { background: var(--green); box-shadow: 0 0 0 4px rgba(37, 128, 87, 0.15); }
.ogh-dot.dot-b { background: var(--terra); box-shadow: 0 0 0 4px rgba(179, 90, 51, 0.15); }
.ogh-dot.dot-gold { background: var(--gold); box-shadow: 0 0 0 4px rgba(212, 161, 43, 0.18); }
.ogh-dot.dot-c { background: var(--blau); box-shadow: 0 0 0 4px rgba(61, 90, 128, 0.15); }
.offer-group-head h2 { font-size: 1.45rem; margin: 0 0 3px; }
.offer-group-head p { font-size: 0.9rem; color: var(--muted); margin: 0; max-width: 80ch; }
.hidden-by-filter { display: none !important; }
.oc-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.offer-card h3 { margin: 0 0 6px; font-size: 1.08rem; }
.oc-pitch { font-family: var(--font-serif); font-style: italic; font-size: 0.97rem; color: var(--green-deep); margin: 0 0 12px; line-height: 1.5; }
.oc-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.8rem; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.oc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.oc-meta svg { width: 14px; height: 14px; color: var(--green); }
.offer-card details { margin: 0 0 14px; }
.offer-card summary {
  list-style: none; cursor: pointer; font-size: 0.86rem; font-weight: 700; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.offer-card summary::-webkit-details-marker { display: none; }
.offer-card summary::after { content: "+"; font-weight: 800; }
.offer-card details[open] summary::after { content: "–"; }
.offer-card details ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.offer-card details li { position: relative; padding-left: 20px; font-size: 0.89rem; color: var(--ink-2); line-height: 1.5; }
.offer-card details li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.oc-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); }

/* ---------- 08 · Pakete & Preise ---------- */
.paket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.paket-card { display: flex; flex-direction: column; padding: 28px 28px 26px; position: relative; }
.paket-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow-md); }
.paket-badge {
  position: absolute; top: -13px; left: 24px;
  background: var(--green); color: #fff;
  font-size: 0.72rem; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.paket-card h3 { font-size: 1.3rem; margin: 8px 0 4px; }
.paket-sub { font-size: 0.92rem; color: var(--muted); margin: 0 0 18px; }
/* v9: Preise dezent statt plakativ — Leistung steht im Vordergrund */
.paket-price { font-size: 1.05rem; font-weight: 740; letter-spacing: 0; color: var(--ink-2); line-height: 1.3; padding-top: 12px; border-top: 1px dashed var(--line); }
.paket-price small { display: block; font-size: 0.8rem; font-weight: 540; color: var(--muted); letter-spacing: 0; margin-top: 3px; }
.paket-list { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 10px; }
.paket-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--ink-2); line-height: 1.5; }
.paket-list svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.paket-list li.plus svg { color: var(--gold-deep); }
.paket-card .btn { margin-top: auto; }

/* ---------- v4 · Anliegen-Navigator, Lösungs-Blöcke, Budget ---------- */
[id] { scroll-margin-top: 92px; }

/* Sprungnavigation (Anker-Pills) */
.jump-nav { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.jump-nav .jump-label { font-size: 0.74rem; font-weight: 780; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.jump-pill {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--line); background: #fff;
  font-size: 0.88rem; font-weight: 650; color: var(--ink-2);
  padding: 9px 16px; border-radius: var(--pill);
  transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.15s;
}
.jump-pill:hover { border-color: var(--green); color: var(--green-deep); background: var(--bg-tint); transform: translateY(-1px); }
.jump-pill .jp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Anliegen-Karten («Was beschäftigt Ihre Schule?») */
.anliegen-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 26px; text-align: left;
}
.anliegen-card .ac-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--bg-tint); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.anliegen-card .ac-icon svg { width: 22px; height: 22px; }
.anliegen-card h3 { margin: 0; font-size: 1.06rem; }
.anliegen-card p { margin: 0; font-size: 0.91rem; color: var(--ink-2); flex: 1; }
.anliegen-card .text-link { margin-top: 6px; font-size: 0.9rem; }

/* Lösungs-Blöcke (Anliegen → empfohlene Kombination) */
.loesung-block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.2vw, 36px); box-shadow: var(--shadow-sm);
}
.loesung-block + .loesung-block { margin-top: 18px; }
.loesung-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 8px; }
.loesung-head .ogh-dot { margin-top: 8px; }
.loesung-block h3 { font-size: 1.28rem; margin: 0 0 4px; }
.loesung-block .lb-intro { margin: 0 0 16px; font-size: 0.95rem; color: var(--ink-2); max-width: 78ch; }
.rezept { display: grid; gap: 8px; margin: 0 0 16px; }
.rezept-zeile {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 14px; padding: 11px 16px;
}
.rezept-zeile .rz-was { font-size: 0.93rem; font-weight: 640; color: var(--ink); }
.rezept-zeile .rz-was small { display: block; font-weight: 520; color: var(--muted); font-size: 0.82rem; }
.rezept-zeile .rz-preis { font-weight: 800; font-size: 0.95rem; color: var(--green-deep); white-space: nowrap; }
.rezept-zeile.optional { border-style: dashed; background: #fff; }
.loesung-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.loesung-summe { font-size: 0.95rem; color: var(--ink-2); }
.loesung-summe strong { color: var(--green-deep); font-size: 1.06rem; }

/* Budget-Beispielkarten */
.budget-card { display: flex; flex-direction: column; padding: 26px 28px; }
.budget-card .bk-label { font-size: 0.74rem; font-weight: 780; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.budget-card h3 { margin: 6px 0 2px; font-size: 1.2rem; }
.budget-card .bk-summe { font-weight: 830; font-size: 1.9rem; letter-spacing: -0.02em; color: var(--green-deep); margin: 8px 0 2px; }
.budget-card .bk-summe small { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.budget-card ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.budget-card li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9rem; color: var(--ink-2); padding-bottom: 8px; border-bottom: 1px dashed var(--line-soft); }
.budget-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.budget-card li b { font-weight: 700; color: var(--ink); white-space: nowrap; }

/* Featured-Karte (Leitlinien als Strategie-Programm) */
.card.featured-green { border: 2px solid var(--green); box-shadow: var(--shadow-md); position: relative; }
.badge-float {
  position: absolute; top: -13px; left: 22px;
  background: var(--green); color: #fff;
  font-size: 0.72rem; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--pill);
}

/* FAQ-Zwischentitel — im Kicker-Duktus */
.faq-cat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 760; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); margin: 30px 0 12px;
}
.faq-cat::before { content: ""; width: 22px; height: 2px; background: var(--gold); flex-shrink: 0; }
.faq-cat:first-of-type { margin-top: 0; }

@media (max-width: 720px) {
  .rezept-zeile { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Wirkungszahlen-Karten («Der Unterschied») */
.wirkung-card {
  background: #fff; border: 1px solid var(--line); border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg); padding: 26px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wirkung-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.wirkung-card .wk-zahl {
  font-weight: 830; font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  color: var(--green-deep); letter-spacing: -0.02em; line-height: 1.05;
}
.wirkung-card h3 { margin: 4px 0 2px; font-size: 1.06rem; }
.wirkung-card p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

/* Vergleichszeile / Hinweis */
.note-box {
  background: var(--bg-tint); border: 1px solid rgba(37, 128, 87, 0.2);
  border-radius: var(--radius); padding: 16px 20px;
  font-size: 0.92rem; color: var(--ink-2); line-height: 1.6;
}
.note-box strong { color: var(--green-deep); }

/* ---------- 09 · Proof, Stats, Zitate, FAQ, Steps ---------- */
/* v3: Schritte als weiche Einzelkarten statt harter Rail */
.steps-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  padding: 26px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-soft), #fff);
  border: 1px solid rgba(37, 128, 87, 0.25);
  color: var(--green-deep);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: 0.89rem; color: var(--ink-2); margin: 0; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 8px 12px; position: relative; }
.stat-item + .stat-item::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 60%; background: rgba(255, 255, 255, 0.14); }
.stat-item strong { display: block; font-weight: 830; font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.08; color: var(--gold-light); letter-spacing: -0.01em; }
.stat-item strong sup { font-size: 0.5em; }
.stat-item span { display: block; margin-top: 5px; font-size: 0.85rem; color: rgba(245, 250, 247, 0.7); font-weight: 580; }
.stat-deck { text-align: center; margin: 26px auto 0; font-size: 0.85rem; color: rgba(245, 250, 247, 0.72); max-width: 60em; }

.quote-card { padding: 26px 28px; display: flex; flex-direction: column; gap: 12px; border-top: 2px solid var(--gold-light); }
.quote-card p { font-family: var(--font-serif); font-style: italic; font-size: 1.12rem; line-height: 1.55; color: var(--ink); margin: 0; flex: 1; }
.quote-card cite { font-style: normal; font-size: 0.84rem; color: var(--muted); }
.quote-card cite strong { display: block; color: var(--ink); font-size: 0.9rem; }
.star-row { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item[open] { border-color: var(--green); }
.faq-item summary { list-style: none; cursor: pointer; padding: 17px 52px 17px 22px; position: relative; font-weight: 700; font-size: 0.99rem; line-height: 1.45; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px; transform: translateY(-50%);
  background: linear-gradient(var(--green), var(--green)) center/12px 2px no-repeat, linear-gradient(var(--green), var(--green)) center/2px 12px no-repeat;
  transition: transform 0.22s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { padding: 0 22px 20px; color: var(--ink-2); font-size: 0.95rem; }
.faq-a p { margin: 0 0 8px; }
.faq-a p:last-child { margin: 0; }

/* ---------- 10 · Formulare ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.form label { display: block; font-weight: 680; font-size: 0.88rem; margin-bottom: 6px; color: var(--ink); min-width: 0; }
.form input, .form select, .form textarea {
  width: 100%; min-width: 0; box-sizing: border-box;
  padding: 12px 16px;
  font-family: var(--font-ui); font-size: 0.97rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(37, 128, 87, 0.13); }
.form textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.81rem; color: var(--muted); margin: -4px 0 0; }
.form-check { display: flex; gap: 11px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-2); font-weight: 500; }
.form label.form-check { font-weight: 500; color: var(--ink-2); } /* schlägt die .form-label-Spezifität */
.form-check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.form-sent { display: none; background: var(--green-soft); color: var(--green-deep); border: 1px solid rgba(37, 128, 87, 0.3); border-radius: var(--radius); padding: 14px 18px; font-size: 0.93rem; font-weight: 600; }
.form-sent.visible { display: block; }

.inline-form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-form input[type="email"] { flex: 1; min-width: 230px; padding: 13px 16px; font-family: var(--font-ui); font-size: 0.97rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius); }
.inline-form input[type="email"]:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(37, 128, 87, 0.13); }

.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px; }
.aside-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.aside-card p { font-size: 0.91rem; color: var(--ink-2); margin: 0 0 8px; }

/* ---------- 11 · Spezial: Gate, Platzhalter, Split ---------- */
.gate-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 38px); box-shadow: var(--shadow-sm); }
.gate-row { display: flex; gap: 10px; flex-wrap: wrap; }
.gate-row input { flex: 1; min-width: 210px; padding: 12px 14px; font-family: var(--font-ui); font-size: 0.97rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius); }
.gate-row input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(37, 128, 87, 0.13); }
.gate-error { display: none; color: var(--terra); font-size: 0.88rem; font-weight: 650; margin: 10px 0 0; }
.gate-error.visible { display: block; }
[hidden] { display: none !important; }

.placeholder-tile {
  border: 1.6px dashed var(--line-strong); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 9px; padding: 34px 26px; color: var(--muted); background: transparent;
  transition: border-color 0.18s, background 0.18s, transform 0.2s;
}
.placeholder-tile:hover { border-color: var(--green); background: var(--bg-tint); transform: translateY(-3px); }
.placeholder-tile svg { width: 30px; height: 30px; color: var(--green); opacity: 0.55; }
.placeholder-tile strong { color: var(--ink-2); font-size: 1rem; }
.placeholder-tile span { font-size: 0.86rem; line-height: 1.5; }

.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4.5vw, 64px); align-items: center; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.pull-quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.5; color: var(--green-deep); border-left: 4px solid var(--gold); padding-left: 20px; margin: 0 0 18px; }

/* v5 · Story-Split mit Gesichtern (Erstbesucher: Vertrauen vor Katalog) */
.story-media { position: relative; }
.story-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3.4; object-fit: cover; }
.story-media .media-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(11, 44, 31, 0.85); color: #fff;
  backdrop-filter: blur(6px);
  font-size: 0.8rem; font-weight: 640; padding: 8px 15px; border-radius: var(--pill);
}
.akteur-row { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.akteur-zeile {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--pill);
  padding: 11px 20px 11px 11px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.akteur-zeile:hover { border-color: var(--green); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.akteur-zeile img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: center 25%; flex-shrink: 0; }
.akteur-zeile .az-text { line-height: 1.3; min-width: 0; overflow-wrap: break-word; hyphens: auto; }
.akteur-zeile .az-text strong { display: block; font-size: 0.94rem; color: var(--ink); }
.akteur-zeile .az-text span { font-size: 0.8rem; color: var(--muted); overflow-wrap: break-word; hyphens: auto; }
.akteur-zeile svg { width: 16px; height: 16px; color: var(--green-deep); margin-left: auto; flex-shrink: 0; transition: transform 0.18s; }
.akteur-zeile:hover svg { transform: translateX(3px); }
/* Partner-Platzhalter-Zeile: signalisiert sichtbar, dass das Netzwerk wächst */
.akteur-zeile.platz { border-style: dashed; background: transparent; }
.akteur-zeile.platz:hover { background: var(--bg-tint); }
.az-plus {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint); color: var(--green-deep);
  border: 1.6px dashed var(--line-strong);
  font-weight: 800; font-size: 1.25rem; line-height: 1;
}

/* v5 · Grosses Bühnen-Zitat (Ruhepunkt zwischen Karten-Sektionen) */
.quote-stage {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--green-deep), var(--green-night));
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(40px, 5.5vw, 70px) clamp(26px, 6vw, 80px);
  text-align: center;
}
.quote-stage::after {
  content: ""; position: absolute; top: -45%; right: -8%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.16), transparent 68%);
}
.quote-stage p {
  position: relative; font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.95rem); line-height: 1.4;
  margin: 0 auto 18px; max-width: 26ch; color: #fff;
}
.quote-stage .hl { color: var(--gold-light); font-style: italic; }
.quote-stage cite { position: relative; font-style: normal; color: var(--gold-light); font-size: 0.92rem; font-weight: 660; }

/* v5 · Bild-Header für Karten (bricht Text-Karten-Monotonie) */
.card-img { aspect-ratio: 16/7; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin: -1px -1px 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img + * { margin-top: 16px; }
.anliegen-card > .card-img { margin: -24px -26px 0; border-radius: 23px 23px 0 0; }
.anliegen-card > .card-img + * { margin-top: 18px; }

.cta-band { text-align: center; }
.cta-band h2 { max-width: 26ch; margin: 14px auto 14px; }
.cta-band p { color: rgba(245, 250, 247, 0.78); max-width: 46em; margin: 0 auto 30px; }

.akteur-card { display: flex; flex-direction: column; overflow: hidden; }
.akteur-card .ak-img { aspect-ratio: 4/3.2; overflow: hidden; background: var(--bg-soft); }
.akteur-card .ak-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.akteur-card .ak-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.akteur-card h3 { margin: 0; }
.ak-creds { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 6px; font-size: 0.88rem; color: var(--ink-2); }
.ak-creds li { position: relative; padding-left: 18px; line-height: 1.5; }
.ak-creds li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- 12 · Footer, Scroll, A11y, Responsive ---------- */
.footer { background: linear-gradient(170deg, var(--green-dark), var(--green-night)); color: rgba(245, 250, 247, 0.8); padding: clamp(48px, 6vw, 76px) 0 0; border-top: 1px solid rgba(245, 250, 247, 0.14); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 52px); padding-bottom: 42px; }
.footer-wordmark { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-wordmark-mark { width: 42px; height: 42px; border-radius: 10px; }
.footer-wordmark-text { line-height: 1.15; }
.footer-wordmark-eyebrow { display: block; font-family: var(--font-serif); font-style: italic; font-size: 0.82rem; color: var(--gold-light); }
.footer-wordmark-name { display: block; font-weight: 820; letter-spacing: 0.09em; font-size: 0.98rem; color: #fff; }
.footer-brand p { font-size: 0.92rem; line-height: 1.62; margin: 0 0 16px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; color: rgba(245, 250, 247, 0.85); font-size: 0.92rem; font-weight: 580; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { width: 16px; height: 16px; opacity: 0.75; }
.footer-col h5 { font-size: 0.74rem; font-weight: 780; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin: 4px 0 14px; }
.footer-col a { display: block; padding: 4px 0; color: rgba(245, 250, 247, 0.78); font-size: 0.93rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 20px 24px; max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(245, 250, 247, 0.13); font-size: 0.82rem; color: rgba(245, 250, 247, 0.55); }
.footer-bottom a { color: rgba(245, 250, 247, 0.75); }
.footer-bottom a:hover { color: var(--gold-light); }

.scroll-progress { position: fixed; top: 0; left: 0; z-index: 100; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.back-to-top {
  position: fixed; right: 20px; bottom: 22px; z-index: 70;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); color: var(--green-deep); cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--bg-tint); }
.back-to-top svg { width: 20px; height: 20px; }

.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px; background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(17, 40, 28, 0.09);
  transform: translateY(110%); transition: transform 0.3s ease;
}
.mobile-cta-mail { flex-shrink: 0; width: 48px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--green-deep); }
.mobile-cta-mail svg { width: 20px; height: 20px; }
.mobile-cta-main { flex: 1; display: flex; align-items: center; justify-content: center; background: var(--green); color: #fff; border-radius: var(--radius); padding: 13px; font-weight: 740; font-size: 0.97rem; }

.js .reveal { opacity: 0; }
.js .reveal.in { opacity: 1; animation: reveal-in 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) backwards; }
.reveal.in { opacity: 1; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
[data-stagger] > .reveal.in:nth-child(3n+2) { animation-delay: 0.07s; }
[data-stagger] > .reveal.in:nth-child(3n) { animation-delay: 0.14s; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--green); color: #fff; padding: 11px 18px; border-radius: 0 0 10px 0; font-weight: 680; }
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .nav, .mobile-cta, .back-to-top, .scroll-progress, .footer, .nav-overlay, .filterbar { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-rail { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: span 3; display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-col:last-child h5 { width: 100%; margin-bottom: 2px; }
  .bento-tile.span-7, .bento-tile.span-5, .bento-tile.span-6 { grid-column: span 6; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .stat-chip.c1 { left: 10px; }
  .stat-chip.c2 { right: 10px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .paket-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .stat-item:nth-child(3)::before { display: none; }
  .filterbar { position: static; }
}
@media (max-width: 720px) {
  .grid-3, .grid-2, .offer-grid { grid-template-columns: 1fr; }
  /* v12 Mobile-Feinschliff */
  .stat-chip.c1 { left: 10px; top: 10px; }
  .stat-chip.c2 { right: 10px; bottom: 46px; }
  .jump-pill { padding: 7px 12px; font-size: 0.81rem; }
  .jump-nav .jump-label { min-width: 100%; }
  .loesung-foot { flex-direction: column; align-items: stretch; }
  .loesung-foot .btn { width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .steps-rail { grid-template-columns: 1fr; }
  .bento-tile.span-7, .bento-tile.span-5, .bento-tile.span-6 { grid-column: span 12; }
  .mobile-cta { display: flex; }
  body.scrolled-down .mobile-cta:not(.suppressed) { transform: translateY(0); }
  .footer { padding-bottom: 84px; }
  .back-to-top { bottom: 84px; right: 14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .footer-col:last-child { grid-column: auto; display: block; }
  .proof-strip-inner { justify-content: flex-start; }
}
@media (max-width: 600px) { .nav-cta { display: none; } }
@media (max-width: 520px) {
  .container, .container-narrow { padding: 0 18px; }
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .logo-mark { width: 33px; height: 33px; }
  .logo-text { font-size: 0.8rem; }
  .filter-label { min-width: 100%; }
  .stat-chip.c3 { display: none; }
}

/* ============================================================
   v13 — Medienfit-Check, Standard-Band, Doku-Preview,
   Check-Banner, Print-Stylesheet
   ============================================================ */

/* --- Check-Banner (Startseite) --- */
.check-banner { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 26px 52px; align-items: center;
  background: linear-gradient(135deg, var(--gold-soft), #FFFDF6 62%);
  border: 1px solid #EFDFB4; border-radius: var(--radius-lg); padding: 34px 42px; }
.check-banner h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin: 10px 0 10px; }
.check-banner p { margin: 0; color: var(--ink-2); }
.cb-side { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cb-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.cb-points li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-2); font-weight: 600; }
.cb-points li svg { margin-top: 2px; }
.cb-points svg { width: 17px; height: 17px; color: var(--green); flex: none; }
@media (max-width: 860px) { .check-banner { grid-template-columns: 1fr; padding: 26px 22px; } .cb-side .btn { width: 100%; } }

/* --- Standard-Band (Qualitaetsversprechen) --- */
.standard-band { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 30px 38px; display: grid; grid-template-columns: 0.85fr 1.35fr; gap: 18px 48px; align-items: center; }
.standard-band h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin: 8px 0 0; }
.standard-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 28px; }
.standard-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--ink-2); line-height: 1.45; }
.standard-list svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 2px; }
@media (max-width: 860px) { .standard-band { grid-template-columns: 1fr; padding: 24px 22px; } .standard-list { grid-template-columns: 1fr; } }

/* --- Dokument-Preview (Medienleitlinien) --- */
.doc-preview { position: relative; }
.doc-sheet { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 26px 28px 14px; max-width: 470px; margin-left: auto; }
.doc-head { display: flex; flex-direction: column; gap: 3px; border-bottom: 2px solid var(--green); padding-bottom: 12px; margin-bottom: 4px; }
.doc-head strong { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-deep); }
.doc-head span { font-size: 0.74rem; color: var(--muted); }
.doc-row { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px dashed var(--line-strong); }
.doc-row:last-of-type { border-bottom: 0; }
.doc-ico { width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--green-soft); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center; }
.doc-ico svg { width: 17px; height: 17px; }
.doc-row strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: var(--ink); }
.doc-row p { font-size: 0.84rem; color: var(--ink-2); line-height: 1.5; margin: 0; }
.doc-fade { text-align: center; font-size: 0.78rem; color: var(--muted); padding: 12px 6px 6px; font-style: italic; }
.doc-stamp { position: absolute; top: -13px; right: -10px; background: var(--gold); color: #3C2E07; font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.05em; padding: 7px 14px; border-radius: var(--pill); transform: rotate(2.5deg); box-shadow: var(--shadow-sm); }
@media (max-width: 860px) { .doc-sheet { margin: 0 auto; } .doc-stamp { right: 4px; } }

/* --- Medienfit-Check (Tool) --- */
.sc-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 34px 38px; max-width: 760px; margin: 0 auto; }
.sc-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 10px; }
.sc-step { font-size: 0.82rem; font-weight: 700; color: var(--green-deep); letter-spacing: 0.04em; }
.sc-dim { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.sc-bar { height: 6px; border-radius: 99px; background: var(--bg-tint); overflow: hidden; margin-bottom: 26px; }
.sc-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--green-deep));
  border-radius: 99px; transition: width .35s ease; }
.sc-q h2 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); margin: 0 0 18px; outline: none; }
.sc-options { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; border: 0; }
.sc-opt { position: relative; }
.sc-opt input { position: absolute; opacity: 0; pointer-events: none; }
.sc-opt label { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: 13px; cursor: pointer; transition: border-color .15s, background .15s; font-size: 0.95rem; color: var(--ink-2); line-height: 1.45; }
.sc-opt label::before { content: ''; width: 19px; height: 19px; flex: none; margin-top: 1px; border-radius: 50%;
  border: 2px solid var(--line-strong); transition: border-color .15s, background .15s, box-shadow .15s; background: #fff; }
.sc-opt label:hover { border-color: var(--green); background: var(--bg-soft); }
.sc-opt input:checked + label { border-color: var(--green); background: var(--green-soft); color: var(--ink); }
.sc-opt input:checked + label::before { border-color: var(--green); background: var(--green); box-shadow: inset 0 0 0 3.5px #fff; }
.sc-opt input:focus-visible + label { outline: 2px solid var(--green); outline-offset: 2px; }
.sc-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.sc-nav .btn[disabled] { opacity: .4; pointer-events: none; }
.sc-back { background: #fff; border: 1.5px solid var(--line-strong); color: var(--ink-2); }
.sc-back:hover { border-color: var(--green); color: var(--green-deep); }
.sc-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 16px; line-height: 1.55; }
.sc-result .sc-scorehead { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.sc-gauge { width: 96px; height: 96px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center;
  background: conic-gradient(var(--green) calc(var(--p) * 1%), var(--bg-tint) 0); }
.sc-gauge b { width: 72px; height: 72px; border-radius: 50%; background: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-size: 1.35rem; line-height: 1; color: var(--green-deep); }
.sc-gauge b small { font-size: 0.6rem; font-weight: 600; color: var(--muted); margin-top: 3px; letter-spacing: 0.02em; }
.sc-tier { font-size: clamp(1.25rem, 2.4vw, 1.65rem); margin: 0 0 6px; outline: none; }
.sc-hebel { margin: 14px 0 0; display: flex; flex-direction: column; gap: 9px; }
.sc-hebel a { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 13px; padding: 13px 16px;
  text-decoration: none; color: var(--ink); font-weight: 650; font-size: 0.94rem; transition: border-color .15s, transform .15s; }
.sc-hebel a:hover { border-color: var(--green); transform: translateX(3px); }
.sc-hebel a span span:last-child { font-weight: 500; color: var(--muted); font-size: 0.84rem; display: block; }
.sc-hebel svg { width: 16px; height: 16px; color: var(--green); margin-left: auto; flex: none; }
.sc-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
@media (max-width: 640px) {
  .sc-shell { padding: 24px 18px; }
  .sc-nav { justify-content: space-between; }
  .sc-ctas .btn { width: 100%; justify-content: center; }
}

/* --- Print --- */
@media print {
  .nav, .nav-overlay, .scroll-progress, .skip-link, .footer, .back-to-top, .mobile-cta,
  .cta-band, .check-banner, .jump-nav, .hero-ctas, .btn, .page-wave, .hero-wave,
  .form-sent, form, [data-print], .sc-shell, .gate-box { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .page-header.dark, .hero-dark, .section-dark, .section-soft, .section-tint, .proof-strip { background: #fff !important; color: #000 !important; }
  .page-header.dark h1, .page-header.dark .lead, .page-header.dark .breadcrumb,
  .section-dark h2, .section-dark p, .stat-band .stat-item strong, .stat-band .stat-item span, .stat-deck { color: #000 !important; }
  .kicker, .hl, .text-link { color: #000 !important; }
  .card, .offer-card, .paket-card, .wirkung-card, .step, .faq-item, .loesung-block { box-shadow: none !important; border: 1px solid #bbb !important; break-inside: avoid; }
  a { color: #000 !important; text-decoration: none !important; }
  img { max-width: 240px !important; }
}

/* ============================================================
   v14 — MediaFitPass-Ausbau: Pass-Entwurf, Kurspfad-Themen,
   Check-vs-Pass-Vergleich
   ============================================================ */

/* --- Pass-Entwurf (Gestaltungs-Mock) --- */
.pass-wrap { position: relative; max-width: 460px; margin-left: auto; }
.pass-card { position: relative; border-radius: 20px; padding: 24px 28px; aspect-ratio: 1.586 / 1;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(135deg, var(--green-night), var(--green-dark) 52%, var(--green-deep));
  color: #fff; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.14); overflow: hidden; }
.pass-card::after { content: ''; position: absolute; right: -70px; top: -90px; width: 250px; height: 250px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(212,161,43,0.30), transparent); pointer-events: none; }
.pass-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.pass-brand { font-weight: 700; letter-spacing: 0.16em; font-size: 0.62rem; color: rgba(255,255,255,0.72); text-transform: uppercase; }
.pass-brand strong { display: block; font-size: 1.08rem; letter-spacing: 0.04em; color: #fff; font-weight: 800; text-transform: none; margin-top: 3px; }
.pass-chip { width: 38px; height: 28px; flex: none; border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35); }
.pass-name { font-family: var(--font-serif); font-style: italic; font-size: 1.18rem; color: var(--gold-light); margin: 0 0 8px; }
.pass-progress { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.18); overflow: hidden; }
.pass-progress i { display: block; height: 100%; width: 62%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 99px; }
.pass-meta { display: flex; justify-content: space-between; gap: 10px; font-size: 0.7rem; color: rgba(255,255,255,0.75); margin-top: 7px; }
.pass-foot { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.pass-hinweis { font-size: 0.78rem; color: var(--muted); text-align: center; margin: 12px 0 0; font-style: italic; }
.pass-wrap .doc-stamp { z-index: 2; }
@media (max-width: 860px) { .pass-wrap { margin: 0 auto; } }
@media (max-width: 420px) { .pass-card { aspect-ratio: auto; gap: 18px; } }

/* --- Kurspfad-Themen --- */
.pfad-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); margin: 14px 0 7px; }
.pfad-themen { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pfad-themen li { position: relative; padding-left: 18px; font-size: 0.89rem; color: var(--ink-2); line-height: 1.45; }
.pfad-themen li::before { content: ''; position: absolute; left: 2px; top: 0.52em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold); }

/* --- Check vs. Pass --- */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 880px; margin: 0 auto; }
.vs-card { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.vs-card .tag { align-self: flex-start; }
.vs-card h3 { margin: 2px 0 0; }
.vs-card .text-link { margin-top: 14px; }
@media (max-width: 760px) { .vs-grid { grid-template-columns: 1fr; } }

/* ============================================================
   v15 — Eltern-Bereich + Leerraum-Fix Story-Split
   ============================================================ */

/* Story-Bild fuellt die volle Spaltenhoehe (kein totes Weiss mehr) */
.story-media { align-self: stretch; }
.story-media img { height: 100%; aspect-ratio: auto; min-height: 380px; }
@media (max-width: 900px) {
  .story-media img { height: auto; aspect-ratio: 4 / 3; min-height: 0; }
}

/* Gauge-Farbstufen fuer Eltern-Tests (Sorge-Skala) */
.sc-gauge.g-mid { background: conic-gradient(var(--gold) calc(var(--p) * 1%), var(--bg-tint) 0); }
.sc-gauge.g-mid b { color: var(--gold-deep); }
.sc-gauge.g-high { background: conic-gradient(var(--terra) calc(var(--p) * 1%), var(--bg-tint) 0); }
.sc-gauge.g-high b { color: var(--terra); }

/* Eltern-Band (Startseite) */
.eltern-band { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px 48px; align-items: center;
  background: var(--bg); border: 1px solid var(--line); border-left: 5px solid var(--terra);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 30px 38px; }
.eltern-band h2 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin: 10px 0 8px; }
.eltern-band p { margin: 0; color: var(--ink-2); font-size: 0.96rem; }
.eltern-band-ctas { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
@media (max-width: 860px) { .eltern-band { grid-template-columns: 1fr; padding: 24px 22px; } }

/* ============================================================
   v16 — Dropdown-Navigation (3 Oberkategorien) + gruppiertes
   Mobile-Overlay
   ============================================================ */

/* --- Desktop-Dropdowns --- */
.nav-item { position: relative; display: inline-flex; }
.nav-top { display: inline-flex; align-items: center; gap: 4px;
  padding: 9px 12px; font-size: 0.93rem; font-weight: 620; color: var(--ink-2);
  border-radius: 8px; transition: color 0.15s, background 0.15s; cursor: pointer; }
.nav-top:hover, .nav-item:focus-within .nav-top { color: var(--green-deep); background: var(--bg-tint); }
.nav-top.active { color: var(--green-deep); background: var(--green-soft); }
.nav-caret { width: 14px; height: 14px; opacity: 0.65; transition: transform 0.2s; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret, .nav-item.open .nav-caret { transform: rotate(180deg); }

.nav-sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 232px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: 8px;
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease; z-index: 60;
}
/* unsichtbare Brücke, damit der Mauszeiger die Lücke überqueren kann */
.nav-sub::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub, .nav-item.open .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(7px);
}
.nav-sub a {
  padding: 9px 13px; border-radius: 9px; font-size: 0.9rem; font-weight: 600;
  color: var(--ink-2); white-space: nowrap; transition: color 0.13s, background 0.13s;
}
.nav-sub a:hover { background: var(--bg-soft); color: var(--green-deep); }
.nav-sub a.active { background: var(--green-soft); color: var(--green-deep); }

/* --- Gruppiertes Mobile-Overlay --- */
.nav-overlay { justify-content: flex-start; overflow-y: auto; }
.ov-grouped { display: flex; flex-direction: column; gap: 1px; }
.ov-head { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); opacity: 0.85; margin: 17px 0 3px; }
.ov-grouped .ov-link { font-size: clamp(1.2rem, 4.6vw, 1.55rem); line-height: 1.5; }
.ov-grouped .ov-link.ov-sub { font-size: clamp(1.04rem, 4vw, 1.3rem); color: rgba(255, 255, 255, 0.88); }
.ov-grouped .ov-link.ov-sub:hover, .ov-grouped .ov-link.ov-sub.active { color: var(--gold-light); }


/* ============================================================
   v18 — Editorial Premium: Sektionsindex, Gold-Rule, Ziffern,
   Zitat-Wasserzeichen, dunkler Stimmen-Anker
   ============================================================ */
.kicker .idx { color: var(--green); font-weight: 800; font-variant-numeric: tabular-nums lining-nums; margin-right: 3px; }
.kicker.light .idx { color: var(--gold-light); }
.stat-item strong, .wk-zahl, .budget-card .bk-summe, .price, .rz-preis, .paket-price { font-variant-numeric: tabular-nums lining-nums; }
/* Gold-Unterstrich als dezente Struktur (opt-in, nur an Kern-Sektionen) */
h2.rule::after { content: ""; display: block; width: 46px; height: 2px; background: var(--gold); margin: 16px auto 0; }
.section-head.left h2.rule::after, h2.rule.left::after { margin-left: 0; margin-right: auto; }
/* Bühnen-Zitat: grosses Fraunces-Anführungszeichen als Wasserzeichen */
.quote-stage::before {
  content: "\201C"; position: absolute; top: -0.06em; left: 4%;
  font-family: var(--font-serif); font-weight: 600; font-size: clamp(120px, 18vw, 210px);
  line-height: 1; color: rgba(255, 200, 87, 0.13); pointer-events: none; z-index: 0;
}
.quote-stage p, .quote-stage cite { position: relative; z-index: 1; }
/* Stimmen-Karten auf dem dunklen Mittel-Anker */
.section-dark .quote-card { background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.10); border-top: 2px solid var(--gold-light); }
.section-dark .quote-card p { color: rgba(255, 255, 255, 0.93); }
.section-dark .quote-card cite { color: rgba(245, 250, 247, 0.6); }
.section-dark .quote-card cite strong { color: #fff; }
.section-dark .star-row { color: var(--gold-light); }
/* Trennlinie zwischen Stat-Band und Stimmen im dunklen Anker */
.anker-divider { height: 1px; background: rgba(255, 255, 255, 0.12); max-width: 1200px; margin: clamp(34px, 5vw, 54px) auto; }

/* ============================================================
   v19 — Echte Fotos & Proof: Kinderpost-Polaroids, Fachumfeld-
   Logos, Foto-Anker (DE-Substanz im CH-Editorial-Stil)
   ============================================================ */
.kinder-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 38px); max-width: 940px; margin: 0 auto; }
.polaroid { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 12px 12px 16px; box-shadow: var(--shadow-md); transition: transform 0.28s ease, box-shadow 0.28s ease; }
.polaroid:nth-child(1) { transform: rotate(-1.6deg); }
.polaroid:nth-child(2) { transform: rotate(1.1deg); }
.polaroid:nth-child(3) { transform: rotate(-0.6deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 24px 52px rgba(17, 40, 28, 0.17); }
.polaroid img { width: 100%; aspect-ratio: 1 / 0.72; object-fit: cover; border-radius: 3px; }
.polaroid figcaption { font-family: var(--font-serif); font-style: italic; font-size: 0.92rem; color: var(--ink-2); text-align: center; margin-top: 11px; line-height: 1.4; }
@media (max-width: 680px) { .kinder-wall { grid-template-columns: 1fr; max-width: 340px; } .polaroid { transform: none !important; } }

/* Fachliches Umfeld — echte Verbandslogos, ruhig (entsättigt, auf Hover farbig) */
.umfeld { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 44px; }
.umfeld img { height: 52px; width: auto; opacity: 0.85; filter: none; mix-blend-mode: multiply; transition: opacity 0.2s, filter 0.2s; }
.umfeld img:hover { opacity: 1; filter: none; }
.umfeld-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin: 16px 0 0; }

/* Foto-Anker: ein ruhiges echtes Bild pro Sektion (kontrollierter Schnitt) */
.foto-anker { position: relative; }
.foto-anker img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4 / 3.1; object-fit: cover; }
.foto-anker .media-badge { position: absolute; left: 16px; bottom: 16px; background: rgba(11, 44, 31, 0.85); color: #fff; backdrop-filter: blur(6px); font-size: 0.8rem; font-weight: 640; padding: 8px 15px; border-radius: var(--pill); }

/* ============================================================
   v20 — Pressefotos, Foto-Band, Buch im Umfeld
   ============================================================ */
.presse-foto { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.presse-foto:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.presse-foto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.presse-foto figcaption { padding: 12px 16px; font-size: 0.86rem; color: var(--ink-2); font-weight: 600; }
.foto-anker.foto-band { max-width: 1040px; margin: 0 auto; }
.foto-anker.foto-band img { aspect-ratio: 16 / 6; }
.umfeld-buch { height: 66px !important; width: auto; opacity: 1 !important; filter: none !important; border-radius: 3px; box-shadow: var(--shadow-sm); }

/* ============================================================
   v21 — Fable-5 Audit-Umsetzung (Design-Feinschliff)
   Reveal-Gate (html.js oben) · Mobile-Grid-Fixes · Katalog-Sticky
   · Karten-Preise · Pass/Doc-Veredelung · Akzentlinien · A11y
   ============================================================ */

/* Überschriften-Umbruch: keine Waisen/Schusterjungen im Fraunces-Akzent */
.section-head h2, .check-banner h2, .cta-band h2, .page-header h1,
.sc-head h2, .offer-group-head h2 { text-wrap: balance; }

/* Lange Button-Labels auf kleinen Screens umbrechen statt abschneiden */
@media (max-width: 520px) {
  .btn { white-space: normal; text-align: center; }
  .kicker.center::after { display: none; }
  .kicker { text-wrap: balance; }
}

/* Steps-Rail mit 3 Spalten als KLASSE (Inline-Style schlug die Media-Queries) */
.steps-rail.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .steps-rail.cols-3 { grid-template-columns: 1fr; } }

/* Kontakt-Split als Klasse (Formular breiter), mobil einspaltig */
.split--form { grid-template-columns: 1.5fr 1fr; align-items: start; }
@media (max-width: 900px) { .split--form { grid-template-columns: 1fr; } }

/* Hero-Medien-Wrapper: Stat-Chips ankern ans Bild, nicht an die Fussnote */
.hero-media { position: relative; }

/* Anliegen-Karten: «Demnächst»-Tag absolut, Titel-Baseline bleibt im Raster */
.anliegen-card { position: relative; }
.anliegen-card > .tag-soon { position: absolute; top: 20px; right: 20px; margin: 0; z-index: 1; }
/* Catch-all-Karte füllt die verwaiste letzte Rasterzeile */
/* catch-all span-2 entfernt: Anliegen-Grid ist mit 9 Karten ein exaktes 3×3-Raster */

/* Katalog: Richtpreis im Kartenfuss statt versteckt im <details> */
.oc-preis { font-size: 0.86rem; font-weight: 760; color: var(--green-deep); letter-spacing: 0; }
.oc-preis.frei { font-weight: 640; color: var(--muted); font-style: italic; }

/* Katalog-Legende als Chips statt überlesbarem Fliesstext */
.legende { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tag-gold { background: var(--gold-soft); color: var(--gold-deep); }

/* Editorial-Index für Katalog-Gruppenköpfe (Dots bleiben Themenfeldern vorbehalten) */
.ogh-index { font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 1.5rem; color: var(--gold-deep); line-height: 1; margin-top: 2px; flex-shrink: 0; min-width: 1.5em; }

/* Sticky Katalog-Sprungnavigation mit Scrollspy
   (lebt als direktes Kind von <main>, damit sticky wirklich klebt) */
.jump-sticky { position: sticky; top: 66px; z-index: 40; min-width: 0;
  background: rgba(252, 253, 252, 0.94); backdrop-filter: blur(8px);
  padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.jump-nav { min-width: 0; }
.jump-pill.active { border-color: var(--green); color: var(--green-deep); background: var(--bg-tint); }
@media (max-width: 720px) {
  .jump-sticky .jump-nav { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .jump-sticky .jump-nav::-webkit-scrollbar { display: none; }
  .jump-sticky .jump-label { display: none; }
  .jump-sticky .jump-pill { flex-shrink: 0; white-space: nowrap; }
}

/* Lösungs-Blöcke: Themenfeld-Akzentlinie oben (spiegelt Karten-Codierung) */
.loesung-block { border-top: 3px solid var(--line-strong); }
.loesung-block[data-thema="medienkompetenz"] { border-top-color: var(--green); }
.loesung-block[data-thema="essstoerungen"]   { border-top-color: var(--terra); }
.loesung-block[data-thema="schutz"]          { border-top-color: var(--blau); }
.loesung-block[data-thema="leitlinien"]      { border-top-color: var(--gold); }
.loesung-block[data-thema="eltern"]          { border-top-color: var(--green-deep); }

/* Werte-Karten (Über uns): dezente Marken-Hairline */
.werte-card { border-top: 3px solid var(--line-strong); }
.werte-card:nth-child(3n+1) { border-top-color: var(--green); }
.werte-card:nth-child(3n+2) { border-top-color: var(--gold); }
.werte-card:nth-child(3n+3) { border-top-color: var(--terra); }

/* Porträt Florian: in den Rahmen zoomen (eingebackener weisser Kreis-Hintergrund) */
.presse-foto img[src*="portrait-florian"], .ak-img img[src*="portrait-florian"],
.foto-anker img[src*="portrait-florian"] { transform: scale(1.5); transform-origin: center 42%; }

/* Pass-Mock veredeln: Chip-Kontaktflächen + Diagonal-Sheen + Kontrast */
.pass-card::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.07) 50%, transparent 58%); }
.pass-chip { position: relative; }
.pass-chip::before { content: ''; position: absolute; inset: 5px 6px; border-radius: 3px;
  border: 1px solid rgba(60,40,5,0.30);
  background:
    linear-gradient(rgba(60,40,5,0.30), rgba(60,40,5,0.30)) center/100% 1px no-repeat,
    linear-gradient(rgba(60,40,5,0.30), rgba(60,40,5,0.30)) center/1px 100% no-repeat; }
.pass-brand { color: rgba(255,255,255,0.82); }
.pass-foot { color: rgba(255,255,255,0.8); }
.pass-meta { color: rgba(255,255,255,0.82); }

/* Doc-Mock: zweites Blatt andeuten (echte-Dokument-Anmutung) + Seitenfuss */
.doc-sheet::before { content: ''; position: absolute; right: -7px; top: 9px; bottom: -7px; left: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); z-index: -1; }
.doc-foot { text-align: right; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; padding: 4px 2px 0; }

/* Disclaimer unter den Tests eine Stufe lesbarer (Seriosität) */
.sc-note.disclaimer { font-size: 0.88rem; color: var(--ink-2); }

/* Fakten-Chips im Test-/Check-Header */
.fakten-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.fakten-chips .tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.92); }

/* ============================================================
   v22 — Hero-Headline über volle Breite · Hover-/Reveal-Feinschliff
   ============================================================ */
.hero-head { margin: 0 0 clamp(26px, 3.5vw, 44px); }
.hero-head .kicker { margin-bottom: 14px; }
.hero-head h1 { margin: 6px 0 0; font-size: clamp(2.5rem, 5.6vw + 0.3rem, 4.8rem); line-height: 1.02; }
.hero-grid { align-items: start; }
@media (max-width: 860px) {
  .hero-head { margin-bottom: 22px; }
  .hero-head h1 { font-size: clamp(2rem, 8.5vw, 2.9rem); }
}
/* Featured-Karte behält beim Hover ihren grünen Rahmen (nicht auf Grau kippen) */
.card.featured-green:hover { border-color: var(--green); }
/* Reduced-Motion: Reveal-Keyframe abschalten */
@media (prefers-reduced-motion: reduce) { .js .reveal, .js .reveal.in { animation: none !important; opacity: 1 !important; } }

/* ============================================================
   v26 — Fable-5 Vollprüfung (2. Runde): Funktions- & Detailfixes
   ============================================================ */

/* Mobile-Overflow-Härtung: lange Wörter dürfen Split-Spalten nicht aufblähen */
.split > * { min-width: 0; }

/* Richtpreis-Doppelangaben: Variante als eigene Unterzeile statt hängendem «·» */
.oc-preis small { display: block; font-size: 0.78rem; font-weight: 620; color: var(--muted); margin-top: 2px; }

/* Pressefotos: Caption liegt ÜBER dem gezoomten Porträt (Download bleibt klickbar) */
.presse-foto figcaption { position: relative; z-index: 1; background: #fff; }

/* Nav-Dropdown: feiner Trenner vor der Werkzeug-Gruppe */
.nav-sub .sub-divider { display: block; height: 1px; background: var(--line); margin: 6px 10px; }

/* Katalog-Anker: Platz für Nav + Sticky-Leiste beim Pill-Sprung */
.offer-group-head[id] { scroll-margin-top: 140px; }

/* Rezept-Zeilen: Links auch ohne Farbwahrnehmung erkennbar */
.rezept-zeile a { text-decoration: underline; text-decoration-color: rgba(37, 128, 87, 0.35); text-underline-offset: 2px; }

/* ============================================================
   v27 — Persona-Finalisierung (Go-Live-Politur)
   ============================================================ */

/* Eltern-Schnelleinstieg im Hero (Sandra-Fix: Eltern finden sonst erst bei 80 % Scrolltiefe) */
.hero-eltern-hint { margin: 14px 0 22px; font-size: 0.92rem; }
.hero-eltern-hint a { color: rgba(245, 250, 247, 0.85); text-decoration: underline; text-decoration-color: rgba(255, 200, 87, 0.5); text-underline-offset: 3px; }
.hero-eltern-hint a:hover { color: #fff; text-decoration-color: var(--gold-light); }
