
/* ============ DESIGN TOKENS ============ */
:root {
  /* Brand colors */
  --ac-teal: #0796A2;
  --ac-teal-dark: #05707A;
  --ac-teal-tint: #E6F4F5;
  --ac-teal-faint: #F4FAFB;

  /* Text */
  --ac-ink: #14202B;
  --ac-graphite: #3D4A57;
  --ac-mist: #6B7682;
  --ac-fog: #94A0AB;

  /* Surfaces */
  --ac-pearl: #FAFAF7;
  --ac-cream: #F7F5EF;
  --ac-cloud: #F2F4F6;
  --ac-line: #E1E5EA;
  --ac-line-soft: #EDF0F3;
  --ac-white: #FFFFFF;

  /* Accents — Marken-Magenta (allergocover.care) */
  --ac-magenta: #E0007A;
  --ac-magenta-dark: #A8005C;
  --ac-magenta-tint: #FBE7F1;
  --ac-coral: #C25D5D;

  /* Typography */
  --font-display: 'Newsreader', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Menlo', 'Monaco', monospace;

  /* Layout */
  --content-max: 720px;
  --content-wide: 920px;
  --content-edge: 1180px;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ac-ink);
  background: var(--ac-pearl);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--ac-teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ac-teal);
}

/* ============ TOPBAR ============ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--ac-line-soft);
}

.topbar__inner {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 14px var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ac-ink);
}

.brand__logo {
  height: 38px;
  width: auto;
  display: block;
}
.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--ac-teal);
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand__name sup {
  font-size: 9px;
  font-weight: 400;
  vertical-align: super;
  color: var(--ac-mist);
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  font-size: 14px;
  color: var(--ac-graphite);
}

.topbar__nav a {
  text-decoration: none;
  color: var(--ac-graphite);
}

.topbar__nav a:hover {
  color: var(--ac-teal);
}

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

/* ============ BREADCRUMB ============ */
.breadcrumb {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: var(--s-5) var(--s-5) 0;
  font-size: 13px;
  color: var(--ac-mist);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

.breadcrumb a {
  color: var(--ac-mist);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--ac-teal);
}

.breadcrumb__sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* ============ ARTICLE LAYOUT ============ */
main {
  background: var(--ac-pearl);
}

.article {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.prose {
  max-width: var(--content-max);
  margin: 0 auto;
}

.prose--wide {
  max-width: var(--content-wide);
}

/* ============ HERO ============ */
.hero {
  padding: var(--s-8) 0 var(--s-7);
  border-bottom: 1px solid var(--ac-line-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/de/img/ac-stoff-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,250,247,0.4) 0%, var(--ac-pearl) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-5);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ac-teal);
}

.hero__photo {
  margin: 0 0 var(--s-7) 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ac-cloud);
}
.hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .hero__photo { margin-bottom: var(--s-5); }
}

h1.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ac-ink);
  margin-bottom: var(--s-5);
  font-feature-settings: "ss01" 1;
}

h1.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ac-teal-dark);
}

.hero__subhead {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ac-graphite);
  margin-bottom: var(--s-6);
  max-width: 38em;
}

.byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: var(--ac-mist);
  padding-top: var(--s-4);
  border-top: 1px solid var(--ac-line-soft);
}

.byline__author {
  color: var(--ac-ink);
  font-weight: 500;
}

.byline__sep {
  opacity: 0.4;
}

.byline__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-mono);
  background: var(--ac-teal-tint);
  color: var(--ac-teal-dark);
  padding: 3px 8px;
  border-radius: 10px;
}

.byline__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ac-teal);
  border-radius: 50%;
}

/* ============ TRUST BAR (Siegel + Auszeichnungen) ============ */
.trust-bar {
  background: var(--ac-white);
  border-top: 1px solid var(--ac-line);
  border-bottom: 1px solid var(--ac-line);
  padding: var(--s-6) 0;
}

.trust-bar__inner {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 0 var(--s-3);
  border-right: 1px solid var(--ac-line-soft);
}

.trust-item:last-child { border-right: none; }

.trust-item__seal {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__seal--siegel {
  width: 62px;
  height: 74px;
  border: 1px solid var(--ac-line);
  background: var(--ac-white);
  padding: 2px;
}

.trust-item__seal img {
  max-width: 100%;
  max-height: 100%;
}

.trust-item__seal-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--ac-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ac-teal-dark);
}

.trust-item__seal-circle--sm {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-item__text {
  min-width: 0;
}

.trust-item__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ac-ink);
  line-height: 1.3;
  margin-bottom: 2px;
}

.trust-item__sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ac-graphite);
  line-height: 1.4;
}

@media (max-width: 820px) {
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-4); }
  .trust-item { border-right: none; padding: 0; }
}

@media (max-width: 480px) {
  .trust-bar__inner { grid-template-columns: 1fr; }
}

/* ============ SYSTEM SPECS (Allergocover-Technik) ============ */
.system-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  margin: var(--s-6) 0;
}

.spec-card {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.spec-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ac-teal-tint);
  color: var(--ac-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.spec-card__h {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ac-ink);
  letter-spacing: -0.01em;
}

.spec-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ac-graphite);
  margin: 0;
}

.spec-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ac-teal-dark);
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--ac-line-soft);
}

@media (max-width: 720px) {
  .system-specs { grid-template-columns: 1fr; }
}

/* ============ PROFI TIPP BOX ============ */
.tip {
  background: linear-gradient(135deg, var(--ac-teal-tint) 0%, #E8F4F5 100%);
  border: 1px solid #B6D9DD;
  border-left: 4px solid var(--ac-teal);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-7) 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-5);
  align-items: start;
}

