/* ============================================================
   shared.css – Zentrales Stylesheet für zeller-schmankerl.bz
   ============================================================ */
 html, body { max-width: 100vw; overflow-x: hidden; }
 :root {
 --forest: #0B2E1E;
 --forest-mid: #1A3A2A;
 --green-deep: #0B3D2E;
 --green-dark: #14532D;
 --green-mid: #1B6B42;
 --gold: #C9A33A;
 --gold-light: rgba(201,163,58,0.12);
 --cream: #E8DCC8;
 --ivory: rgba(255,255,255,0.05);
 --dark: #E8DCC8;
 --gray: #B8AE9A;
 --gray-mid: #8A826E;
 --gray-light: rgba(255,255,255,0.06);
 --red: #E85A4F;
 --red-bright: #FF6B5F;
 --red-light: rgba(232,90,79,0.1);
 --blue: #6AADCF;
 --blue-light: rgba(106,173,207,0.1);
 --orange: #D4A03A;
 --orange-light: rgba(212,160,58,0.1);
 --green-wash: rgba(90,154,92,0.08);
 --green-accent: #C9A33A;
 }
 * { margin: 0; padding: 0; box-sizing: border-box; }

 /* Global background portrait – Bürgermeister scheint durch */
 #pc::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11,46,30,0.9);
  pointer-events: none;
  z-index: 0;
 }
 body {
 font-family: 'Source Serif 4', Georgia, serif;
 color: var(--dark);
 line-height: 1.75;
 font-size: 15pt;
 background:
  linear-gradient(rgba(11,46,30,0.2), rgba(11,46,30,0.2)),
  url('images/Georg_Kittenrainer.webp') center 15% / cover no-repeat fixed;
 background-color: var(--forest);
 overflow-x: hidden;
 }
 .site-nav {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 1000;
 background: var(--forest);
 border-bottom: 2px solid var(--gold);
 display: flex;
 align-items: center;
 padding: 8px 16px 0;
 min-height: 54px;
 transition: transform 0.3s;
 gap: 0;
 flex-wrap: wrap;
 }
 .site-nav.hidden { transform: translateY(-100%); }

 /* Reading Progress Bar */
 .reading-progress {
  position: fixed;
  top: 54px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #E8C94A, var(--gold));
  box-shadow: 0 0 8px rgba(201,163,58,0.6), 0 0 3px rgba(201,163,58,0.4);
  z-index: 999;
  transition: width 60ms linear;
  pointer-events: none;
 }
 .site-nav.hidden ~ .reading-progress { top: 0; transition: width 60ms linear, top 0.3s; }
 .reading-time {
  position: fixed;
  top: 60px;
  right: 16px;
  z-index: 999;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gray-mid);
  background: var(--forest);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 3px 8px;
  opacity: 0;
  transition: opacity 0.3s, top 0.3s;
  pointer-events: none;
  white-space: nowrap;
 }
 .reading-time.visible { opacity: 1; }
 .site-nav.hidden ~ .reading-time { top: 6px; }
 @media (max-width: 768px) {
  .reading-time { font-size: 9px; right: 10px; padding: 2px 6px; }
 }

 /* Hamburger Button */
 .hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 16px;
  z-index: 1010;
 }
 .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
 }
 .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
 .hamburger.open span:nth-child(2) { opacity: 0; }
 .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

 .nav-brand {
 font-family: 'Playfair Display', serif;
 font-size: 11pt;
 font-weight: 700;
 color: var(--gold);
 letter-spacing: 2px;
 margin-right: auto;
 white-space: nowrap;
 text-decoration: none;
 }

 /* Hauptlinks in der Navbar (nur die 4 wichtigsten) */
 .nav-links { display: flex; gap: 0; align-items: center; width: 100%; flex-wrap: wrap; }
 .nav-link-icon { padding: 4px 14px; }
 .nav-link-icon svg { width: 22px; height: 22px; display: block; fill: currentColor; }
 /* Toiletten-Deckel Animation */
 .toilet-lid-anim { animation: toilet-lid 2.5s ease-in-out infinite; transform-origin: 50% 0%; }
 @keyframes toilet-lid { 0%,20%,100% { transform: translateY(0) scaleY(1); } 35%,85% { transform: translateY(-6px) scaleY(.15); } }
 /* WhatsApp-Teilen in der Nav */
 .site-nav > .nav-link-whatsapp {
  display: flex; align-items: center; justify-content: center;
  padding: 4px 10px; margin-left: 4px; border: none; background: none;
 }
 .site-nav > .nav-link-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
 .nav-link-whatsapp:hover { color: #25D366; }
 .nav-link {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 font-weight: 600;
 color: rgba(255,255,255,0.55);
 text-decoration: none;
 text-transform: uppercase;
 letter-spacing: 1px;
 padding: 6px 10px;
 display: flex;
 align-items: center;
 cursor: pointer;
 border-bottom: 3px solid transparent;
 transition: all 0.2s;
 white-space: nowrap;
 }
 .nav-link:hover { color: white; background: rgba(255,255,255,0.04); }
 .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

 /* Demokratie-Banner (Nav) */
 .nav-demokratie-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  order: 100;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  flex-shrink: 0;
  padding: clamp(6px, 1.5vw, 12px) 16px;
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 50%, #8b1a1a 100%);
  border: none;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
 }
 .nav-demokratie-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
  pointer-events: none;
 }
 .nav-demokratie-text {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 8px);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(7pt, 2vw, 12pt);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
 }
 .nav-demokratie-text svg { flex-shrink: 0; width: clamp(14px, 2.5vw, 20px); height: clamp(14px, 2.5vw, 20px); filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
 .nav-demokratie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 1vw, 8px) clamp(10px, 2vw, 20px);
  background: #fff;
  color: #8b1a1a;
  border: none;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: clamp(6pt, 1.5vw, 9pt);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  white-space: nowrap;
  flex-shrink: 0;
 }
 .nav-demokratie-btn:hover {
  background: #f5f0e8;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
 }
 .nav-demo-short { display: none; }
 .nav-demo-full { display: inline; }

 /* Mobile Update-Button (nach .nav-link, damit display:none gewinnt) */
 .nav-update-mobile {
  display: none;
  margin-left: 8px;
  font-size: 7pt;
  padding: 3px 8px;
 }

 /* ═══════════════════════════════════════
    SIDEBAR MENU
    ═══════════════════════════════════════ */
 .sidebar-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
 }
 .sidebar-overlay.open { opacity: 1; visibility: visible; }

 .sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: var(--forest);
  border-right: 2px solid var(--gold);
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 80px 0 40px;
 }
 .sidebar.open { left: 0; }
 .sidebar-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 8pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-mid);
  padding: 20px 28px 10px;
 }
 .sidebar-link {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 12px 28px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
 }
 .sidebar-link:hover {
  color: white;
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
 }
 .sidebar-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,163,58,0.06);
 }
 .sidebar-divider {
  height: 1px;
  background: rgba(201,163,58,0.15);
  margin: 12px 28px;
 }
 .sidebar-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 12px 28px;
  text-align: left;
  transition: all 0.2s;
 }
 .sidebar-section-toggle:hover {
  color: white;
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
 }
 .sidebar-section-toggle.is-open {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,163,58,0.06);
 }
 .sidebar-section-toggle .toggle-arrow {
  font-size: 8pt;
  transition: transform 0.2s;
  flex-shrink: 0;
 }
 .sidebar-section-toggle.is-open .toggle-arrow {
  transform: rotate(90deg);
 }
 .sidebar-section-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
 }
 .sidebar-section-content.is-open {
  max-height: 5000px;
 }

