/* ============================================================
   MEDIENAMPEL – Design System v2
   ============================================================

   TABLE OF CONTENTS
   1.  Tokens & Custom Properties
   2.  Reset & Base
   3.  Typography Scale
   4.  Layout System
   5.  Navigation
   6.  Buttons
   7.  Badges & Ampel Labels
   8.  Cards
   9.  Hero
   10. Section Patterns
   11. Ampel System Section
   12. Age Tabs
   13. Topic & Device Grids
   14. Bildschirmzeit Table
   15. FAQ Accordion
   16. Footer
   17. Utilities
   18. Responsive
   ============================================================ */

/* ── 1. TOKENS ──────────────────────────────────────────── */
:root {
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Backgrounds */
  --bg:          #F7F9F6;
  --surface:     #FFFFFF;
  --surface-alt: #EEF3EE;
  --border:      #DDE5DC;
  --border-lt:   #E7EEE6;

  /* Text */
  --t1: #1A1917;
  --t2: #6B6762;
  --t3: #9C9893;

  /* Brand */
  --brand:    #1B5E40;
  --brand-md: #2D7A55;
  --brand-lt: #EBF5F0;
  --brand-xl: #F3FAF6;

  /* Ampel – Grün */
  --g:     #16A34A;
  --g-lt:  #DCFCE7;
  --g-bd:  #BBF7D0;
  --g-tx:  #15803D;
  --g-dk:  #14532D;

  /* Ampel – Gelb */
  --a:     #CA8A04;
  --a-lt:  #FEF9C3;
  --a-bd:  #FDE68A;
  --a-tx:  #A16207;
  --a-dk:  #713F12;

  /* Ampel – Rot */
  --r:     #DC2626;
  --r-lt:  #FEE2E2;
  --r-bd:  #FECACA;
  --r-tx:  #B91C1C;
  --r-dk:  #7F1D1D;

  /* Blue */
  --blue:    #2563EB;
  --blue-lt: #EFF6FF;
  --blue-tx: #1D4ED8;

  /* Radii */
  --rx-sm:  6px;
  --rx:     8px;
  --rx-lg:  8px;
  --rx-xl:  8px;
  --rx-2xl: 8px;
  --rx-f:   999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.06);
  --sh-sm: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --sh-md: 0 2px 8px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.05);
  --sh-lg: 0 4px 16px rgba(0,0,0,0.10), 0 16px 40px rgba(0,0,0,0.06);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  160ms;
}

/* ── 2. RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
strong, h1, h2, h3, h4, p, a, button, span { overflow-wrap: break-word; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────── */
.t-display {
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--t1);
}
.t-h1 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--t1);
}
.t-h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--t1);
}
.t-h3 { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; color: var(--t1); }
.t-lead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: var(--t2);
}
.t-body  { font-size: 0.9375rem; line-height: 1.7; color: var(--t2); }
.t-small { font-size: 0.8125rem; line-height: 1.5; color: var(--t3); }
.t-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand);
}

/* ── 4. LAYOUT ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

.section        { padding: 96px 0; }
.section--sm    { padding: 64px 0; }
.section--lg    { padding: 112px 0; }
.section-alt    { background: var(--surface); }
.section-dark   { background: var(--t1); }
.section-brand  { background: var(--brand-xl); }

.section__hd         { margin-bottom: 48px; }
.section__hd--center { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }

.divider { width: 36px; height: 3px; background: var(--brand); border-radius: 2px; margin: 16px 0; }
.divider--c { margin-left: auto; margin-right: auto; }

/* ── 5. NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  background: rgba(246,245,242,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.nav.scrolled { box-shadow: var(--sh-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--t1);
  letter-spacing: 0;
  flex-shrink: 0;
}
.nav__dots {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.nav__dot--g { background: var(--g); }
.nav__dot--a { background: var(--a); }
.nav__dot--r { background: var(--r); }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__link {
  padding: 6px 12px;
  border-radius: var(--rx-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t2);
  transition: background var(--dur), color var(--dur);
  white-space: nowrap;
}
.nav__link:hover { background: var(--surface-alt); color: var(--t1); }
.nav__link--active { background: var(--brand-lt); color: var(--brand); font-weight: 600; }
.nav__link--active:hover { background: var(--brand-lt); color: var(--brand); }

.nav__cta {
  margin-left: 12px;
  padding: 8px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--rx-f);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--dur), transform var(--dur);
}
.nav__cta:hover { background: var(--brand-md); transform: translateY(-1px); }

/* Burger */
.nav__burger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--t1); border-radius: 2px; }

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(246,245,242,0.98);
  gap: 2px;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 10px 12px;
  border-radius: var(--rx-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--t2);
  transition: background var(--dur);
}
.nav__mobile-link:hover { background: var(--surface-alt); color: var(--t1); }