.tip__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ac-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ac-teal-dark);
  border: 1.5px solid var(--ac-teal);
}

.tip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-teal-dark);
  margin-bottom: 4px;
}

.tip__h {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ac-ink);
  margin-bottom: var(--s-3);
}

.tip__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ac-ink);
}

/* ============ INLINE GLOSSAR (dfn-Style) ============ */
dfn.glossar {
  font-style: normal;
  font-weight: 500;
  color: var(--ac-teal-dark);
  border-bottom: 1px dotted var(--ac-teal);
  cursor: help;
  position: relative;
}

dfn.glossar:hover { color: var(--ac-teal); }

.glossar-list {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ac-line);
}

.glossar-list dt {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ac-ink);
  padding: var(--s-3) var(--s-4) var(--s-1) 0;
  border-bottom: 1px solid var(--ac-line-soft);
  font-size: 14px;
}

.glossar-list dd {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ac-graphite);
  padding: var(--s-3) 0 var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--ac-line-soft);
  border-left: 1px solid var(--ac-line-soft);
  margin: 0;
}

@media (max-width: 640px) {
  .glossar-list { grid-template-columns: 1fr; }
  .glossar-list dd { border-left: none; padding-left: 0; }
  .glossar-list dt { padding-bottom: 0; border-bottom: none; }
}

/* ============ AUTHORITY · Fachgesellschaft-Empfehlung ============ */
.authority {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-7) var(--s-6);
  margin: var(--s-6) 0;
}

.authority__head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  align-items: center;
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--ac-line-soft);
}

.authority__logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ac-white);
  border: 1px solid var(--ac-line-soft);
  border-radius: 10px;
  padding: var(--s-2);
}

.authority__logo img {
  max-width: 100%;
  max-height: 100%;
}

.authority__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ac-ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.authority__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ac-graphite);
  text-transform: uppercase;
}

.authority__statements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}

.authority-stmt {
  padding-left: var(--s-5);
  border-left: 3px solid var(--ac-teal);
}

.authority-stmt__h {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ac-ink);
  margin-bottom: var(--s-2);
  line-height: 1.35;
}

.authority-stmt__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ac-graphite);
  margin-bottom: var(--s-2);
}

.authority-stmt__source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ac-teal-dark);
}

@media (max-width: 720px) {
  .authority__statements { grid-template-columns: 1fr; gap: var(--s-5); }
  .authority__head { grid-template-columns: 64px 1fr; }
  .authority__logo { width: 64px; height: 64px; }
}

/* ============ MARKT-TABELLE (Kassen vs Premium) ============ */
.markt-table {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  overflow: hidden;
  margin: var(--s-6) 0;
}

.markt-table__row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-bottom: 1px solid var(--ac-line-soft);
}

.markt-table__row:last-child { border-bottom: none; }

.markt-table__row--head {
  background: var(--ac-cloud);
  border-bottom: 2px solid var(--ac-line);
}

.markt-table__cell {
  padding: var(--s-4) var(--s-5);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ac-graphite);
  border-right: 1px solid var(--ac-line-soft);
}

.markt-table__cell:last-child { border-right: none; }

.markt-table__cell--label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ac-graphite);
  font-weight: 500;
  background: var(--ac-cloud);
}

.markt-table__cell--head {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ac-ink);
  letter-spacing: -0.01em;
}

.markt-table__cell--head-prem {
  color: var(--ac-teal-dark);
}

@media (max-width: 720px) {
  .markt-table__row { grid-template-columns: 1fr; }
  .markt-table__cell--label { padding-bottom: 4px; }
  .markt-table__cell { border-right: none; }
}

/* ============ HERO ILLUSTRATION ============ */
.hero__illustration {
  margin-top: var(--s-7);
  background: var(--ac-white);
  border: 1px solid var(--ac-line-soft);
  border-radius: 10px;
  overflow: hidden;
}

.hero__svg-wrap {
  padding: var(--s-6) var(--s-5);
}

.hero__svg-caption {
  border-top: 1px solid var(--ac-line-soft);
  padding: var(--s-4) var(--s-5);
  font-size: 13px;
  color: var(--ac-mist);
  background: var(--ac-cream);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

/* ============ SECTIONS ============ */
section {
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--ac-line-soft);
}

section:last-of-type {
  border-bottom: none;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
  margin-bottom: var(--s-5);
}

h2 em {
  font-style: italic;
  color: var(--ac-teal-dark);
}

.section__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-4);
}
.section__num--quiet {
  color: var(--ac-fog);
}

h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ac-ink);
  margin: var(--s-6) 0 var(--s-3);
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ac-ink);
  margin: var(--s-5) 0 var(--s-2);
}

p {
  margin-bottom: var(--s-4);
  color: var(--ac-graphite);
}

p strong {
  color: var(--ac-ink);
  font-weight: 600;
}

/* Drop cap for intro paragraph */
.prose p.lead {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--ac-ink);
  margin-bottom: var(--s-5);
}

ul,
ol {
  margin: var(--s-3) 0 var(--s-5);
  padding-left: 22px;
  color: var(--ac-graphite);
}

ul li,
ol li {
  margin-bottom: var(--s-3);
  padding-left: 6px;
}

ul li::marker {
  color: var(--ac-teal);
}

/* ============ KURZANTWORT (ANSWER CAPSULE) ============ */
.capsule {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-left: 3px solid var(--ac-teal);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
  position: relative;
}

.capsule__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-3);
}