/* ═══════════════════════════════════════
   GEMEINDE MONITOR — NAV + PROGRESS
   ═══════════════════════════════════════ */
.gm-nav-box {
 display: flex;
 gap: 10px;
 margin: 3rem 0 1rem;
 border-top: 1px solid rgba(201,163,58,0.2);
 padding-top: 2rem;
}
.gm-nav-btn {
 display: flex;
 flex-direction: column;
 gap: 5px;
 padding: 14px 18px;
 border: 1px solid rgba(201,163,58,0.25);
 border-radius: 4px;
 text-decoration: none;
 transition: border-color 0.2s, background 0.2s;
 flex: 1;
 min-width: 0;
}
.gm-nav-btn:hover {
 border-color: var(--gold);
 background: rgba(201,163,58,0.07);
}
.gm-nav-label {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 7pt;
 text-transform: uppercase;
 letter-spacing: 2px;
 color: var(--gray-mid);
}
.gm-nav-title {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 font-weight: 700;
 color: var(--cream);
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.gm-nav-prev { text-align: left; }
.gm-nav-next { text-align: right; }
.gm-nav-overview {
 flex: 0 0 auto;
 text-align: center;
 background: rgba(201,163,58,0.04);
}
.gm-nav-empty { opacity: 0; pointer-events: none; }

/* Hub cards: gelesen-Indikator */
.hub-card.is-read {
 border-color: rgba(201,163,58,0.5);
 background: rgba(201,163,58,0.05);
 position: relative;
}
.hub-card.is-read::after {
 content: '✓';
 position: absolute;
 top: 8px;
 right: 10px;
 font-size: 13pt;
 color: var(--gold);
 line-height: 1;
}

/* Fortschrittsbalken auf Übersichtsseite */
.gm-progress-bar {
 margin: 1.2rem 0 2rem;
 display: flex;
 flex-direction: column;
 gap: 6px;
}
.gm-progress-inner {
 height: 6px;
 background: rgba(255,255,255,0.08);
 border-radius: 3px;
 overflow: hidden;
}
.gm-progress-fill {
 height: 100%;
 background: var(--gold);
 border-radius: 3px;
 transition: width 0.4s ease;
}
.gm-progress-label {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 8pt;
 color: var(--gray-mid);
 text-transform: uppercase;
 letter-spacing: 1.5px;
}

 .hero {
 position: relative;
 min-height: 100vh;
 background: transparent;
 color: white;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 padding-top: 130px;
 z-index: 1;
 }
 .hero-image {
 width: 100%;
 height: 500px;
 overflow: hidden;
 }
 .hero-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 18%;
 filter: brightness(0.88);
 }
 .hero-bg {
 position: absolute;
 bottom: 0; left: 0; right: 0;
 height: 45%;
 opacity: 0.12;
 overflow: hidden;
 }
 .hero-bg img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 filter: grayscale(80%) brightness(0.3);
 }
 .hero-content {
 flex: 1;
 display: flex;
 flex-direction: column;
 justify-content: center;
 padding: 48px 80px;
 position: relative;
 z-index: 1;
 max-width: 900px;
 }
 .hero-kicker {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 11pt;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 5px;
 color: var(--gold);
 margin-bottom: 22px;
 }
 .hero h1 {
 font-family: 'Playfair Display', serif;
 font-size: 42pt;
 font-weight: 900;
 line-height: 1.08;
 margin-bottom: 26px;
 }
 .hero h1 em {
 color: var(--gold);
 font-style: italic;
 display: block;
 }
 .hero-sub {
 font-size: 16pt;
 color: rgba(255,255,255,0.68);
 line-height: 1.55;
 margin-bottom: 30px;
 max-width: 700px;
 }
 .hero-author {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 color: rgba(255,255,255,0.3);
 border-top: 1px solid rgba(255,255,255,0.1);
 padding-top: 14px;
 }
 .hero-stats {
 background: var(--green-deep);
 border-top: 1px solid rgba(201,163,58,0.25);
 padding: 20px 80px;
 display: flex;
 justify-content: space-between;
 position: relative;
 z-index: 2;
 }
 .stat { text-align: center; }
 .stat .num {
 font-family: 'Playfair Display', serif;
 font-size: 24pt;
 font-weight: 900;
 color: var(--gold);
 display: block;
 line-height: 1.1;
 }
 .stat .lbl {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 7.5pt;
 text-transform: uppercase;
 letter-spacing: 2px;
 color: rgba(255,255,255,0.4);
 font-weight: 700;
 margin-top: 3px;
 display: block;
 }
 /* Subpage eye-strip banner */
 .subpage-eyes {
 width: 100%;
 height: 140px;
 overflow: hidden;
 margin-top: 130px;
 position: relative;
 }
 .subpage-eyes img {
 width: 100%;
 height: 420px;
 object-fit: cover;
 object-position: center 28%;
 filter: brightness(0.82) contrast(1.05);
 }
 .subpage-eyes::after {
 content: '';
 position: absolute;
 bottom: 0; left: 0; right: 0;
 height: 40px;
 background: linear-gradient(to bottom, transparent, var(--forest-mid));
 }

 .content {
 max-width: 820px;
 margin: 0 auto;
 padding: 130px 40px 50px;
 background: transparent;
 min-height: 70vh;
 position: relative;
 z-index: 1;
 }
 h2 {
 font-family: 'Playfair Display', serif;
 font-size: 32pt;
 font-weight: 900;
 color: var(--gold);
 margin: 48px 0 18px;
 line-height: 1.15;
 }
 h3 {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 15pt;
 font-weight: 800;
 color: var(--gold);
 margin: 34px 0 12px;
 text-transform: uppercase;
 letter-spacing: 2px;
 }
 h4 {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 14pt;
 font-weight: 700;
 margin: 22px 0 10px;
 color: var(--dark);
 }
 p {
 margin-bottom: 14px;
 text-align: justify;
 hyphens: auto;
 font-size: 14pt;
 line-height: 1.75;
 }
 .lead {
 font-size: 15pt;
 line-height: 1.7;
 color: var(--gray);
 border-left: 5px solid var(--gold);
 padding-left: 24px;
 margin: 28px 0;
 }
 strong { font-weight: 700; }
 .red { color: var(--red); font-weight: 700; }
 .bold-red { color: var(--red-bright); font-weight: 900; }
 .section-break { height: 0; }
 .section-header {
 background: var(--forest);
 color: white;
 padding: 20px 30px;
 margin: 42px -40px 30px;
 display: flex;
 align-items: center;
 gap: 20px;
 }
 .section-letter {
 font-family: 'Playfair Display', serif;
 font-size: 40pt;
 font-weight: 900;
 color: var(--gold);
 min-width: 48px;
 line-height: 1;
 }
 .section-title {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 14pt;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 2.5px;
 color: var(--gold);
 }
 .callout {
 padding: 20px 24px;
 margin: 22px 0;
 border-radius: 4px;
 font-size: 13pt;
 line-height: 1.65;
 }
 .callout-red { background: var(--red-light); border-left: 6px solid var(--red); }
 .callout-blue { background: var(--blue-light); border-left: 6px solid var(--blue); }
 .callout-orange { background: var(--orange-light); border-left: 6px solid var(--orange); }
 .callout-green { background: var(--green-wash); border-left: 6px solid var(--green-mid); }
 .evidence-tag {
 display: inline-block;
 font-family: 'JetBrains Mono', monospace;
 font-size: 9pt;
 padding: 4px 12px;
 border-radius: 3px;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 font-weight: 700;
 margin: 8px 0 4px;
 }
 .tag-belegt { background: rgba(90,154,92,0.2); color: #5A9A5C; }
 .tag-einordnung { background: rgba(201,163,58,0.15); color: var(--gold); }
 .tag-frage { background: rgba(106,173,207,0.15); color: #6AADCF; }
 .big-number { text-align: center; padding: 34px; margin: 24px 0; }
 .big-number .value {
 font-family: 'Playfair Display', serif;
 font-size: 60pt;
 font-weight: 900;
 color: var(--red);
 display: block;
 line-height: 1;
 }
 .big-number .unit {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 11pt;
 color: var(--gray-mid);
 text-transform: uppercase;
 letter-spacing: 3px;
 margin-top: 8px;
 display: block;
 }
 .big-number .context {
 font-size: 11pt;
 color: var(--gray-mid);
 margin-top: 8px;
 font-style: italic;
 }

 .bar-chart { margin: 22px 0; }
 .bar-row { display: flex; align-items: center; margin: 8px 0; gap: 12px; }
 .bar-label {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 color: var(--gray);
 width: 150px;
 text-align: right;
 flex-shrink: 0;
 }
 .bar-track { flex: 1; background: rgba(255,255,255,0.08); height: 30px; border-radius: 4px; overflow: hidden; }
 .bar-fill {
 height: 100%;
 display: flex;
 align-items: center;
 padding-left: 12px;
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 font-weight: 700;
 color: white;
 border-radius: 4px;
 }
 .bar-fill.red { background: var(--red); }
 .bar-fill.green { background: var(--green-mid); }
 .bar-fill.dark { background: #1a1a1a; }
 .bar-fill.gold { background: var(--gold); }
 .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0; }
 table { width: 100%; border-collapse: collapse; font-size: 11pt; }
 table th {
 background: var(--forest);
 color: white;
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 text-transform: uppercase;
 letter-spacing: 1px;
 padding: 10px 12px;
 text-align: left;
 }
 table td { padding: 9px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); line-height: 1.45; }
 table tr:nth-child(even) { background: rgba(255,255,255,0.03); }
 table .highlight-row { background: rgba(232,90,79,0.12) !important; font-weight: 700; }
 blockquote {
 font-family: 'Playfair Display', serif;
 font-style: italic;
 font-size: 15pt;
 line-height: 1.5;
 color: var(--cream);
 border-left: 5px solid var(--gold);
 padding: 18px 26px;
 margin: 22px 0;
 background: var(--gold-light);
 }
 blockquote cite {
 display: block;
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 font-style: normal;
 color: var(--gray-mid);
 margin-top: 10px;
 font-weight: 600;
 }
 .pullquote {
 font-family: 'Playfair Display', serif;
 font-size: 22pt;
 font-weight: 900;
 color: var(--gold);
 text-align: center;
 padding: 30px 34px;
 margin: 34px 0;
 border-top: 4px solid var(--gold);
 border-bottom: 4px solid var(--gold);
 line-height: 1.3;
 }
 .image-block { margin: 24px 0; }
 .image-block img { width: 100%; display: block; border-radius: 4px; }
 .image-caption {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt;
 color: var(--gray-mid);
 padding: 8px 0;
 line-height: 1.45;
 border-bottom: 1px solid rgba(255,255,255,0.1);
 }
 .image-grid { display: flex; gap: 14px; margin: 22px 0; }
 .image-grid .image-block { flex: 1; }
 .image-grid .image-block img { height: 200px; object-fit: cover; }

 .source-box {
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.1);
 padding: 16px 20px;
 margin: 20px 0;
 font-size: 10pt;
 line-height: 1.55;
 color: var(--gray-mid);
 border-radius: 4px;
 }
 .source-box strong { color: var(--cream); display: block; margin-bottom: 4px; }
 .demands-list { counter-reset: demand; list-style: none; padding: 0; }
 .demands-list li {
 counter-increment: demand;
 padding: 16px 16px 16px 62px;
 margin: 8px 0;
 background: var(--ivory);
 border-left: 5px solid var(--gold);
 border-radius: 0 5px 5px 0;
 position: relative;
 font-size: 13pt;
 line-height: 1.6;
 }
 .demands-list li::before {
 content: counter(demand);
 position: absolute;
 left: 12px; top: 12px;
 width: 34px; height: 34px;
 background: var(--green-deep);
 color: var(--gold);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: 'Source Sans 3', sans-serif;
 font-weight: 900;
 font-size: 14pt;
 }
 .comparison-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 14px;
 margin: 18px 0;
 }
 .compare-box { padding: 16px; border-radius: 5px; font-size: 13pt; }
 .compare-box.box-red { background: var(--red-light); border-top: 4px solid var(--red); }
 .compare-box.box-green { background: var(--green-wash); border-top: 4px solid var(--green-mid); }
 .compare-box h4 { margin-top: 0; font-size: 12pt; }
 .profile-box { display: flex; gap: 26px; background: var(--ivory); padding: 22px; margin: 22px 0; border-radius: 6px; }
 .profile-img img { width: 170px; height: 210px; object-fit: cover; border-radius: 5px; }
 .profile-info { flex: 1; }
 .profile-name { font-family: 'Playfair Display', serif; font-size: 18pt; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
 .profile-role { font-family: 'Source Sans 3', sans-serif; font-size: 10pt; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
 .profile-stat { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 12pt; }
 .profile-stat .val { font-weight: 700; color: var(--gold); }
 .timeline { position: relative; padding-left: 40px; margin: 26px 0; }
 .timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 3px; background: var(--gold); }
 .timeline-item { position: relative; margin-bottom: 18px; }
 .timeline-item::before { content: ''; position: absolute; left: -35px; top: 5px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); }
 .timeline-date { font-family: 'Source Sans 3', sans-serif; font-size: 10pt; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
 .timeline-text { margin-top: 3px; font-size: 12pt; }
 .timeline-amount { font-weight: 700; color: var(--red); }
 .closing { background: transparent; color: white; padding: 45px 60px; margin: 36px -40px 0; position: relative; z-index: 1; }
 .closing h2 { color: white; font-size: 26pt; }
 .closing p { color: rgba(255,255,255,0.85); text-align: left; font-size: 14pt; }
 .closing .final-line { font-family: 'Playfair Display', serif; font-size: 17pt; color: var(--gold); margin-top: 18px; font-style: italic; }

 .divider { height: 2px; background: linear-gradient(to right, var(--gold), transparent); margin: 26px 0; }
 .legal-box { border: 2px solid var(--gold); padding: 16px 20px; margin: 20px 0; border-radius: 5px; font-size: 12pt; }
 .legal-box h4 { color: var(--gold); margin: 0 0 8px; }
 .portrait-float { display: none; }
 .gebot { margin: 34px 0; }
 .gebot-header { display: flex; align-items: center; gap: 18px; margin-bottom: 12px; }
 .gebot-num { font-family: 'Playfair Display', serif; font-size: 40pt; font-weight: 900; color: var(--gold); line-height: 1; min-width: 55px; }
 .gebot-title { font-family: 'Source Sans 3', sans-serif; font-size: 13pt; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }
 .gebot-text {
 font-size: 14pt;
 line-height: 1.75;
 color: var(--gray);
 padding-left: 73px;
 border-left: 3px solid var(--gold);
 margin-left: 26px;
 }
 .gebot-divider { width: 100px; height: 1px; background: var(--gold); margin: 30px auto; opacity: 0.35; }

 @media (max-width: 768px) {
 body {
  background: var(--forest);
 }
 #pc::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/Georg_Kittenrainer.webp') center 15% / cover no-repeat;
  z-index: -1;
  pointer-events: none;
 }
 .hero-content { padding: 28px 22px; }
 .hero h1 { font-size: 26pt; }
 .hero-stats { padding: 16px 22px; flex-wrap: wrap; gap: 14px; }
 .stat { flex: 1; min-width: 45%; }
 .content { padding: 120px 18px 28px; }
 .section-header { margin: 28px -18px 22px; padding: 16px 20px; }
 .comparison-grid { grid-template-columns: 1fr; }
 .profile-box { flex-direction: column; }
 .image-grid { flex-direction: column; }
 .nav-links { display: none; }
 .nav-brand { font-size: 9pt; margin-right: 0; }
 .nav-brand-sub { display: none; }
 .nav-update-mobile { display: flex; }
 .nav-marquee { height: 24px; }
 .nav-marquee-text { font-size: 7pt; letter-spacing: 1px; }
 .nav-demokratie-banner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  box-sizing: border-box;
 }
 .nav-demo-full { display: inline; }
 .nav-demo-short { display: none; }
 .nav-demokratie-text {
  font-size: 0.65rem;
  justify-content: center;
  text-align: center;
 }
 .nav-demokratie-btn {
  font-size: 0.6rem;
  padding: 0.35rem 0.8rem;
  width: 100%;
  justify-content: center;
  letter-spacing: 0.5px;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
 }
 .hero-image { height: 220px; }
 .subpage-eyes { height: 80px; margin-top: 130px; }
 .hero { padding-top: 130px; }
 .subpage-eyes img { height: 280px; }
 .gebot-text { padding-left: 16px; margin-left: 8px; }
 .closing { padding: 28px 22px; margin: 28px -18px 0; }
 }