/* ── 6. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--rx-f);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 3px rgba(27,94,64,0.2), 0 4px 12px rgba(27,94,64,0.15);
}
.btn--primary:hover {
  background: var(--brand-md);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(27,94,64,0.25), 0 8px 20px rgba(27,94,64,0.18);
}
.btn--ghost {
  background: var(--surface);
  color: var(--t1);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--t2); transform: translateY(-1px); }
.btn--sm { padding: 9px 20px; font-size: 0.875rem; }

/* ── 7. BADGES ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--rx-f);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge--green  { background: var(--g-lt); color: var(--g-tx); }
.badge--green::before  { background: var(--g); }
.badge--amber  { background: var(--a-lt); color: var(--a-tx); }
.badge--amber::before  { background: var(--a); }
.badge--red    { background: var(--r-lt); color: var(--r-tx); }
.badge--red::before    { background: var(--r); }
.badge--brand  { background: var(--brand-lt); color: var(--brand); }
.badge--brand::before  { background: var(--brand); }
.badge--neutral { background: var(--surface-alt); color: var(--t2); }
.badge--neutral::before { background: var(--t3); }

/* ── 8. CARDS ───────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--rx-lg);
  border: 1px solid var(--border-lt);
  padding: 32px;
  transition: box-shadow var(--dur), transform var(--dur);
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: var(--rx);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card__icon--green   { background: var(--g-lt); }
.card__icon--amber   { background: var(--a-lt); }
.card__icon--red     { background: var(--r-lt); }
.card__icon--brand   { background: var(--brand-lt); }
.card__icon--neutral { background: var(--surface-alt); }

.card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.card__body  { font-size: 0.9rem; color: var(--t2); line-height: 1.65; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap var(--dur);
}
.card__link:hover { gap: 10px; }

/* ── 9. HERO ────────────────────────────────────────────── */
.hero {
  min-height: min(760px, calc(100svh - 56px));
  padding: 128px 0 96px;
  background: #13231B;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.72;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,24,19,0.94) 0%, rgba(12,24,19,0.72) 42%, rgba(12,24,19,0.18) 100%),
    linear-gradient(180deg, rgba(12,24,19,0.18) 0%, rgba(12,24,19,0.55) 100%);
  pointer-events: none;
}

.hero__inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.hero__content { color: #fff; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: var(--rx-f);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.84);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero__eyebrow-dots { display: flex; gap: 4px; }
.hero__eyebrow-dots span { width: 7px; height: 7px; border-radius: 50%; }

.hero__title { margin-bottom: 20px; }
.hero__title,
.hero__title em { color: #fff; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.84);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__proof span {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--rx-f);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  background: rgba(255,255,255,0.08);
}
.hero .btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.32);
}
.hero .btn--ghost:hover { border-color: rgba(255,255,255,0.72); }