.capsule p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ac-ink);
  margin-bottom: var(--s-3);
}

.capsule p:last-child {
  margin-bottom: 0;
}

/* ============ KERNAUSSAGEN ============ */
.keypoints {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0;
  counter-reset: keypoint;
}

.keypoints li {
  counter-increment: keypoint;
  position: relative;
  padding: var(--s-5) 0 var(--s-5) 56px;
  border-top: 1px solid var(--ac-line-soft);
  margin-bottom: 0;
}

.keypoints li:last-child {
  border-bottom: 1px solid var(--ac-line-soft);
}
.keypoints__why {
  display: block;
  margin-top: 7px;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--ac-mist);
}

.keypoints li::before {
  content: counter(keypoint, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ac-teal);
  letter-spacing: 0.05em;
}

.keypoints li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ac-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

/* ============ FIGURE BLOCK (KI-zitierfähig, multimodal) ============ */
.figure-block {
  margin: var(--s-7) 0;
}

.figure-block__media {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.figure-block__media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.figure-block__caption {
  margin-top: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-left: 2px solid var(--ac-teal);
  background: var(--ac-pearl);
}

.figure-block__caption-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: 4px;
}

.figure-block__caption-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ac-graphite);
  margin: 0;
}

/* ============ ZWISCHENVIDEO ============ */
.media-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ac-ink);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  overflow: hidden;
}
.media-video__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============ STAT TILES (KI-zitierfähige Zahlen) ============ */
.stat-section {
  background: linear-gradient(180deg, var(--ac-white) 0%, var(--ac-pearl) 100%);
  border-top: 1px solid var(--ac-line);
  border-bottom: 1px solid var(--ac-line);
  padding: var(--s-9) 0;
  margin: var(--s-8) 0;
}

.stat-section__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.stat-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-3);
  text-align: center;
}

.stat-section__h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-7);
}

.stat-section__h em {
  font-style: italic;
  color: var(--ac-teal);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ac-line);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  overflow: hidden;
}

.stat-tile {
  background: var(--ac-white);
  padding: var(--s-7) var(--s-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.stat-tile__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ac-teal);
  font-variant-numeric: tabular-nums;
}

.stat-tile__num-suffix {
  font-size: 0.55em;
  color: var(--ac-teal);
  font-weight: 400;
  margin-left: 2px;
}

.stat-tile__label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ac-ink);
  font-weight: 500;
  max-width: 220px;
}

.stat-tile__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ac-graphite);
  margin-top: var(--s-2);
}

.stat-section__footnote {
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ac-graphite);
  text-align: center;
  line-height: 1.55;
}

.stat-section__footnote a {
  color: var(--ac-teal-dark);
}

@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-tile { padding: var(--s-6) var(--s-4); }
}

/* ============ TL;DR Box (KI-Antwort-Block für direkte Extraktion) ============ */
.tldr {
  background: var(--ac-ink);
  color: var(--ac-white);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
  position: relative;
}

.tldr__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tldr__label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--ac-teal);
  display: inline-block;
}

.tldr__text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ac-white);
  margin: 0;
}

.tldr__text strong {
  font-weight: 500;
  color: #B6E7EB;
}

.tldr__meta {
  margin: var(--s-4) 0 0;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #8FA3AD;
}

.tldr__meta strong {
  color: #B6E7EB;
  font-weight: 500;
}

/* ============ SOURCE BOX (Verweis auf allergocover.care) ============ */
.source-box {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  background: var(--ac-teal);
  border-radius: 10px;
  padding: var(--s-5) var(--s-6);
  margin: var(--s-6) 0;
  flex-wrap: wrap;
}

.source-box__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ac-white);
  color: var(--ac-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}

.source-box__text {
  flex: 1;
  min-width: 220px;
}

.source-box__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B6E7EB;
  margin-bottom: 2px;
}

.source-box__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ac-white);
  line-height: 1.35;
  margin: 0;
}

.source-box__title a {
  color: var(--ac-white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
  text-underline-offset: 3px;
}

.source-box__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ac-white);
  color: var(--ac-teal-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease;
}

.source-box__cta:hover { transform: translateX(2px); }

/* ============ INHALTSVERZEICHNIS ============ */
.toc {
  background: var(--ac-pearl);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
}

.toc__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-4);
}

.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px var(--s-6);
  counter-reset: toc;
}

.toc__list li {
  counter-increment: toc;
  border-bottom: 1px solid var(--ac-line-soft);
}

.toc__list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 2px;
  font-size: 14.5px;
  color: var(--ac-graphite);
  text-decoration: none;
  transition: color 0.12s ease;
}

.toc__list a:hover { color: var(--ac-teal); }

.toc__list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ac-fog);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .toc__list { grid-template-columns: 1fr; }
}

/* ============ BRAND CARD (KI-zitierfähig) ============ */
.brand-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFA 100%);
  border: 1px solid var(--ac-line);
  border-top: 3px solid var(--ac-teal);
  border-radius: 10px;
  padding: var(--s-7) var(--s-6);
  margin: var(--s-7) 0;
  position: relative;
}

.brand-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-4);
}

.brand-card__eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--ac-teal);
  display: inline-block;
}

.brand-card__h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ac-ink);
  margin-bottom: var(--s-4);
}

.brand-card__h em {
  font-style: italic;
  color: var(--ac-teal);
}

.brand-card__lead {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ac-ink);
  margin-bottom: var(--s-5);
}

.brand-card__specs {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ac-line-soft);
}