/* === Stat Grid (KPI Cards) === */
 .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
 .stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-top: 4px solid var(--gold); border-radius: 5px; padding: 16px; text-align: center; }
 .stat-card.worst { border-top-color: var(--red); background: rgba(232,90,79,0.06); }
 .stat-card .stat-value { font-family: 'Playfair Display', serif; font-size: 24pt; font-weight: 900; color: var(--gold); display: block; }
 .stat-card.worst .stat-value { color: var(--red); }
 .stat-card .stat-label { font-family: 'Source Sans 3', sans-serif; font-size: 9pt; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 4px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  margin-top: 80px;
  padding: 32px 24px;
  border-top: 1px solid rgba(201,163,58,0.15);
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10pt;
  color: var(--gray-mid);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.site-footer a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--cream);
}
.site-footer .footer-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9pt;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.site-footer .footer-links {
  margin-top: 8px;
}
.site-footer .footer-links a {
  margin: 0 10px;
}

/* ═══════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--forest);
  padding: 12px 24px;
  z-index: 10000;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 11pt;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}
.skip-nav:focus {
  top: 0;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════
   NAV UTILITY CLASSES
   ═══════════════════════════════════════ */
.nav-brand-sub {
  color: var(--cream);
  opacity: 0.7;
  font-size: 11pt;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.nav-link-update {
  background: var(--gold);
  color: var(--forest);
  border-radius: 4px;
  padding: 4px 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.nav-link-update:hover {
  background: #d4af4a;
  color: var(--forest);
}

/* Nav Marquee / Laufschrift — Hazard Tape */
.nav-marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  flex-shrink: 0;
  order: 99;
  height: 28px;
  background: #e8c820;
  border: none;
  border-top: 2px solid #e8c820;
  border-bottom: 2px solid #e8c820;
  border-radius: 0;
  margin-top: 6px;
  margin-bottom: 0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.nav-marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9pt;
  font-weight: 900;
  color: #000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: marquee-scroll 16s linear infinite;
  padding-left: 100%;
  text-shadow: none;
}
.nav-marquee:hover .nav-marquee-text {
  color: #000;
  text-shadow: none;
}
.nav-marquee:hover {
  border-color: #fff;
}
@keyframes hazard-scroll {
  0%   { background-position: 0 0; }
  100% { background-position: 28.28px 0; }
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════ */
/* Semantic heading override: h2 with h3 visual style */
h2.heading-sm {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15pt;
  font-weight: 800;
  color: var(--gold);
  margin: 34px 0 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
}
h3.heading-sm {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14pt;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
}
.hero--auto { min-height: auto; }
.content--narrow { max-width: 700px; }
.text-center { text-align: center; }
.section-header--flush { margin-top: 0; }
.accent-line { margin-bottom: 28px; }
.mt-0 { margin-top: 0; }
.mb-32 { margin-bottom: 32px; }

/* ═══════════════════════════════════════
   FORM STYLES (kontakt.html)
   ═══════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group--lg { margin-bottom: 24px; }
.form-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.form-label-hint {
  font-weight: 400;
  color: var(--gray-mid);
  text-transform: none;
  letter-spacing: 0;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--forest);
  border: 2px solid rgba(201,163,58,0.3);
  border-radius: 6px;
  color: var(--cream);
  font-family: 'Source Serif 4', serif;
  font-size: 13pt;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; line-height: 1.6; }
.form-submit {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  font-size: 12pt;
  padding: 16px 40px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover,
.form-submit:focus-visible {
  background: #d4af4a;
  transform: translateY(-1px);
}
.form-message {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border-radius: 4px;
}
.form-message--success {
  background: rgba(90,154,92,0.15);
  border-left: 6px solid var(--green-mid);
}
.form-message--error {
  background: var(--red-light);
  border-left: 6px solid var(--red);
}

/* ═══════════════════════════════════════
   CONFIDENTIALITY BOX
   ═══════════════════════════════════════ */
.confidentiality-box {
  margin-top: 40px;
  padding: 20px;
  background: var(--ivory);
  border-radius: 6px;
  border: 1px solid rgba(201,163,58,0.15);
}
.confidentiality-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════
   LINKS
   ═══════════════════════════════════════ */
.link-gold { color: var(--gold); text-decoration: underline; }

/* ═══════════════════════════════════════
   TABLET BREAKPOINT
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { padding: 36px 40px; }
  .hero-stats { padding: 18px 40px; }
  .nav-link { padding: 6px 8px; font-size: 8.5pt; letter-spacing: 0.5px; }
}

/* ═══════════════════════════════════════
   MOBILE ADDITIONS
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .form-submit { width: 100%; text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   SHARE BAR
   ═══════════════════════════════════════ */
.share-bar {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,163,58,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}
.share-bar-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-mid);
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--gray);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,163,58,0.08);
}
.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.share-btn-whatsapp:hover { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.08); }
.share-btn-telegram:hover { border-color: #26A5E4; color: #26A5E4; background: rgba(38,165,228,0.08); }
.share-btn-facebook:hover { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.08); }
.share-btn-twitter:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.share-btn-email:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,163,58,0.08); }
.share-btn-copy:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,163,58,0.08); }
.share-btn-copy {
  font-family: inherit;
  font-size: inherit;
  position: relative;
}
.share-btn-copy .share-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9pt;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.share-btn-copy .share-tooltip.show { opacity: 1; }
@media (max-width: 768px) {
  .share-bar { gap: 10px; }
  .share-btn { width: 38px; height: 38px; }
}