/* Quickstart */
.quickstart {
  background: var(--surface);
  padding: 48px 0 80px;
  border-bottom: 1px solid var(--border-lt);
}
.quickstart__shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: stretch;
  margin-top: -96px;
  position: relative;
  z-index: 3;
}
.quickstart__intro,
.quickstart__tool {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--rx-lg);
  box-shadow: var(--sh-lg);
}
.quickstart__intro {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quickstart__intro h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1.12;
  margin: 12px 0;
}
.quickstart__intro p {
  color: var(--t2);
  font-size: 0.95rem;
  line-height: 1.7;
}
.quickstart__tool {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.quickstart__label {
  font-size: 0.78rem;
  color: var(--t3);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.segmented {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--rx);
  overflow: hidden;
  background: var(--surface-alt);
}
.segment {
  min-height: 42px;
  padding: 8px 10px;
  color: var(--t2);
  font-weight: 800;
  border-right: 1px solid var(--border);
}
.segment:last-child { border-right: 0; }
.segment.is-active {
  background: var(--brand);
  color: #fff;
}
.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.chip {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--rx);
  background: var(--surface);
  color: var(--t2);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  transition: border-color var(--dur), color var(--dur), background var(--dur);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.is-active {
  background: var(--brand-lt);
  border-color: var(--brand);
  color: var(--brand);
}
.quickstart__result {
  border-radius: var(--rx);
  background: #14221A;
  color: #fff;
  padding: 24px;
}
.quickstart__result-kicker {
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quickstart__result h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
.quickstart__result p {
  color: rgba(255,255,255,0.74);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.quickstart__result-link {
  display: inline-flex;
  color: #B9F4D2;
  font-weight: 800;
  font-size: 0.9rem;
}
.quickstart__result-link::after {
  content: '→';
  margin-left: 8px;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.route-card {
  min-height: 156px;
  border-radius: var(--rx-lg);
  border: 1px solid var(--border-lt);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.route-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.route-card__label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.route-card strong {
  font-size: 1.05rem;
  line-height: 1.3;
}
.route-card span:last-child {
  color: var(--t2);
  font-size: 0.88rem;
  line-height: 1.55;
}
.route-card--green { border-top: 4px solid var(--g); }
.route-card--amber { border-top: 4px solid var(--a); }
.route-card--red { border-top: 4px solid var(--r); }
.route-card--green .route-card__label { color: var(--g-tx); }
.route-card--amber .route-card__label { color: var(--a-tx); }
.route-card--red .route-card__label { color: var(--r-tx); }

.intent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.intent-card {
  min-height: 126px;
  border-radius: var(--rx-lg);
  border: 1px solid var(--border-lt);
  background: var(--surface);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.intent-card:hover {
  border-color: var(--brand);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.intent-card span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.intent-card strong {
  color: var(--t1);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* Legacy hero elements kept for older sub-templates */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__trust-item {
  font-size: 0.8125rem;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-item::before { content: '✓'; color: var(--g); font-weight: 700; }

/* Hero right panel */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* Hero photo */
.hero__photo-wrap {
  position: relative;
  border-radius: var(--rx-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 520px;
  box-shadow: var(--sh-lg);
  background: linear-gradient(150deg, var(--brand-lt) 0%, var(--g-lt) 100%);
}
.hero__photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.hero__photo-wrap:hover .hero__photo-img { transform: scale(1.02); }

.hero__photo-stats {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--rx-lg);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  box-shadow: var(--sh-md);
}
.hero__photo-stat { text-align: center; }
.hero__photo-stat-num {
  font-size: 1.5rem; font-weight: 800; letter-spacing: 0; line-height: 1;
}
.hero__photo-stat-label { font-size: 0.6875rem; color: var(--t2); margin-top: 3px; line-height: 1.3; }

.n-green { color: var(--g-tx); }
.n-amber { color: var(--a-tx); }
.n-red   { color: var(--r-tx); }

/* kept for fallback/legacy */
.hero__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__stat {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--rx-lg);
  padding: 20px;
  box-shadow: var(--sh-sm);
}
.hero__stat-num {
  font-size: 1.875rem; font-weight: 800; letter-spacing: 0; line-height: 1; margin-bottom: 4px;
}
.hero__stat-label { font-size: 0.78rem; color: var(--t3); line-height: 1.4; }
.hero__card {
  background: var(--surface); border: 1px solid var(--border-lt);
  border-radius: var(--rx-lg); padding: 20px 24px; box-shadow: var(--sh-sm);
  display: flex; align-items: center; gap: 16px;
}
.hero__ampel-col { display: flex; flex-direction: column; gap: 7px; flex-shrink: 0; }
.hero__ampel-dot { width: 13px; height: 13px; border-radius: 50%; }
.hero__ampel-dot--g { background: var(--g); box-shadow: 0 0 0 3px var(--g-bd); }
.hero__ampel-dot--a { background: var(--a); box-shadow: 0 0 0 3px var(--a-bd); }
.hero__ampel-dot--r { background: var(--r); box-shadow: 0 0 0 3px var(--r-bd); }

/* ── 10. AMPEL SYSTEM SECTION ───────────────────────────── */
.ampel-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ampel-card {
  border-radius: var(--rx-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.ampel-card--g { background: var(--g-lt); border: 1.5px solid var(--g-bd); }
.ampel-card--a { background: var(--a-lt); border: 1.5px solid var(--a-bd); }
.ampel-card--r { background: var(--r-lt); border: 1.5px solid var(--r-bd); }

.ampel-card__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.ampel-card--g .ampel-card__dot { background: var(--g); box-shadow: 0 0 0 5px var(--g-bd); }
.ampel-card--a .ampel-card__dot { background: var(--a); box-shadow: 0 0 0 5px var(--a-bd); }
.ampel-card--r .ampel-card__dot { background: var(--r); box-shadow: 0 0 0 5px var(--r-bd); }

.ampel-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ampel-card--g .ampel-card__title { color: var(--g-dk); }
.ampel-card--a .ampel-card__title { color: var(--a-dk); }
.ampel-card--r .ampel-card__title { color: var(--r-dk); }

.ampel-card__body { font-size: 0.875rem; line-height: 1.65; }
.ampel-card--g .ampel-card__body { color: var(--g-tx); }
.ampel-card--a .ampel-card__body { color: var(--a-tx); }
.ampel-card--r .ampel-card__body { color: var(--r-tx); }

/* ── 11. AGE TABS ───────────────────────────────────────── */
.age-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.age-btn {
  padding: 9px 18px;
  border-radius: var(--rx-f);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t2);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all var(--dur);
  cursor: pointer;
}
.age-btn:hover { border-color: var(--brand); color: var(--brand); }
.age-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.age-pane  { display: none; }
.age-pane.active { display: block; }

.age-card {
  background: var(--surface);
  border-radius: var(--rx-xl);
  border: 1px solid var(--border-lt);
  overflow: hidden;
}
.age-card__head {
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--border-lt);
}
.age-card__emoji {
  width: 52px; height: 52px;
  border-radius: var(--rx);
  background: var(--brand-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.age-card__head h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.age-card__head p  { font-size: 0.9rem; color: var(--t2); }

.age-card__body {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.age-block__lbl {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--t3);
  margin-bottom: 10px;
}
.age-block__title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 6px; }
.age-block__content { font-size: 0.875rem; color: var(--t2); line-height: 1.65; }
.age-block__content li {
  display: flex; align-items: flex-start; gap: 7px;
  margin-bottom: 5px;
}
.age-block__content li::before {
  content: '→';
  color: var(--brand);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}
.age-card__ampel {
  padding: 16px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border-lt);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── 12. TOPIC & DEVICE GRIDS ───────────────────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.topic-card {
  background: var(--surface);
  border-radius: var(--rx-lg);
  border: 1px solid var(--border-lt);
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
  color: inherit;
}
.topic-card:hover { border-color: var(--brand); box-shadow: var(--sh-sm); transform: translateY(-2px); }

/* Image header */
.topic-card__img-wrap { overflow: hidden; flex-shrink: 0; }
.topic-card__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.topic-card:hover .topic-card__img { transform: scale(1.04); }

/* Gradient fallback (visible when img not yet added) */
.topic-card__img-wrap--g  { background: linear-gradient(135deg, var(--g-lt), var(--brand-lt)); aspect-ratio: 16/9; }
.topic-card__img-wrap--a  { background: linear-gradient(135deg, var(--a-lt), #FFF7ED); aspect-ratio: 16/9; }
.topic-card__img-wrap--r  { background: linear-gradient(135deg, var(--r-lt), #FFF5F5); aspect-ratio: 16/9; }
.topic-card__img-wrap--b  { background: linear-gradient(135deg, var(--blue-lt), #EFF6FF); aspect-ratio: 16/9; }
.topic-card__img-wrap--n  { background: linear-gradient(135deg, var(--surface-alt), #F0F0EF); aspect-ratio: 16/9; }

/* Content area */
.topic-card__cnt {
  padding: 20px 24px 24px;
  display: flex; flex-direction: column; gap: 8px; flex-grow: 1;
}
.topic-card__icon { width: 38px; height: 38px; border-radius: var(--rx-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.topic-card__title { font-size: 1rem; font-weight: 700; }
.topic-card__body  { font-size: 0.875rem; color: var(--t2); line-height: 1.6; flex-grow: 1; }
.topic-card__arrow { font-size: 0.875rem; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 6px; transition: gap var(--dur); }
.topic-card:hover .topic-card__arrow { gap: 10px; }

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.device-card {
  background: var(--surface);
  border-radius: var(--rx-lg);
  border: 1px solid var(--border-lt);
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: all var(--dur);
  color: inherit;
}
.device-card:hover { border-color: var(--brand); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.device-card__os { font-size: 0.73rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; color: var(--t3); }
.device-card__title { font-size: 1rem; font-weight: 700; }
.device-card__body  { font-size: 0.875rem; color: var(--t2); line-height: 1.6; flex-grow: 1; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
}
.split-section--top { align-items: start; }

.platform-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.platform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 32px;
}
.trust-grid { margin-bottom: 48px; }

.section-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ── 13. BILDSCHIRMZEIT TABLE ───────────────────────────── */
.bsz-table { border-radius: var(--rx-lg); overflow: hidden; border: 1px solid var(--border-lt); }
.bsz-row   { display: grid; grid-template-columns: 1.2fr 1fr 2fr; }
.bsz-row:not(:last-child) { border-bottom: 1px solid var(--border-lt); }
.bsz-row--hd { background: var(--brand); }
.bsz-cell {
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--t2);
  border-right: 1px solid var(--border-lt);
}
.bsz-cell:last-child { border-right: none; }
.bsz-row--hd .bsz-cell { color: rgba(255,255,255,0.75); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; border-right-color: rgba(255,255,255,0.12); }
.bsz-row:nth-child(even) .bsz-cell { background: var(--bg); }
.bsz-time { font-weight: 700; color: var(--t1); font-size: 0.9375rem; }

/* ── 14. FAQ ────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--rx);
  overflow: hidden;
  transition: box-shadow var(--dur);
}
.faq-item.open { box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; text-align: left;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.9375rem; font-weight: 600; color: var(--t1);
  background: none; cursor: pointer;
  transition: color var(--dur);
}
.faq-item.open .faq-q { color: var(--brand); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: var(--rx-f);
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem; color: var(--t2);
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.faq-item.open .faq-icon { background: var(--brand-lt); color: var(--brand); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 300ms var(--ease); }
.faq-a__inner { padding: 0 24px 18px; font-size: 0.9rem; color: var(--t2); line-height: 1.7; }

/* ── 15. FOOTER ─────────────────────────────────────────── */
.footer { background: #111110; padding: 64px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 800; color: #fff;
  letter-spacing: 0; margin-bottom: 16px;
}
.footer__dots { display: flex; flex-direction: column; gap: 3px; }
.footer__dot  { width: 7px; height: 7px; border-radius: 50%; opacity: 0.8; }
.footer__body { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer__col-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer__col ul  { display: flex; flex-direction: column; gap: 8px; }
.footer__col a   { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--dur); }
.footer__col a:hover { color: #fff; }
.footer__bottom  {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8125rem; color: rgba(255,255,255,0.3);
}
.footer__btm-links { display: flex; gap: 20px; }
.footer__btm-links a { color: rgba(255,255,255,0.4); transition: color var(--dur); }
.footer__btm-links a:hover { color: #fff; }

/* ── 16. UTILITIES ──────────────────────────────────────── */
.info-box {
  border-radius: var(--rx);
  padding: 18px 22px;
  font-size: 0.9rem;
  line-height: 1.65;
  border-left: 3px solid;
}
.info-box--g { background: var(--g-lt); border-color: var(--g); color: var(--g-dk); }
.info-box--a { background: var(--a-lt); border-color: var(--a); color: var(--a-dk); }
.info-box--r { background: var(--r-lt); border-color: var(--r); color: var(--r-dk); }

.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--t2); line-height: 1.6;
}
.checklist li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--g-lt); color: var(--g-tx);
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan-item {
  background: var(--surface);
  border-radius: var(--rx); border: 1px solid var(--border-lt);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.plan-num {
  width: 28px; height: 28px; border-radius: var(--rx-f);
  background: var(--brand-lt); color: var(--brand);
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plan-text strong { font-size: 0.9rem; display: block; margin-bottom: 2px; }
.plan-text span   { font-size: 0.84rem; color: var(--t2); }

.sos-box { background: var(--r-lt); border: 1.5px solid var(--r-bd); border-radius: var(--rx-xl); padding: 32px; }
.sos-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 20px; }
.sos-item {
  background: var(--surface); border-radius: var(--rx); border: 1px solid var(--r-bd);
  padding: 16px; text-align: center;
}
.sos-num   { font-size: 1.25rem; font-weight: 800; color: var(--r-tx); margin-bottom: 3px; }
.sos-label { font-size: 0.75rem; color: var(--t2); line-height: 1.3; }

/* ── 17. SEO ARTICLE PAGES ─────────────────────────────── */
.article-hero {
  padding: 128px 0 56px;
  background: #14221A;
  color: #fff;
}
.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 48px;
  align-items: end;
}
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--rx-f);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 18px;
}
.article-hero p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  max-width: 680px;
}
.article-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.article-hero__meta span {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--rx-f);
  padding: 5px 10px;
  color: rgba(255,255,255,0.76);
  font-size: 0.78rem;
  font-weight: 700;
}
.article-hero__card {
  background: #fff;
  color: var(--t1);
  border-radius: var(--rx-lg);
  padding: 24px;
  box-shadow: var(--sh-lg);
}
.article-hero__card-title {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.article-hero__card ul { display: flex; flex-direction: column; gap: 10px; }
.article-hero__card li {
  display: flex;
  gap: 10px;
  color: var(--t2);
  font-size: 0.9rem;
  line-height: 1.55;
}
.article-hero__card li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 8px;
  flex-shrink: 0;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.82rem;
  color: var(--t3);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--brand); font-weight: 700; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: start;
}
.article-main {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--rx-lg);
  padding: 36px;
}
.article-main h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.18;
  margin: 34px 0 14px;
}
.article-main h2:first-child { margin-top: 0; }
.article-main h3 {
  font-size: 1.08rem;
  margin: 24px 0 10px;
}
.article-main p,
.article-main li {
  color: var(--t2);
  font-size: 0.96rem;
  line-height: 1.75;
}
.article-main p + p { margin-top: 12px; }
.article-main ul,
.article-main ol {
  list-style: revert;
  padding-left: 1.3rem;
  margin: 10px 0 18px;
}
.article-main li + li { margin-top: 7px; }
.article-main a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-note {
  border-left: 4px solid var(--brand);
  background: var(--brand-xl);
  border-radius: var(--rx);
  padding: 18px 20px;
  margin: 22px 0;
}
.article-note--amber { border-color: var(--a); background: var(--a-lt); }
.article-note--red { border-color: var(--r); background: var(--r-lt); }
.article-note strong { color: var(--t1); }
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  overflow: hidden;
  border-radius: var(--rx);
  border: 1px solid var(--border-lt);
}
.article-table th,
.article-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-lt);
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}
.article-table th {
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.article-table tr:last-child td { border-bottom: 0; }
.article-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-sidebox {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--rx-lg);
  padding: 20px;
}
.article-sidebox h2,
.article-sidebox h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.article-sidebox a {
  display: block;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
}
.article-sidebox a + a { margin-top: 10px; }
.article-sidebox p {
  color: var(--t2);
  font-size: 0.86rem;
  line-height: 1.65;
}
.article-cta {
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--rx-lg);
  background: #14221A;
  color: #fff;
}
.article-cta h2 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.article-cta p { color: rgba(255,255,255,0.76); margin-bottom: 18px; }
.article-cta .btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.26);
}
.ampel-verdict {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0 28px;
}
.ampel-verdict__item {
  border: 1px solid var(--border-lt);
  border-radius: var(--rx);
  padding: 16px;
  background: var(--surface);
}
.ampel-verdict__dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--t1);
  margin-bottom: 8px;
}
.ampel-verdict__dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
}
.ampel-verdict__dot--red::before { background: var(--r); }
.ampel-verdict__dot--amber::before { background: var(--a); }
.ampel-verdict__dot--green::before { background: var(--g); }
.ampel-verdict__item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.faq-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
}
.faq-list details {
  border: 1px solid var(--border-lt);
  border-radius: var(--rx);
  background: var(--surface);
  padding: 14px 16px;
}
.faq-list summary {
  cursor: pointer;
  color: var(--t1);
  font-weight: 800;
  line-height: 1.45;
}
.faq-list details p {
  margin-top: 10px;
}
.source-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.source-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border-lt);
  border-radius: var(--rx);
  background: var(--surface-2);
  text-decoration: none;
}
.print-tools {
  display: grid;
  gap: 18px;
}
.print-sheet {
  border: 1px solid var(--border-lt);
  border-radius: var(--rx-lg);
  background: var(--surface);
  padding: 24px;
  break-inside: avoid;
}
.print-sheet h2 {
  margin-top: 0;
}
.template-lines {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.template-line {
  display: grid;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-lt);
  color: var(--t2);
  font-size: 0.92rem;
}
.template-line strong {
  color: var(--t1);
}
.template-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}
.template-card {
  border: 1px solid var(--border-lt);
  border-radius: var(--rx);
  padding: 14px;
  background: var(--surface-2);
}
.template-card strong {
  display: block;
  color: var(--t1);
  margin-bottom: 6px;
}

