/* =============================================================
   medienpark · GEO · Shared Stylesheet
   Verwendet auf: index.html, was-ist-geo.html, geo-audit.html,
                  quellen-methodik.html, whitepaper.html
   ============================================================= */

:root {
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --border-soft: #bcc1c7;
  --primary-dark: #4a545b;
  --primary-darker: #2d3a40;
  --primary-green: #6FB32E;
  --primary-green-dark: #5a9a28;
  --primary-green-darker: #2a7a3e;
  --accent-magenta: #e52427;
  --secondary-gray: #616161;
  --text-dark: #212529;
  --text-gray: #495057;
  --text-muted: #6c757d;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-green-darker); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-green-dark); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SKIP-TO-CONTENT (Barrierefreiheit + LLM-Hilfe) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--primary-green);
  color: white;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  color: white;
  outline: 2px solid white;
  outline-offset: -4px;
}

/* ===== TRUST RIBBON ===== */
.trust-ribbon {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.2px;
}
.trust-ribbon span { margin: 0 14px; display: inline-flex; align-items: center; gap: 6px; }
.trust-ribbon .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary-green); display: inline-block; }

/* ===== HEADER ===== */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-light);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 22px; color: var(--text-dark); }
.logo svg { width: 36px; height: 36px; }
.logo img { height: 38px; width: auto; display: block; }
.logo .park { color: var(--primary-green); }

nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a {
  color: var(--text-gray); font-weight: 500; font-size: 15px;
  transition: color .2s;
}
nav.main-nav a:hover { color: var(--primary-green-dark); }
nav.main-nav a.is-active { color: var(--primary-green-darker); font-weight: 600; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all .25s ease;
  border: none; text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 4px 12px rgba(111, 179, 46, 0.25);
}
.btn-primary:hover {
  background: var(--primary-green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(111, 179, 46, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-soft);
}
.btn-secondary:hover {
  border-color: var(--primary-green);
  color: var(--primary-green-darker);
  background: rgba(111, 179, 46, 0.04);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-arrow::after { content: "→"; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ===== HERO (Homepage) ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a2326 0%, #2d3a40 50%, #1a2326 100%);
  color: white;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(111, 179, 46, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(229, 36, 39, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 20%, rgba(111, 179, 46, 0.08) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.45;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(111, 179, 46, 0.15);
  border: 1px solid rgba(111, 179, 46, 0.4);
  color: var(--primary-green);
  font-size: 13px; font-weight: 600; letter-spacing: 0.4px;
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 0 0 rgba(111, 179, 46, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 179, 46, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(111, 179, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 179, 46, 0); }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: white;
}
.hero h1 .accent { color: var(--primary-green); }
.hero-sub {
  font-size: 19px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-ctas .btn-secondary {
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.hero-ctas .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.trust-badges { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-badge svg { width: 16px; height: 16px; color: var(--primary-green); flex-shrink: 0; }

/* ===== SUBHERO (Cluster-Pages) ===== */
.subhero {
  position: relative;
  background: linear-gradient(135deg, #1a2326 0%, #2d3a40 100%);
  color: white;
  padding: 64px 0 72px;
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(111, 179, 46, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(229, 36, 39, 0.08) 0%, transparent 45%);
}
.subhero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
}
.subhero .container { position: relative; z-index: 2; max-width: 880px; }
.subhero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin: 14px 0 18px;
}
.subhero h1 .accent { color: var(--primary-green); }
.subhero p {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin-bottom: 24px;
}
.subhero .hero-ctas { margin-bottom: 0; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--primary-green); }
.breadcrumb .sep { opacity: 0.4; }

/* ===== HERO MOCKUP — KI Antwort Demo ===== */
.ai-answer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  position: relative;
}
.ai-answer-card .window-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.ai-answer-card .window-bar span { width: 11px; height: 11px; border-radius: 50%; }
.ai-answer-card .window-bar span:nth-child(1) { background: #ff5f57; }
.ai-answer-card .window-bar span:nth-child(2) { background: #ffbd2e; }
.ai-answer-card .window-bar span:nth-child(3) { background: #28ca42; }
.ai-answer-card .url {
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-family: 'SF Mono', Menlo, Monaco, monospace;
  margin-bottom: 18px;
  padding: 6px 12px; background: rgba(0,0,0,0.25);
  border-radius: 6px; display: inline-block;
}
.ai-prompt {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 14px;
}
.ai-prompt .who {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  flex-shrink: 0; color: white;
}
.ai-prompt p { font-size: 14.5px; color: rgba(255,255,255,0.92); line-height: 1.55; }
.ai-answer {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(111, 179, 46, 0.08);
  border: 1px solid rgba(111, 179, 46, 0.2);
  border-radius: 10px;
  margin-bottom: 16px;
}
.ai-answer .who {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.ai-answer p { font-size: 14px; color: rgba(255,255,255,0.92); line-height: 1.6; }
.ai-answer p sup {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--primary-green); color: white;
  font-size: 11px; font-weight: 700;
  border-radius: 4px;
  margin-left: 3px; vertical-align: super;
  cursor: pointer;
}
.ai-sources { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 8px; font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase; }
.ai-source-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 6px;
  transition: background .2s;
  border-left: 3px solid transparent;
}
.ai-source-item.highlight { border-left-color: var(--primary-green); background: rgba(111, 179, 46, 0.1); }
.ai-source-item .num {
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.15);
  color: white; font-weight: 700;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.ai-source-item.highlight .num { background: var(--primary-green); }
.ai-source-item .domain { color: rgba(255,255,255,0.85); font-weight: 500; }
.ai-source-item .label { color: rgba(255,255,255,0.5); margin-left: auto; font-size: 12px; }
.ai-tag {
  position: absolute; top: -14px; right: 20px;
  background: var(--primary-green); color: white;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(111, 179, 46, 0.4);
  letter-spacing: 0.3px;
}

/* ===== SECTION BASICS ===== */
section { padding: 96px 0; }
section.bg-gray { background: var(--bg-light); }
.section-eyebrow {
  display: inline-block;
  color: var(--primary-green-dark); font-weight: 600; font-size: 14px;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--primary-darker);
  margin-bottom: 18px;
}
.section-title .accent { color: var(--primary-green); }
.section-lead {
  font-size: 19px; line-height: 1.6;
  color: var(--text-gray);
  max-width: 760px;
  margin-bottom: 60px;
}
.section-head { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.section-head .section-lead { margin-left: auto; margin-right: auto; }

/* Long-form prose (cluster pages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-size: 28px; font-weight: 800; line-height: 1.25;
  color: var(--primary-darker);
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.prose h3 {
  font-size: 21px; font-weight: 700; line-height: 1.3;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.prose p {
  font-size: 17px; line-height: 1.75;
  color: var(--text-gray);
  margin-bottom: 18px;
}
.prose p strong { color: var(--text-dark); font-weight: 700; }
.prose ul, .prose ol {
  margin: 16px 0 22px 22px;
  font-size: 17px; line-height: 1.7;
  color: var(--text-gray);
}
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--primary-green);
  padding: 12px 22px;
  margin: 26px 0;
  background: rgba(111,179,46,0.05);
  border-radius: 0 8px 8px 0;
  color: var(--text-dark);
  font-style: italic;
  font-size: 18px;
}
.prose blockquote cite {
  display: block; margin-top: 8px;
  font-size: 13px; color: var(--text-muted);
  font-style: normal; font-weight: 600;
}
.prose hr {
  border: none; border-top: 1px solid var(--border-light);
  margin: 40px 0;
}

/* Anchor headings (so KI hits a clear position when fragmenting) */
.prose h2[id], .prose h3[id] { scroll-margin-top: 100px; }

/* TOC nav (used on long cluster pages) */
.toc-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.toc-card h4 {
  font-size: 13px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}
.toc-card h2 {
  font-size: 13px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 0;
}
.toc-card ol {
  list-style: none; counter-reset: toc;
  padding-left: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px;
}
.toc-card li {
  counter-increment: toc;
  padding-left: 24px; position: relative;
  font-size: 14.5px;
}
.toc-card li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-size: 12px; font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}
.toc-card a { color: var(--text-gray); }
.toc-card a:hover { color: var(--primary-green-darker); }

/* ===== STAT CARDS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.stat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card .num {
  font-size: 56px; font-weight: 800; line-height: 1;
  color: var(--primary-green);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.stat-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.stat-card p { font-size: 15px; color: var(--text-gray); line-height: 1.55; }
.stat-card .source {
  display: block; margin-top: 14px;
  font-size: 12px; color: var(--text-muted);
  font-style: italic;
}

/* ===== HOW-IT-WORKS / RAG ===== */
.rag-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.rag-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.pillar {
  padding: 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all .25s;
}
.pillar:hover { border-color: var(--primary-green); box-shadow: var(--shadow); }
.pillar .icon {
  width: 44px; height: 44px;
  background: rgba(111, 179, 46, 0.12);
  color: var(--primary-green-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pillar .icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.pillar h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.pillar p { font-size: 14px; color: var(--text-gray); line-height: 1.5; }

.rag-flow {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}
.rag-flow .flow-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  position: relative;
}
.rag-flow .flow-step:not(:last-child)::after {
  content: "↓"; position: absolute; bottom: -16px; left: 32px;
  color: var(--primary-green);
  font-size: 18px; font-weight: 700; z-index: 2;
}
.rag-flow .flow-step .step-num {
  width: 32px; height: 32px;
  background: var(--primary-green); color: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.rag-flow .flow-step h5 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.rag-flow .flow-step p { font-size: 13.5px; color: var(--text-gray); line-height: 1.5; }

/* ===== GEO vs SEO ===== */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.compare-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
}
.compare-card.seo { border-top: 4px solid var(--secondary-gray); }
.compare-card.geo { border-top: 4px solid var(--primary-green); background: linear-gradient(180deg, rgba(111,179,46,0.04) 0%, white 50%); }
.compare-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--text-dark); }
.compare-card .tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 18px; letter-spacing: 0.5px;
}
.compare-card.seo .tag { background: #eef0f2; color: var(--secondary-gray); }
.compare-card.geo .tag { background: rgba(111,179,46,0.15); color: var(--primary-green-darker); }
.compare-card ul { list-style: none; }
.compare-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--text-gray);
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
}
.compare-card li:last-child { border-bottom: none; }
.compare-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare-card.seo li svg { color: var(--secondary-gray); }
.compare-card.geo li svg { color: var(--primary-green-dark); }
.compare-plus {
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 800;
  color: var(--primary-green);
}

/* ===== TOOLBOX ===== */
.toolbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tool-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.tool-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tool-card .number {
  position: absolute; top: 20px; right: 28px;
  font-size: 64px; font-weight: 800;
  color: rgba(111, 179, 46, 0.1);
  line-height: 1; letter-spacing: -0.05em;
}
.tool-card .icon-box {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(111, 179, 46, 0.25);
}
.tool-card .icon-box svg { width: 26px; height: 26px; }
.tool-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.tool-card p { font-size: 15.5px; color: var(--text-gray); line-height: 1.6; }
.tool-card .features { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.tool-card .features span {
  font-size: 12px; padding: 4px 10px;
  background: rgba(111, 179, 46, 0.1);
  color: var(--primary-green-darker);
  border-radius: 999px; font-weight: 500;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  margin: 60px auto;
  max-width: 900px;
  padding: 44px 56px;
  background: linear-gradient(135deg, var(--primary-darker) 0%, #1f2a30 100%);
  color: white;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.quote-block::before {
  content: "“";
  position: absolute; top: -40px; left: 30px;
  font-size: 200px; line-height: 1;
  color: rgba(111, 179, 46, 0.15);
  font-family: Georgia, serif;
}
.quote-block p {
  font-size: 22px; line-height: 1.5;
  font-weight: 400; font-style: italic;
  position: relative; margin-bottom: 20px;
  color: rgba(255,255,255,0.95);
}
.quote-block .author {
  font-size: 14px; font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 0.4px;
}

/* ===== 4-SCHRITTE ===== */
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.step-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all .25s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-card .step-badge {
  position: absolute; top: -16px; left: 28px;
  width: 40px; height: 40px;
  background: var(--primary-green); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
  box-shadow: 0 4px 12px rgba(111, 179, 46, 0.3);
}
.step-card h4 {
  font-size: 17px; font-weight: 700; color: var(--text-dark);
  margin: 14px 0 10px;
}
.step-card h3 {
  font-size: 17px; font-weight: 700; color: var(--text-dark);
  margin: 14px 0 10px;
}
.step-card p { font-size: 14.5px; color: var(--text-gray); line-height: 1.55; }

/* ===== KPIs ===== */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.kpi {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.kpi .icon {
  width: 48px; height: 48px;
  background: rgba(111, 179, 46, 0.1);
  color: var(--primary-green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.kpi .icon svg { width: 22px; height: 22px; }
.kpi h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.kpi h5 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.kpi p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== FAKTENBOX / „AUF EINEN BLICK" ===== */
.factbox-section { padding: 64px 0; background: var(--bg-white); }
.factbox {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-green);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.factbox-head h2 {
  font-size: 22px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.factbox-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary-green-dark);
  margin-bottom: 14px;
}
.factbox-eyebrow svg { width: 14px; height: 14px; }
.factbox-def {
  font-size: 16px; line-height: 1.6;
  color: var(--text-gray);
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.factbox-def strong { color: var(--text-dark); font-weight: 700; }
.factbox-meta {
  font-size: 12.5px; color: var(--text-muted);
  display: flex; flex-direction: column; gap: 6px;
}
.factbox-meta span { display: inline-flex; align-items: center; gap: 6px; }
.factbox-meta svg { width: 13px; height: 13px; }
.factbox-body ul { list-style: none; }
.factbox-body li {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 12px; align-items: start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 15px; line-height: 1.55; color: var(--text-dark);
}
.factbox-body li:last-child { border-bottom: none; padding-bottom: 0; }
.factbox-body li::before {
  content: "✓";
  width: 22px; height: 22px;
  background: var(--primary-green); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.factbox-body strong { color: var(--text-dark); font-weight: 700; }

/* Inline-Zitations-Marker */
.cite {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--primary-green-darker);
  background: rgba(111, 179, 46, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
  margin: 0 2px;
  text-decoration: none;
  vertical-align: super;
  line-height: 1.4;
  transition: background .15s;
}
.cite:hover { background: rgba(111, 179, 46, 0.3); color: var(--primary-green-darker); }

/* ===== QUELLEN & METHODIK ===== */
.sources-intro { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.sources-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }
.bibliography {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.bibliography h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.bibliography h3 svg { width: 20px; height: 20px; color: var(--primary-green); }
.bib-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  display: grid; grid-template-columns: 32px 1fr; gap: 14px;
}
.bib-item:last-child { border-bottom: none; padding-bottom: 0; }
.bib-num {
  font-size: 13px; font-weight: 700; color: white;
  background: var(--primary-green);
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.bib-content .bib-title { font-weight: 700; color: var(--text-dark); font-size: 15px; line-height: 1.4; }
.bib-content .bib-meta {
  font-size: 13px; color: var(--text-gray);
  margin-top: 4px; line-height: 1.5;
}
.bib-content .bib-meta em { color: var(--text-muted); }
.bib-content .bib-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 6px;
  font-size: 12.5px; font-weight: 600;
  color: var(--primary-green-darker);
  font-family: 'SF Mono', Menlo, Monaco, monospace;
  word-break: break-all;
}
.bib-content .bib-link::after { content: "↗"; font-family: inherit; }
.methodik-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.methodik-card h3 {
  font-size: 18px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.methodik-card h3 svg { width: 20px; height: 20px; color: var(--primary-green); }
.methodik-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-gray); margin-bottom: 12px; }
.methodik-card .author-block {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 14px;
}
.methodik-card .author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.methodik-card .author-info strong { font-size: 14.5px; color: var(--text-dark); display: block; }
.methodik-card .author-info span { font-size: 13px; color: var(--text-muted); }

/* Author-Byline */
.byline-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 14px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
  font-size: 13.5px;
  color: var(--text-gray);
}
.byline-bar .by-author { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.byline-bar .by-mini-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
}
.byline-bar .by-author strong { color: var(--text-dark); font-weight: 700; }
.byline-bar .by-meta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; font-size: 13px; }
.byline-bar .by-meta span { display: inline-flex; align-items: center; gap: 5px; }
.byline-bar .by-meta svg { width: 13px; height: 13px; color: var(--primary-green); }

/* ===== REFERENZEN ===== */
.refs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
/* Einzelne, zentriert hervorgehobene Autoren-/Referenz-Karte */
.refs-grid--solo { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
.refs-grid--solo .ref-card { padding: 44px 48px; }
.refs-grid--solo .ref-quote { font-size: 19px; line-height: 1.65; }
.ref-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(111, 179, 46, 0.4);
}
.ref-card::before {
  content: "“";
  position: absolute; top: -20px; right: 28px;
  font-size: 140px; line-height: 1;
  color: rgba(111, 179, 46, 0.1);
  font-family: Georgia, serif;
  pointer-events: none;
}
.ref-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(111, 179, 46, 0.12);
  color: var(--primary-green-darker);
  letter-spacing: 0.4px; text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.ref-tag svg { width: 13px; height: 13px; }
.ref-quote {
  font-size: 18px; line-height: 1.6;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative; z-index: 1;
}
.ref-results {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 22px;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
}
.ref-result-item { display: flex; flex-direction: column; }
.ref-result-item .num {
  font-size: 22px; font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.02em; line-height: 1.1;
}
.ref-result-item .lbl {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.2px; margin-top: 2px;
}
.ref-author { display: flex; align-items: center; gap: 14px; }
.ref-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(111, 179, 46, 0.25);
}
.ref-author-info { display: flex; flex-direction: column; }
.ref-author-info strong { font-size: 15.5px; color: var(--text-dark); font-weight: 700; }
.ref-author-info span { font-size: 13.5px; color: var(--text-gray); margin-top: 1px; }
.ref-author-info a { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }
.ref-author-info a:hover { color: var(--primary-green-dark); }

/* ===== AUDIT (Verkaufs- und Lead-Sektion) ===== */
.audit-section {
  background: linear-gradient(135deg, #1a2326 0%, #2d3a40 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.audit-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(111, 179, 46, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(229, 36, 39, 0.08) 0%, transparent 40%);
}
.audit-section::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.audit-section .container { position: relative; z-index: 2; }
.audit-section .section-title { color: white; }
.audit-section .section-title .accent { color: var(--primary-green); }

.audit-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start;
  margin-top: 36px;
}
.audit-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: white; }
.audit-info > p { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 28px; }

.audit-includes {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px;
  margin-bottom: 28px;
}
.audit-includes li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: rgba(255,255,255,0.92);
}
.audit-includes svg {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  color: var(--primary-green);
}
.audit-meta {
  display: flex; gap: 28px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.audit-meta div { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.7); }
.audit-meta strong { color: white; font-weight: 700; }
.audit-meta svg { width: 18px; height: 18px; color: var(--primary-green); }

/* PRICE-TAG / Pricing Box */
.price-tag {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--primary-green);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(111, 179, 46, 0.35);
}
.price-tag .amount { font-size: 18px; }
.price-tag .currency { font-size: 13px; opacity: 0.9; }
.price-tag .qualifier { font-size: 12px; opacity: 0.85; font-weight: 500; margin-left: 4px; }

.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 24px;
}
.price-card .price-info .label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.price-card .price-info .price {
  font-size: 32px; font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card .price-info .price small {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-left: 6px;
}
.price-card .price-detail {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  max-width: 300px;
  line-height: 1.5;
}

/* ===== FORMS ===== */
.audit-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.audit-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: white; }
.audit-form p.sub { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 6px; letter-spacing: 0.2px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary-green);
  background: rgba(0,0,0,0.4);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 16px; font-size: 13px;
  color: rgba(255,255,255,0.75); line-height: 1.5;
}
.field-checkbox input { width: 16px; height: 16px; margin-top: 4px; flex-shrink: 0; accent-color: var(--primary-green); }
.audit-form button { width: 100%; margin-top: 8px; }
.audit-form .legal {
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-top: 14px; line-height: 1.5;
}