/* ============================================================
   Fragen-Email Formular (fe-)
   ============================================================ */
.fe-section {
 background: rgba(201,163,58,0.04);
 border: 2px solid rgba(201,163,58,0.2);
 border-radius: 10px;
 margin: 36px 0;
 overflow: hidden;
}
.fe-section summary {
 display: flex; align-items: center; gap: 10px;
 padding: 20px 24px;
 font-family: 'JetBrains Mono', monospace;
 font-size: 10pt; font-weight: 700;
 text-transform: uppercase; letter-spacing: 1.5px;
 color: var(--gold);
 cursor: pointer;
 list-style: none;
 transition: background 0.2s;
}
.fe-section summary::-webkit-details-marker { display: none; }
.fe-section summary::before {
 content: '\25B6'; font-size: 9pt; transition: transform 0.2s;
}
.fe-section[open] summary::before { transform: rotate(90deg); }
.fe-section summary:hover { background: rgba(201,163,58,0.06); }
.fe-section[open] summary { border-bottom: 1px solid rgba(201,163,58,0.15); }
.fe-body { padding: 24px; }
.fe-intro {
 font-size: 11pt; color: var(--gray); line-height: 1.65;
 margin-bottom: 20px;
}
.fe-input {
 width: 100%;
 background: rgba(255,255,255,0.06);
 border: 1px solid rgba(201,163,58,0.3);
 border-radius: 4px;
 padding: 10px 14px;
 font-family: 'Source Sans 3', sans-serif;
 font-size: 12pt;
 color: var(--cream);
}
.fe-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
.fe-input::placeholder { color: var(--gray-mid); }
.fe-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.fe-input-full { margin-bottom: 16px; }
.fe-label {
 display: block;
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt; color: var(--gray);
 margin-bottom: 6px;
}
.fe-preview {
 background: #fff; color: #111;
 border-radius: 8px;
 padding: 28px 24px;
 margin: 20px 0;
 font-family: 'Source Serif 4', Georgia, serif;
 font-size: 10.5pt; line-height: 1.7;
 max-height: 400px;
 overflow-y: auto;
 white-space: pre-wrap;
 word-wrap: break-word;
}
.fe-btn {
 display: inline-flex; align-items: center; gap: 8px;
 padding: 14px 28px;
 border: 2px solid var(--gold);
 border-radius: 6px;
 background: var(--gold);
 color: #1a1a1a;
 font-family: 'Source Sans 3', sans-serif;
 font-size: 12pt; font-weight: 700;
 cursor: pointer;
 transition: background 0.2s, border-color 0.2s;
}
.fe-btn:hover { background: #d4ad44; border-color: #d4ad44; }
.fe-btn-secondary {
 display: inline-flex; align-items: center; gap: 8px;
 padding: 10px 18px;
 border: 2px solid var(--gold);
 border-radius: 6px;
 background: rgba(201,163,58,0.1);
 color: var(--gold);
 font-family: 'Source Sans 3', sans-serif;
 font-size: 10pt; font-weight: 600;
 cursor: pointer;
 transition: background 0.2s;
}
.fe-btn-secondary:hover { background: rgba(201,163,58,0.2); }
.fe-btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.fe-hint {
 font-size: 10pt; color: var(--gray-mid); line-height: 1.5;
 margin-top: 12px;
}
@media (max-width: 600px) {
 .fe-input-row { grid-template-columns: 1fr; }
 .fe-btn-row { flex-direction: column; }
 .fe-btn, .fe-btn-secondary { width: 100%; justify-content: center; }
 .fe-body { padding: 16px; }
 .fe-preview { padding: 18px 14px; max-height: 300px; }
}

/* ═══════════════════════════════════════
   GEMEINDE MONITOR — V4 STYLES
   ═══════════════════════════════════════ */
.v4-hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin: 2rem 0; padding: 1.5rem; background: rgba(201,163,58,0.06); border: 1px solid rgba(201,163,58,0.2); border-radius: 4px; }
.v4-stat { flex: 1; min-width: 120px; text-align: center; }
.v4-stat-value { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; line-height: 1; margin-bottom: .3rem; }
.v4-stat-value.red { color: #e05555; }
.v4-stat-value.gold { color: var(--gold); }
.v4-stat-value.blue { color: #6aacdd; }
.v4-stat-label { font-family: 'Source Sans 3', sans-serif; font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }
/* Alternate stat format (used on some pages) */
.v4-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1.1; }
.v4-stat .lbl { font-size: 0.78rem; color: var(--gray); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: .05em; }
.v4-stat.red .num { color: #e05555; }
.v4-stat.gold .num { color: var(--gold); }
.v4-stat.blue .num { color: #6aacdd; }

.v4-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 1rem; }
.v4-tag.defizit { background: rgba(224,85,85,0.15); color: #e05555; border: 1px solid rgba(224,85,85,0.3); }
.v4-tag.daten { background: rgba(106,172,221,0.15); color: #6aacdd; border: 1px solid rgba(106,172,221,0.3); }
.v4-tag.vergleich { background: rgba(201,163,58,0.15); color: var(--gold); border: 1px solid rgba(201,163,58,0.3); }
.v4-tag.transparenz { background: rgba(80,200,120,0.15); color: #50c878; border: 1px solid rgba(80,200,120,0.3); }

.v4-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 1.5rem 0; }
.v4-table th { font-family: 'Source Sans 3', sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); padding: 8px 12px; border-bottom: 2px solid rgba(201,163,58,0.3); text-align: left; background: rgba(255,255,255,0.06); font-weight: 600; }
.v4-table td { padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--cream); }
.v4-table tr.highlight td { background: rgba(201,163,58,0.1); font-weight: 700; color: var(--gold); }
.v4-table tr:hover td { background: rgba(255,255,255,0.03); }
.v4-table .hi { color: #e05555; font-weight: 700; }
.v4-table .lo { color: #6aacdd; }
.v4-table .md { color: var(--gold); }

.v4-details { background: rgba(255,255,255,0.03); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }

.v4-cta { margin-top: 3rem; padding: 2rem; background: rgba(201,163,58,0.06); border: 2px solid rgba(201,163,58,0.3); border-radius: 4px; text-align: center; }
.v4-cta h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin: 0 0 .8rem; font-size: 1.4rem; }
.v4-cta p { color: var(--gray); margin: 0 0 1.2rem; font-size: .95rem; }
.v4-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.v4-btn { display: inline-flex; align-items: center; padding: .7rem 1.4rem; border-radius: 3px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: .9rem; text-decoration: none; transition: all .2s; cursor: pointer; }
.v4-btn-primary { background: var(--gold); color: #0B2E1E; border: 2px solid var(--gold); }
.v4-btn-primary:hover { background: #b8902f; border-color: #b8902f; }
.v4-btn-ghost { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.v4-btn-ghost:hover { background: rgba(201,163,58,0.1); }
.v4-btn:hover { opacity: .88; }

.v4-process { counter-reset: steps; list-style: none; padding: 0; margin: 1.5rem 0; }
.v4-process li { counter-increment: steps; display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.v4-process li::before { content: counter(steps); background: var(--gold); color: #1a1a0e; font-weight: 700; font-size: .85rem; min-width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.v4-sources { font-size: 0.8rem; color: var(--gray); border-top: 1px solid rgba(255,255,255,0.08); margin-top: 2rem; padding-top: 1rem; }

/* Hub Grid (Monitor-Übersicht) */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.hub-card { display: block; padding: 1.2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,163,58,0.2); border-radius: 4px; text-decoration: none; transition: all .2s; color: inherit; }
.hub-card:hover { border-color: var(--gold); background: rgba(201,163,58,0.06); transform: translateY(-2px); }
.hub-card-title { font-family: 'Source Sans 3', sans-serif; font-weight: 700; color: var(--gold); margin-bottom: .4rem; font-size: .95rem; }
.hub-card-desc { font-family: 'Source Sans 3', sans-serif; font-size: .8rem; color: var(--gray); line-height: 1.4; }
.hub-section-label { font-family: 'Source Sans 3', sans-serif; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gray-mid); margin: 2rem 0 .5rem; padding-bottom: .3rem; border-bottom: 1px solid rgba(201,163,58,0.15); }

@media (max-width: 768px) {
 .v4-hero-stats { flex-direction: column; gap: 1rem; }
 .v4-cta-btns { flex-direction: column; align-items: center; }
}