/* ── 17. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 112px 0 108px;
  }
  .hero__inner { max-width: 640px; }
  .hero__media img { object-position: 72% center; }
  .hero__visual { display: none; }
  .quickstart__shell { grid-template-columns: 1fr; margin-top: -72px; }
  .route-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .article-hero__grid,
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .age-card__body { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero {
    padding: 96px 0 92px;
  }
  .hero__media img {
    object-position: 68% center;
    opacity: 0.56;
  }
  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(12,24,19,0.94) 0%, rgba(12,24,19,0.78) 100%),
      linear-gradient(180deg, rgba(12,24,19,0.18) 0%, rgba(12,24,19,0.68) 100%);
  }
  .quickstart { padding-bottom: 64px; }
  .quickstart__intro,
  .quickstart__tool { box-shadow: var(--sh-sm); }
  .quickstart__intro,
  .quickstart__tool,
  .quickstart__result { padding: 20px; }
  .intent-grid { grid-template-columns: 1fr 1fr; }
  .article-hero { padding: 100px 0 48px; }
  .article-main { padding: 24px; }
  .ampel-verdict,
  .template-grid { grid-template-columns: 1fr; }
  .article-table { display: block; overflow-x: auto; }
  .segmented { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .segment { border-bottom: 1px solid var(--border); }
  .chip-grid,
  .platform-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .article-page .nav__inner {
    gap: 14px;
    overflow: hidden;
  }
  .article-page .nav__links {
    display: flex !important;
    overflow-x: auto;
    margin-left: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .article-page .nav__links::-webkit-scrollbar { display: none; }
  .article-page .nav__link {
    font-size: 0.78rem;
    padding: 6px 9px;
  }
  .article-page .nav__cta,
  .article-page .nav__burger { display: none !important; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .ampel-strip { grid-template-columns: 1fr; }
  .topic-grid  { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr; }
  .bsz-row { grid-template-columns: 1fr 1fr; }
  .bsz-cell:last-child { display: none; }
  .age-card__body { grid-template-columns: 1fr; }
  .age-card__head { flex-direction: column; }
  .plan-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .sos-grid { grid-template-columns: repeat(2,1fr); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn,
  .section-actions .btn { width: 100%; justify-content: center; white-space: normal; }
  .section__hd--center { text-align: left; }
  .divider--c { margin-left: 0; }
  .section-actions { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 24px; }
  .age-card__head, .age-card__body { padding: 20px; }
  .sos-grid { grid-template-columns: 1fr 1fr; }
  .bsz-row { grid-template-columns: 1fr; }
  .bsz-cell:nth-child(2) { display: none; }
  .segmented { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intent-grid { grid-template-columns: 1fr; }
  .hero__proof { gap: 8px; }
  .hero__proof span { font-size: 0.72rem; }
}

@media print {
  .nav,
  .hero,
  .quickstart,
  #ampel-system,
  #themen,
  #geraete,
  #social,
  #ki,
  #cybermobbing-teaser,
  #faq,
  #quellen,
  .footer,
  .section-actions,
  .breadcrumb,
  .article-sidebar,
  .article-hero,
  .article-cta,
  .print-action {
    display: none !important;
  }
  body { background: #fff; color: #111; }
  .section { padding: 0; }
  .article-layout { display: block; }
  .article-main,
  .print-sheet {
    box-shadow: none;
    border: 0;
    padding: 0;
  }
  .print-sheet {
    page-break-after: always;
    margin: 0 0 24px;
  }
  #familienplan {
    display: block !important;
    padding: 24px 0;
  }
  #familienplan .section__hd--center {
    text-align: left;
    margin-bottom: 24px;
  }
  .plan-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .plan-item { break-inside: avoid; border-color: #999; }
}