.brand-card__specs li {
  padding: var(--s-4) var(--s-5) var(--s-4) 0;
  border-bottom: 1px solid var(--ac-line-soft);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-card__specs li:nth-child(odd) {
  padding-right: var(--s-6);
  border-right: 1px solid var(--ac-line-soft);
}

.brand-card__specs li:nth-child(even) {
  padding-left: var(--s-6);
}

.brand-card__spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ac-graphite);
}

.brand-card__spec-val {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ac-ink);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .brand-card__specs {
    grid-template-columns: 1fr;
  }
  .brand-card__specs li:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .brand-card__specs li:nth-child(even) {
    padding-left: 0;
  }
  .brand-card__h {
    font-size: 24px;
  }
}

/* ============ PULL QUOTE (KI-zitierfähig, standalone) ============ */
.pull-quote {
  margin: var(--s-7) 0;
  padding: var(--s-6) 0 var(--s-6) var(--s-5);
  border-left: 2px solid var(--ac-teal);
}

.pull-quote__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ac-ink);
  margin: 0 0 var(--s-3) 0;
}

.pull-quote__text em {
  font-style: italic;
  color: var(--ac-teal-dark);
}

.pull-quote__source {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-graphite);
}

@media (max-width: 640px) {
  .pull-quote__text { font-size: 19px; }
}

/* ============ DIFF (Premium-Differenzierung) ============ */
.diff {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-7) var(--s-6);
  margin: var(--s-6) 0;
}

.diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6) var(--s-7);
  margin-top: var(--s-5);
}

.diff__item {
  padding-left: var(--s-5);
  border-left: 2px solid var(--ac-teal);
}

.diff__item-h {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ac-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.diff__item-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ac-graphite);
}

.diff__item-fact {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ac-teal-dark);
}

.diff__item-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ac-teal-tint);
  border-radius: 10px;
  color: var(--ac-teal-dark);
  margin-bottom: var(--s-3);
}
.diff__item-icon svg { width: 19px; height: 19px; display: block; }

@media (max-width: 640px) {
  .diff__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ============ COMPARISON TABLE ============ */
.table-wrap {
  margin: var(--s-6) 0;
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  background: var(--ac-white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table.comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}

table.comparison thead th {
  background: var(--ac-cream);
  text-align: left;
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ac-graphite);
  border-bottom: 1px solid var(--ac-line);
}

table.comparison thead th:nth-child(2) {
  border-left: 1px solid var(--ac-line);
  color: var(--ac-coral);
}

table.comparison thead th:nth-child(3) {
  border-left: 1px solid var(--ac-line);
  color: var(--ac-teal-dark);
}

table.comparison tbody td {
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--ac-line-soft);
  vertical-align: top;
  line-height: 1.55;
  color: var(--ac-graphite);
}

table.comparison tbody td:first-child {
  font-weight: 600;
  color: var(--ac-ink);
  background: var(--ac-pearl);
  width: 24%;
}

table.comparison tbody td:nth-child(2) {
  border-left: 1px solid var(--ac-line-soft);
  width: 38%;
}

table.comparison tbody td:nth-child(3) {
  border-left: 1px solid var(--ac-line-soft);
  width: 38%;
  background: var(--ac-teal-faint);
}

table.comparison tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  font-size: 13px;
  color: var(--ac-mist);
  font-style: italic;
  margin-top: var(--s-3);
  padding: 0 var(--s-2);
}

/* ============ MATERIAL PRINCIPLE CARDS ============ */
.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin: var(--s-6) 0;
}

@media (max-width: 768px) {
  .principle-grid {
    grid-template-columns: 1fr;
  }
}

.principle {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-6);
}

.principle--vlies {
  border-top: 3px solid var(--ac-coral);
}

.principle--gewebe {
  border-top: 3px solid var(--ac-teal);
}

.principle__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-mist);
  margin-bottom: var(--s-2);
}

.principle__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ac-ink);
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}

.principle__svg {
  margin: 0 -8px var(--s-4);
}

.principle__props {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.principle__props li {
  padding: var(--s-3) 0;
  border-top: 1px solid var(--ac-line-soft);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-4);
  margin: 0;
}

.principle__props li::before {
  display: none;
}

.principle__props li:first-child {
  border-top: none;
}

.principle__prop-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ac-mist);
  padding-top: 2px;
}

.principle__prop-val {
  color: var(--ac-graphite);
  line-height: 1.5;
}

/* ============ PROCESS FLOW ============ */
.process-flow {
  margin: var(--s-6) 0;
  padding: var(--s-6);
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
}

.process-flow__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: var(--s-4);
  text-align: center;
}

.process-chain {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--s-2);
  flex-wrap: wrap;
}

.process-chain__step {
  flex: 1;
  min-width: 110px;
  background: var(--ac-pearl);
  border: 1px solid var(--ac-line-soft);
  border-radius: 10px;
  padding: var(--s-3) var(--s-4);
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ac-ink);
  position: relative;
}

.process-chain__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ac-teal);
  font-size: 14px;
  z-index: 1;
}

@media (max-width: 700px) {
  .process-chain {
    flex-direction: column;
  }
  .process-chain__step:not(:last-child)::after {
    content: "↓";
    right: 50%;
    top: auto;
    bottom: -16px;
    transform: translateX(50%);
  }
}

/* ============ PULL QUOTE ============ */
.pullquote {
  margin: var(--s-7) 0;
  padding: var(--s-5) 0 var(--s-5) var(--s-5);
  border-left: 3px solid var(--ac-teal);
}

.pullquote q {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  font-weight: 300;
  font-style: italic;
  color: var(--ac-ink);
  display: block;
  quotes: """ """;
  letter-spacing: -0.01em;
}