/* Light form variant (für /whitepaper auf hellem Hintergrund) */
.lead-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.lead-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.lead-form p.sub { font-size: 14.5px; color: var(--text-gray); margin-bottom: 22px; line-height: 1.55; }
.lead-form .field label { color: var(--text-dark); }
.lead-form .field input, .lead-form .field textarea, .lead-form .field select {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}
.lead-form .field input:focus, .lead-form .field textarea:focus, .lead-form .field select:focus {
  background: var(--bg-white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(111, 179, 46, 0.12);
}
.lead-form .field input::placeholder, .lead-form .field textarea::placeholder { color: var(--text-muted); }
.lead-form .field-checkbox { color: var(--text-gray); }
.lead-form .legal { font-size: 12px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; }
.lead-form .legal a { color: var(--primary-green-darker); }

/* ===== TIMELINE (Audit Process) ===== */
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 0 0 16px 0;
}
.timeline::before {
  content: "";
  position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-green) 0%, rgba(111,179,46,0.2) 100%);
}
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -27px; top: 6px;
  width: 12px; height: 12px;
  background: var(--primary-green);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 1px var(--border-light);
}
.timeline-item .day {
  font-size: 12px; font-weight: 700;
  color: var(--primary-green-darker);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-size: 16px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline-item p { font-size: 14.5px; color: var(--text-gray); line-height: 1.55; }

/* ===== WHITEPAPER COVER ===== */
.wp-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.wp-cover-link {
  display: block;
  max-width: 380px;
  margin: 0 auto;
  transform: rotate(-2deg);
  transition: transform .35s ease;
}
.wp-cover-link:hover { transform: rotate(0deg); }
.wp-cover-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.wp-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary-darker);
  margin-bottom: 18px;
}
.wp-content h1 .accent { color: var(--primary-green); }
.wp-content > p {
  font-size: 17px; line-height: 1.65;
  color: var(--text-gray);
  margin-bottom: 22px;
  max-width: 520px;
}
.wp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 22px 0 28px;
  max-width: 480px;
}
.wp-stat {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}
.wp-stat .big {
  font-size: 26px; font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.02em; line-height: 1;
}
.wp-stat .lbl {
  font-size: 11.5px; color: var(--text-muted);
  margin-top: 4px; letter-spacing: 0.2px;
}