/* ============ EVIDENCE SECTION ============ */
.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-4);
  margin: var(--s-5) 0;
}

@media (max-width: 768px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}

.evidence-card {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  padding: var(--s-5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.evidence-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ac-teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.evidence-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ac-ink);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.evidence-card__body {
  font-size: 14px;
  color: var(--ac-graphite);
  line-height: 1.55;
  flex: 1;
}

/* ============ WASCHFREQUENZ PARADOX ============ */
.paradox {
  margin: var(--s-6) 0;
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-6);
}

.paradox__head {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.paradox__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-magenta);
}

.paradox__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ac-ink);
  letter-spacing: -0.01em;
}

.paradox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

@media (max-width: 600px) {
  .paradox-grid {
    grid-template-columns: 1fr;
  }
}

.paradox-cell {
  padding: var(--s-4);
  border: 1px solid var(--ac-line-soft);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ac-graphite);
  line-height: 1.55;
  background: var(--ac-pearl);
}

.paradox-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ac-ink);
  margin-bottom: 6px;
  font-weight: 500;
}

/* ============ CHECKLIST ============ */
.checklist {
  list-style: none;
  padding: 0;
  counter-reset: cl;
  margin: var(--s-5) 0;
}

.checklist li {
  counter-increment: cl;
  position: relative;
  padding: var(--s-4) 0 var(--s-4) 50px;
  border-top: 1px solid var(--ac-line-soft);
  margin: 0;
  color: var(--ac-graphite);
  line-height: 1.55;
}

.checklist li:last-child {
  border-bottom: 1px solid var(--ac-line-soft);
}

.checklist li::before {
  content: counter(cl);
  position: absolute;
  left: 0;
  top: var(--s-4);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ac-teal-dark);
  background: var(--ac-teal-tint);
  border-radius: 50%;
}

.checklist li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ac-ink);
  margin-bottom: 4px;
  font-weight: 500;
}

/* ============ LICHTTEST VISUAL ============ */
.lichttest {
  background: linear-gradient(135deg, var(--ac-cream), var(--ac-pearl));
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
}

.lichttest__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-magenta);
  margin-bottom: var(--s-2);
}

.lichttest__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ac-ink);
  margin-bottom: var(--s-5);
  letter-spacing: -0.01em;
}

.lichttest__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.lichttest__step {
  background: var(--ac-white);
  border: 1px solid var(--ac-line-soft);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lichttest__step-visual {
  background: linear-gradient(180deg, #FCFCFA 0%, #F4F6F6 100%);
  border-bottom: 1px solid var(--ac-line-soft);
  aspect-ratio: 5 / 4;
}

.lichttest__step-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lichttest__step-body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.lichttest__step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ac-teal);
}

.lichttest__step-h {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ac-ink);
  letter-spacing: -0.01em;
}

.lichttest__step-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ac-graphite);
}

@media (max-width: 760px) {
  .lichttest__steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 440px) {
  .lichttest__steps { grid-template-columns: 1fr; }
}

/* ============ BEWEISGRAFIK-LABEL (v4.0) ============ */
.beweisgrafik__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ac-teal-dark);
  margin-bottom: var(--s-3);
}
.prozessgrafik figcaption p { margin: 0 0 var(--s-3) 0; }
.prozessgrafik figcaption p:last-child { margin-bottom: 0; }
.hero__svg-caption span { display: block; }
.hero__svg-caption .beweisgrafik__label { margin-bottom: 6px; }

/* ============ CARBONFADEN ============ */
.cf-lead {
  font-size: 17px;
  line-height: 1.6;
}
.cf-figure {
  max-width: var(--content-wide);
  margin: var(--s-6) auto;
}
.cf-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cf-figure figcaption {
  margin-top: var(--s-3);
  padding: var(--s-4);
  background: var(--ac-cloud);
  border-radius: 10px;
}

/* ============ PROZESSGRAFIK (v4.0 Grafik-Standard) ============ */
.prozessgrafik {
  margin: var(--s-6) 0;
  padding: var(--s-5);
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
}
.prozessgrafik svg { width: 100%; height: auto; display: block; }
.prozessgrafik figcaption {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--ac-line-soft);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ac-graphite);
}
.prozessgrafik figcaption strong { color: var(--ac-ink); }

/* ============ BEWEISLOGIK (dreistufig) ============ */
.beweislogik { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin: var(--s-6) 0; }
.beweisebene { background: var(--ac-white); border: 1px solid var(--ac-line); border-top: 3px solid var(--ac-teal); border-radius: 10px; padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.beweisebene--physik { border-top-color: #5B8D9C; }
.beweisebene--technik { border-top-color: var(--ac-teal); }
.beweisebene--klinik { border-top-color: var(--ac-magenta); }
.beweisebene__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ac-mist); }
.beweisebene__h { font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.3; color: var(--ac-ink); letter-spacing: -0.01em; }
.beweisebene__body { font-size: 14px; line-height: 1.6; color: var(--ac-graphite); flex: 1; }
.beweisebene__belegart { font-family: var(--font-mono); font-size: 11px; line-height: 1.5; color: var(--ac-teal-dark); padding-top: var(--s-3); border-top: 1px solid var(--ac-line-soft); }
.beweisart { display: inline-block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.03em; line-height: 1.35; padding: 4px 8px; border-radius: 10px; white-space: nowrap; }
.beweisart--physik { background: #E4EDF0; color: #3D6470; }
.beweisart--technik { background: var(--ac-teal-tint); color: var(--ac-teal-dark); }
.beweisart--klinik { background: var(--ac-magenta-tint); color: var(--ac-magenta-dark); }
.beweisart--studie { background: #EAE6F0; color: #5B4E78; }
.beweisart--pruef { background: var(--ac-cream); color: var(--ac-graphite); }
@media (max-width: 720px) { .beweislogik { grid-template-columns: 1fr; } }

/* ============ BEWEISBOX ============ */
.beweisbox {
  background: var(--ac-white);
  border: 1px solid var(--ac-teal);
  border-left: 4px solid var(--ac-teal);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
}

.beweisbox__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-teal-dark);
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.beweisbox__label::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--ac-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.beweisbox__h {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ac-ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
}

.beweisbox__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--s-3) var(--s-4);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--ac-line-soft);
}

.beweisbox__row:first-of-type { border-top: none; }

.beweisbox__key {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ac-teal-dark);
  padding-top: 2px;
}

.beweisbox__val {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ac-graphite);
}

.beweisbox__val strong { color: var(--ac-ink); font-weight: 600; }

.beweisbox__src {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--ac-line-soft);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ac-mist);
}

@media (max-width: 560px) {
  .beweisbox__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============ DEFINITION BOX ============ */
.defbox {
  background: var(--ac-ink);
  color: var(--ac-pearl);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
}

.defbox__term {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B6E7EB;
  margin-bottom: var(--s-3);
}

.defbox__text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ac-pearl);
}

.defbox__text strong,
.defbox__note strong { color: #FFFFFF; font-weight: 500; }

.defbox__note {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  line-height: 1.6;
  color: #C5D0D6;
}

/* ============ EINORDNUNG (v4.0 kompakt) ============ */
.h2--quiet {
  font-size: 24px;
  color: var(--ac-graphite);
}
.einordnung {
  border-left: 2px solid var(--ac-line);
  padding-left: var(--s-5);
  margin: var(--s-5) 0;
}
.einordnung p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ac-mist);
  margin-bottom: var(--s-3);
}
.einordnung p:last-child { margin-bottom: 0; }

/* ============ LIMITATIONS BOX ============ */
.limitations {
  background: var(--ac-cream);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
}

.limitations__label {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-magenta);
  margin-bottom: var(--s-3);
}

.limitations__label::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--ac-magenta);
  border-radius: 50%;
  flex-shrink: 0;
}

.limitations h3 {
  margin-top: 0;
}

/* ============ FAQ ============ */
.faq {
  margin: var(--s-5) 0;
}

.faq__item {
  border-top: 1px solid var(--ac-line);
  padding: var(--s-5) 0;
}

.faq__item:last-child {
  border-bottom: 1px solid var(--ac-line);
}

.faq__src {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--ac-teal-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--ac-teal);
  padding-bottom: 1px;
}
.faq__src:hover { color: var(--ac-teal); }

.faq__q {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ac-ink);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.faq__a {
  color: var(--ac-graphite);
  line-height: 1.65;
}

.faq__a p {
  margin-bottom: var(--s-3);
}

.faq__a p:last-child {
  margin-bottom: 0;
}

/* ============ SOURCES TABLE ============ */
.sources-wrap {
  margin: var(--s-6) 0;
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  background: var(--ac-white);
  overflow-x: auto;
}

table.sources {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 880px;
}

table.sources thead th {
  background: var(--ac-cream);
  text-align: left;
  padding: var(--s-3) var(--s-4);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ac-graphite);
  border-bottom: 1px solid var(--ac-line);
}

table.sources tbody td {
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--ac-line-soft);
  vertical-align: top;
  color: var(--ac-graphite);
  line-height: 1.5;
}

table.sources tbody td:nth-child(3) {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ac-ink);
}

table.sources tbody td:last-child {
  color: var(--ac-mist);
  font-size: 13px;
}

/* ============ LINK LIST (WEITERLESEN) ============ */
.linklist {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0;
}

.linklist li {
  border-top: 1px solid var(--ac-line-soft);
  margin: 0;
  padding: 0;
}

.linklist li:last-child {
  border-bottom: 1px solid var(--ac-line-soft);
}

.linklist a {
  display: block;
  padding: var(--s-4) 0;
  text-decoration: none;
  color: var(--ac-ink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-4);
  align-items: center;
  transition: color 0.2s ease;
}

.linklist a:hover {
  color: var(--ac-teal);
}

.linklist__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.linklist__desc {
  font-size: 14px;
  color: var(--ac-mist);
  font-family: var(--font-body);
  font-weight: 400;
}

.linklist__arrow {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ac-teal);
  transition: transform 0.2s ease;
}

.linklist a:hover .linklist__arrow {
  transform: translateX(4px);
}

/* ============ CTA BLOCK ============ */
.cta-block__help {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--ac-line-soft);
  font-size: 13.5px;
  color: var(--ac-mist);
}
.cta-block__help a { color: var(--ac-teal-dark); }

.midcta {
  margin: var(--s-6) 0;
  padding: var(--s-5) var(--s-6);
  background: var(--ac-teal-faint);
  border: 1px solid var(--ac-teal-tint);
  border-left: 3px solid var(--ac-teal);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.midcta__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ac-graphite);
  max-width: 60ch;
}
.midcta__text strong { color: var(--ac-ink); }
.midcta a.btn { flex-shrink: 0; }

.cta-block {
  background: var(--ac-ink);
  color: var(--ac-pearl);
  border-radius: 10px;
  padding: var(--s-7) var(--s-6);
  margin: var(--s-7) 0;
}

.cta-block h3 {
  color: var(--ac-pearl);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
}