/* ===== TOC for whitepaper preview ===== */
.wp-toc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.wp-toc-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .2s, transform .2s;
}
.wp-toc-item:hover {
  border-color: var(--primary-green);
  transform: translateX(2px);
}
.wp-toc-item .num {
  width: 28px; height: 28px;
  background: rgba(111,179,46,0.12);
  color: var(--primary-green-darker);
  font-weight: 700;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.wp-toc-item .ttl { font-size: 14.5px; font-weight: 600; color: var(--text-dark); }

/* ===== CODE BLOCKS (Toolbox) ===== */
.code-block {
  background: #1a2326;
  color: #e8edef;
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 22px 0 28px;
  overflow-x: auto;
  font-family: 'SF Mono', Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  border-left: 4px solid var(--primary-green);
}
.code-block::before {
  content: attr(data-lang);
  position: absolute; top: 8px; right: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary-green);
  font-family: 'Inter', sans-serif;
}
.code-block .key { color: #6FB32E; }
.code-block .str { color: #ffd479; }
.code-block .num { color: #ff9da4; }
.code-block .com { color: #6c7884; font-style: italic; }
.code-block pre { margin: 0; white-space: pre-wrap; word-break: break-word; }

/* Stat ribbon (used in toolbox modules) */
.stat-ribbon {
  display: flex; gap: 18px; flex-wrap: wrap;
  padding: 16px 20px;
  background: rgba(111, 179, 46, 0.08);
  border-left: 3px solid var(--primary-green);
  border-radius: 0 8px 8px 0;
  margin: 20px 0 26px;
}
.stat-ribbon .item { display: flex; flex-direction: column; gap: 2px; }
.stat-ribbon .item .v {
  font-size: 22px; font-weight: 800;
  color: var(--primary-green-darker);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-ribbon .item .l {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* Module box (for toolbox sections) */
.module-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 28px;
  scroll-margin-top: 100px;
}
.module-card .module-head {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 16px;
}
.module-card .module-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800; font-size: 18px;
  box-shadow: 0 4px 12px rgba(111, 179, 46, 0.25);
}
.module-card h2 {
  font-size: 24px; font-weight: 800;
  color: var(--primary-darker);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.module-card .module-sub {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.4px; text-transform: uppercase;
  margin-bottom: 4px;
}
.module-card p { font-size: 16px; line-height: 1.65; color: var(--text-gray); margin-bottom: 14px; }
.module-card p strong { color: var(--text-dark); font-weight: 700; }
.module-card ul {
  list-style: none; margin: 0 0 16px;
}
.module-card ul li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 1.6; color: var(--text-gray);
  margin-bottom: 6px;
}
.module-card ul li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--primary-green);
  font-weight: 700;
}

/* ===== GLOSSARY ===== */
.glossary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.glossary dt {
  font-size: 16px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.glossary dt::before {
  content: ""; width: 6px; height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
}
.glossary dd {
  font-size: 14.5px; color: var(--text-gray);
  line-height: 1.6;
  padding-left: 14px;
  margin-bottom: 18px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
details.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
details.faq-item[open] { border-color: var(--primary-green); box-shadow: var(--shadow); }
details.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 28px;
  font-weight: 600; font-size: 17px;
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 24px; font-weight: 400;
  color: var(--primary-green);
  transition: transform .25s;
  flex-shrink: 0;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item .answer {
  padding: 0 28px 24px;
  font-size: 15.5px; color: var(--text-gray); line-height: 1.65;
}

/* ===== ÜBER MEDIENPARK ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.about-stat {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
}
.about-stat .big {
  font-size: 36px; font-weight: 800; color: var(--primary-green);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.about-stat span { font-size: 14px; color: var(--text-gray); }

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-darker) 100%);
  color: white;
  padding: 80px 24px;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}
.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.final-cta p { font-size: 18px; max-width: 640px; margin: 0 auto 32px; opacity: 0.95; }
.final-cta .btn-primary { background: white; color: var(--primary-green-darker); }
.final-cta .btn-primary:hover { background: rgba(255,255,255,0.92); color: var(--primary-green-darker); }
.final-cta .btn-secondary { color: white; border-color: rgba(255,255,255,0.5); }
.final-cta .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }

/* Cross-Link Cards (between cluster pages) */
.crosslinks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 40px;
}
.crosslink-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
  text-decoration: none;
  display: flex; flex-direction: column;
}
.crosslink-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.crosslink-card .crosslink-eyebrow {
  font-size: 11px; font-weight: 700;
  color: var(--primary-green-dark);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}
.crosslink-card h4 {
  font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.crosslink-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.crosslink-card p {
  font-size: 14.5px; color: var(--text-gray);
  line-height: 1.55; flex-grow: 1; margin-bottom: 14px;
}
.crosslink-card .crosslink-cta {
  font-size: 14px; font-weight: 600;
  color: var(--primary-green-darker);
  display: inline-flex; align-items: center; gap: 4px;
}
.crosslink-card .crosslink-cta::after { content: "→"; transition: transform .2s; }
.crosslink-card:hover .crosslink-cta::after { transform: translateX(3px); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo img { height: 42px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; max-width: 320px; }
footer .footer-heading {
  color: white;
  font-size: 15px; font-weight: 700;
  margin-bottom: 18px; letter-spacing: 0.3px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color .2s; }
footer a:hover { color: var(--primary-green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  nav.main-nav { display: none; }
  .hero { padding: 56px 0 80px; }
  .subhero { padding: 48px 0 56px; }
  .hero-grid, .rag-grid, .audit-grid, .about-grid, .wp-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .toolbox-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: 1fr; }
  .factbox { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .sources-grid { grid-template-columns: 1fr; gap: 24px; }
  .bibliography, .methodik-card { padding: 24px; }
  .byline-bar { padding: 12px 16px; }
  .compare { grid-template-columns: 1fr; }
  .compare-plus { padding: 8px 0; }
  .steps-wrap { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .crosslinks { grid-template-columns: 1fr; }
  .glossary { grid-template-columns: 1fr; }
  .toc-card ol { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  section { padding: 64px 0; }
  .quote-block { padding: 32px; }
  .quote-block p { font-size: 18px; }
  .audit-form, .audit-info { padding-right: 0; }
  .wp-cover-link { transform: none; max-width: 320px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .audit-includes { grid-template-columns: 1fr; }
  .rag-pillars { grid-template-columns: 1fr; }
  .audit-form, .lead-form { padding: 24px; }
  .nav-wrap .btn { padding: 10px 16px; font-size: 14px; }
  .hero h1 { font-size: 34px; }
  .ai-answer-card { padding: 18px; }
  .price-card { flex-direction: column; align-items: flex-start; }
  .wp-toc-grid { grid-template-columns: 1fr; }
  .wp-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Formular-Rückmeldungen (forms.js) ─────────────────────────────────────── */
.form-message {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
}
.form-message--success {
  background: #ecf8e3;
  color: #2a5d18;
  border: 1px solid var(--primary-green);
}
.form-message--success strong { color: var(--primary-green-darker); }
.form-message--error {
  background: #fdecec;
  color: #8a1f1f;
  border: 1px solid #e0a3a3;
}
/* Honeypot: für Menschen unsichtbar, für Bots ausfüllbar. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
button[data-loading] { opacity: .7; cursor: progress; }

/* ── Bestell-Schritte in der Audit-Sektion (dunkler Hintergrund) ───────────── */
.order-steps {
  list-style: none;
  margin: 26px auto 0;
  max-width: 680px;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 14px;
}
.order-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.55;
}
.order-steps .num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-steps strong { color: #fff; }
.order-steps a { color: var(--primary-green); text-decoration: underline; }

/* Download-Button in der Formular-Erfolgsmeldung (forms.js) */
.form-message--success .form-download {
  display: inline-block;
  margin-top: 14px;
  padding: 13px 22px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.form-message--success .form-download:hover { background: var(--primary-green-dark); color:#fff; }

/* Header-CTA nicht umbrechen lassen (längere Beschriftung wie "AI-Readiness-Check · 1.500 €") */
.nav-wrap .btn { white-space: nowrap; }