.cta-block p {
  color: rgba(250, 250, 247, 0.75);
  margin-bottom: var(--s-5);
  max-width: 38em;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--ac-magenta);
  color: white;
}

.btn--primary:hover {
  background: var(--ac-magenta-dark);
  color: white;
}

.btn--secondary {
  background: transparent;
  color: var(--ac-pearl);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

.btn__arrow {
  font-family: var(--font-mono);
}

/* ============ FOOTER ============ */
.disclaimer {
  background: var(--ac-cloud);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--ac-line);
}

.disclaimer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.disclaimer__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-mist);
  margin-bottom: var(--s-3);
}

.disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ac-mist);
  margin-bottom: var(--s-3);
}

.site-footer {
  background: var(--ac-ink);
  color: rgba(250, 250, 247, 0.6);
  padding: var(--s-7) 0 var(--s-5);
  font-size: 13px;
}

.site-footer__inner {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 700px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
}

.site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.45);
  margin-bottom: var(--s-3);
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col li {
  padding: 0;
  margin: 0 0 var(--s-2);
  border: none;
}

.site-footer__col li::marker {
  display: none;
}

.site-footer__col a {
  color: rgba(250, 250, 247, 0.7);
  text-decoration: none;
  font-size: 14px;
}

.site-footer__col a:hover {
  color: var(--ac-teal);
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ac-pearl);
  margin-bottom: var(--s-2);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.4);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: var(--s-3);
}

.site-footer__bottom a {
  color: rgba(250, 250, 247, 0.5);
  text-decoration: none;
  margin-left: var(--s-3);
}

.site-footer__bottom a:hover {
  color: var(--ac-pearl);
}

/* ============ ACCESSIBILITY ============ */
:focus-visible {
  outline: 2px solid var(--ac-teal);
  outline-offset: 3px;
  border-radius: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ PRINT ============ */
@media print {
  .topbar,
  .cta-block,
  .site-footer {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ GARANTIEFALLE-BOX ============ */
.fallbox {
  background: var(--ac-magenta-tint);
  border: 1px solid var(--ac-magenta);
  border-left: 4px solid var(--ac-magenta);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
}
.fallbox__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-magenta-dark);
  margin-bottom: var(--s-2);
}
.fallbox__h {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ac-ink);
  margin-bottom: var(--s-3);
}
.fallbox p { color: var(--ac-graphite); margin-bottom: 0; }

/* ============ MOBILE-OPTIMIERUNG (Seitenlaenge + Lesbarkeit) ============ */
@media (max-width: 680px) {
  .article { padding: 0 var(--s-4); }
  section { padding: var(--s-6) 0; }
  .hero { padding: var(--s-6) 0 var(--s-5); }
  .stat-section { padding: var(--s-7) 0; margin: var(--s-6) 0; }
  .stat-section__h { margin-bottom: var(--s-5); }
  .figure-block, .pull-quote, .pullquote, .cf-figure, .tip,
  .prozessgrafik, .beweislogik, .system-specs, .principle-grid { margin: var(--s-5) 0; }
  .tip, .authority, .diff, .beweisbox, .brand-card, .paradox,
  .lichttest, .capsule, .defbox, .tldr, .toc, .fallbox,
  .spec-card, .principle, .evidence-card { padding: var(--s-5); }
  h3 { margin: var(--s-5) 0 var(--s-2); }
  .keypoints li, .checklist li { padding-top: var(--s-4); padding-bottom: var(--s-4); }
  /* textreiche SVG-Grafik: horizontal scrollbar statt unlesbar schrumpfen */
  .hero__svg-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: var(--s-4) var(--s-3); }
  .hero__svg-wrap svg { min-width: 600px; }
}
@media (max-width: 440px) {
  .hero__svg-wrap svg { min-width: 540px; }
}

/* ============ SITE HEADER (Allergocover-Konzern) ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--ac-line-soft);
}
.site-header__inner {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 12px var(--s-5);
  display: flex; align-items: center; gap: var(--s-5);
}
.site-header__logo { flex-shrink: 0; display: block; }
.site-header__logo img { height: 42px; width: auto; display: block; }
.site-header__nav {
  display: flex; align-items: center; gap: var(--s-5);
  margin: 0 auto; font-size: 15px;
}
.site-header__nav a {
  color: var(--ac-ink); text-decoration: none; white-space: nowrap; font-weight: 400;
}
.site-header__nav a:hover { color: var(--ac-teal); }
.site-header__actions { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.site-header__cta {
  background: var(--ac-teal); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 10px 18px; border-radius: 10px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease;
}
.site-header__cta:hover { background: var(--ac-teal-dark); color: #fff; }

/* Sprachschalter (no-JS via <details>) */
.langswitch { position: relative; }
.langswitch__btn {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--ac-line); border-radius: 10px;
  padding: 8px 12px; font-size: 13px; font-weight: 600;
  color: var(--ac-graphite); background: #fff;
  font-family: var(--font-body);
}
.langswitch__btn::-webkit-details-marker { display: none; }
.langswitch__btn::after { content: "\25BE"; font-size: 10px; color: var(--ac-mist); }
.langswitch[open] .langswitch__btn { border-color: var(--ac-teal); color: var(--ac-teal-dark); }
.langswitch__globe { width: 14px; height: 14px; display: inline-block; flex-shrink: 0; }
.langswitch__menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--ac-line);
  border-radius: 10px; padding: 6px;
  list-style: none; margin: 0;
  min-width: 168px; max-height: 340px; overflow-y: auto;
  box-shadow: 0 14px 34px rgba(20,32,43,0.16);
  z-index: 60;
}
.langswitch__menu li { margin: 0; padding: 0; }
.langswitch__menu li::marker { content: ""; }
.langswitch__menu a {
  display: block; padding: 8px 12px; border-radius: 7px;
  font-size: 14px; color: var(--ac-graphite); text-decoration: none;
}
.langswitch__menu a:hover { background: var(--ac-teal-faint); color: var(--ac-teal-dark); }
.langswitch__menu a[aria-current] { background: var(--ac-teal); color: #fff; font-weight: 600; }

@media (max-width: 980px) { .site-header__nav { display: none; } }
@media (max-width: 560px) {
  .site-header__logo img { height: 34px; }
  .site-header__cta { padding: 9px 14px; font-size: 13px; }
  .site-header__inner { padding: 10px var(--s-4); gap: var(--s-3); }
}

/* ============ FOOTER — Verantwortung / EU-AI-Act / Spalten / Sprachen ============ */
.footer-resp {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5);
  padding: var(--s-6);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  margin-bottom: var(--s-5);
}
.footer-resp__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(250,250,247,0.4); margin-bottom: var(--s-3); line-height: 1.4;
}
.footer-resp__name { font-size: 14px; font-weight: 600; color: var(--ac-pearl); margin-bottom: 2px; line-height: 1.35; }
.footer-resp__place { font-size: 13px; color: rgba(250,250,247,0.55); margin: 0; }

.footer-ai {
  display: block; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: var(--s-6); margin-bottom: var(--s-7);
  transition: border-color 0.2s ease;
}
.footer-ai:hover { border-color: var(--ac-teal); }
.footer-ai__label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ac-teal); text-align: center; margin-bottom: var(--s-4);
}
.footer-ai__text {
  font-size: 14px; line-height: 1.7;
  color: rgba(250,250,247,0.75); text-align: center;
  max-width: 760px; margin: 0 auto;
}
.footer-ai__text strong { color: var(--ac-pearl); font-weight: 600; }

.footer-member {
  display: flex; align-items: center; justify-content: center; gap: var(--s-3);
  padding: var(--s-5) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--s-6);
  font-size: 13px; color: rgba(250,250,247,0.6); text-align: center;
}
.footer-member img { height: 36px; width: auto; opacity: 0.92; border-radius: 4px; }

.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--s-5);
}
.footer-col__h {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ac-teal); margin-bottom: var(--s-4);
}
.footer-col__name { font-size: 14px; font-weight: 600; color: var(--ac-pearl); margin-bottom: var(--s-2); }
.footer-col__desc { font-size: 13px; line-height: 1.6; color: rgba(250,250,247,0.55); margin-bottom: var(--s-3); }
.footer-col__home { font-size: 13px; color: rgba(250,250,247,0.7); text-decoration: none; }
.footer-col__home:hover { color: var(--ac-teal); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0 0 var(--s-2); padding: 0; }
.footer-col li::marker { content: ""; }
.footer-col ul a { font-size: 14px; color: rgba(250,250,247,0.7); text-decoration: none; }
.footer-col ul a:hover { color: var(--ac-teal); }

.footer-lang {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  padding-bottom: var(--s-5); margin-bottom: var(--s-4);
}
.footer-lang__pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(250,250,247,0.7); text-decoration: none;
  transition: all 0.15s ease;
}
.footer-lang__pill:hover { border-color: var(--ac-teal); color: var(--ac-teal); }
.footer-lang__pill--active { background: var(--ac-teal); border-color: var(--ac-teal); color: #fff; }
.footer-lang__pill--active:hover { color: #fff; }

.source-box__mark img { width: 34px; height: 34px; object-fit: contain; display: block; }

@media (max-width: 860px) {
  .footer-resp { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-resp { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-member { flex-direction: column; }
}
@media print { .site-header { display: none; } }



/* ============================================================
   BRIDGES — Vernetzung der Satelliten-Seiten
   (Material · Cleaning · Sleepcomfort ↔ Evidence)
   ============================================================ */

.bridges-section {
  background: linear-gradient(180deg, var(--ac-pearl) 0%, var(--ac-white) 100%);
}

.bridges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-5);
}
@media (max-width: 880px) {
  .bridges-grid { grid-template-columns: 1fr; }
}

.bridge-box {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-top: 3px solid var(--ac-teal);
  border-radius: 10px;
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
}

.bridge-box__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin: 0;
}

.bridge-box h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ac-ink);
  margin: 0;
}

.bridge-box p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ac-graphite);
  margin: 0;
  flex-grow: 1;
}

.bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ac-teal-dark);
  text-decoration: none;
  margin-top: var(--s-2);
  padding: 8px 0;
  border-top: 1px solid var(--ac-line-soft);
  transition: color 0.18s ease;
}
.bridge-link::after {
  content: "→";
  font-weight: 400;
  transition: transform 0.18s ease;
}
.bridge-link:hover {
  color: var(--ac-teal);
}
.bridge-link:hover::after {
  transform: translateX(3px);
}

/* Evidence-spezifische Anpassungen */
.evidence-figure {
  background: var(--ac-white);
  border: 1px solid var(--ac-line);
  border-radius: 10px;
  padding: var(--s-6);
  margin: var(--s-6) 0;
}
.evidence-figure svg {
  width: 100%;
  height: auto;
  display: block;
}
.evidence-figure figcaption {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--ac-line-soft);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ac-graphite);
}
.evidence-figure figcaption strong { color: var(--ac-ink); font-weight: 600; }

