/* ============================================================
   INDEX V2 — Startseite Redesign "Bayrischzell unzensiert"
   Nutzt CSS-Variablen aus shared.css
   ============================================================ */

/* --- GENERAL V2 SECTIONS --- */
.v2-section {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}
.v2-section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.v2-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32pt;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}
.v2-section-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: none;
  margin: 0 0 40px 0;
}

/* --- [1] HERO --- */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 130px;
  overflow: hidden;
}
.v2-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('images/hero.webp') center/cover no-repeat;
  z-index: -2;
  will-change: transform;
}
.v2-hero-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 46, 30, 0.7);
  z-index: -1;
}
.v2-hero-content {
  position: relative;
  z-index: 3;
  padding: 40px 24px 120px;
}
.v2-hero-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48pt;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.v2-hero-brand em {
  color: var(--gold);
  font-style: normal;
}

/* Tagline Rotation */
.v2-tagline-wrap {
  height: 32px;
  position: relative;
  margin-bottom: 32px;
  overflow: visible;
  width: 100%;
}
.v2-tagline {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16pt;
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  animation: v2-tagline-cycle 12s ease-in-out infinite;
  white-space: nowrap;
}
.v2-tagline:nth-child(2) { animation-delay: 4s; }
.v2-tagline:nth-child(3) { animation-delay: 8s; }
@keyframes v2-tagline-cycle {
  0%, 8%   { opacity: 0; transform: translateY(8px); }
  12%, 28% { opacity: 1; transform: translateY(0); }
  33%, 100%{ opacity: 0; transform: translateY(-8px); }
}

/* Leserbrief Ticker */
.v2-leserbrief-ticker {
  height: 80px;
  position: relative;
  overflow: visible;
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.v2-leserbrief-quote {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11pt;
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(8px);
  line-height: 1.5;
  padding: 0 8px;
  box-sizing: border-box;
}
.v2-leserbrief-quote.active {
  opacity: 0.85;
  transform: translateY(0);
}
.v2-lb-author {
  font-style: normal;
  font-size: 10pt;
  color: var(--gold);
  opacity: 0.7;
}

/* Hero CTA Button */
.v2-hero-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.v2-hero-cta:hover {
  background: #d4ad44;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,163,58,0.4);
}

/* Hero Figures */
.v2-hero-figures {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.v2-hero-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.v2-hero-figure:hover {
  transform: translateY(-6px);
}
.v2-hero-figure-emoji {
  font-size: 36pt;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.v2-hero-figure-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9pt;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Stats Bar */
.v2-hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-deep);
  border-top: 1px solid rgba(201,163,58,0.2);
  z-index: 2;
}
.v2-stat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.v2-stat:last-child { border-right: none; }
.v2-stat-link { text-decoration: none; transition: background 0.2s; }
.v2-stat-link:hover { background: rgba(201,163,58,0.1); }
.v2-stat-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 20pt;
  font-weight: 700;
  color: var(--gold);
}
.v2-stat-num.neg { color: var(--red); }
.v2-stat-lbl {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9pt;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- [2] NAV-DOTS --- */
.v2-nav-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.v2-nav-dot-line {
  width: 1px;
  height: 24px;
  border-left: 1px dashed rgba(255,255,255,0.2);
  margin-left: 7px;
}
.v2-nav-dot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
}
.v2-nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.v2-nav-dot-item.active .v2-nav-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201,163,58,0.5);
}
.v2-nav-dot-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10pt;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.25s ease;
  pointer-events: none;
  order: -1;
}
.v2-nav-dot-item:hover .v2-nav-dot-label,
.v2-nav-dot-item.active .v2-nav-dot-label {
  opacity: 1;
  transform: translateX(0);
}
.v2-nav-dot-item.active .v2-nav-dot-label {
  color: var(--gold);
}

/* --- [3] OFFENER BRIEF --- */
.v2-brief {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(180,160,120,0.08), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(180,160,120,0.06), transparent 60%),
    var(--forest);
  border-top: 1px solid rgba(201,163,58,0.15);
  border-bottom: 1px solid rgba(201,163,58,0.15);
}
.v2-brief-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,163,58,0.15);
  border-radius: 8px;
  padding: 48px 40px;
  max-width: 700px;
  margin: 0 auto;
  transform: scaleY(0.3);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.8s ease;
  transform-origin: top center;
}
.v2-brief-card.visible {
  transform: scaleY(1);
  opacity: 1;
}
.v2-brief-stamp {
  position: absolute;
  top: 20px;
  right: -10px;
  transform: rotate(-12deg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14pt;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  border: 3px solid var(--red);
  padding: 6px 16px;
  opacity: 0.8;
  pointer-events: none;
}
.v2-brief-emoji {
  font-size: 48pt;
  margin-bottom: 16px;
  display: block;
}
.v2-brief-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18pt;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 28px;
}
/* Brief Counter */
.v2-brief-counter {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232,90,79,0.3);
}
.v2-brief-counter-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 48pt;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.v2-brief-counter-label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14pt;
  color: var(--cream);
  opacity: 0.85;
}

/* Brief Theme Groups */
.v2-brief-themes {
  margin-bottom: 28px;
}
.v2-brief-theme {
  margin-bottom: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.v2-brief-theme-head {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  color: var(--cream);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.v2-brief-theme-emoji {
  font-size: 16pt;
}
.v2-brief-theme-link {
  margin-left: auto;
  font-size: 10pt;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.v2-brief-theme-link:hover {
  opacity: 1;
}
.v2-brief-questions {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v2-brief-questions li {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11pt;
  color: rgba(232,220,200,0.75);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.v2-brief-questions li:last-child {
  border-bottom: none;
}
.v2-brief-questions li::before {
  content: '?';
  display: inline-block;
  width: 18px;
  color: var(--red);
  font-weight: 700;
  opacity: 0.6;
}

.v2-brief-link {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.v2-brief-link:hover {
  color: #d4ad44;
  transform: translateX(4px);
}

/* --- [4] THEMEN-KACHELN --- */
.v2-themen {
  background: var(--forest-mid);
}
.v2-kachel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-kachel {
  background: var(--forest);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.v2-kachel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.v2-kachel-accent {
  height: 4px;
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
.v2-kachel:hover .v2-kachel-accent {
  height: 6px;
  box-shadow: 0 2px 12px var(--kachel-color);
}
.v2-kachel-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.v2-kachel-emoji {
  font-size: 36pt;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
  display: block;
}
.v2-kachel:hover .v2-kachel-emoji {
  transform: translateY(-8px);
}
.v2-kachel-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16pt;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 8px;
}
.v2-kachel-desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12pt;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.v2-kachel-more {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

/* Kachel color accents */
.v2-kachel--heizoel { --kachel-color: #D4900A; }
.v2-kachel--heizoel .v2-kachel-accent { background: #D4900A; }
.v2-kachel--heizoel .v2-kachel-more { color: #D4900A; }

.v2-kachel--befangen { --kachel-color: #C0392B; }
.v2-kachel--befangen .v2-kachel-accent { background: #C0392B; }
.v2-kachel--befangen .v2-kachel-more { color: #C0392B; }

.v2-kachel--klaer { --kachel-color: #1A6B8A; }
.v2-kachel--klaer .v2-kachel-accent { background: #1A6B8A; }
.v2-kachel--klaer .v2-kachel-more { color: #1A6B8A; }

.v2-kachel--brief { --kachel-color: #2D6A2D; }
.v2-kachel--brief .v2-kachel-accent { background: #2D6A2D; }
.v2-kachel--brief .v2-kachel-more { color: #2D6A2D; }

.v2-kachel--widerspruch { --kachel-color: #2E86AB; }
.v2-kachel--widerspruch .v2-kachel-accent { background: #2E86AB; }
.v2-kachel--widerspruch .v2-kachel-more { color: #2E86AB; }

.v2-kachel--presse { --kachel-color: #7B3F8C; }
.v2-kachel--presse .v2-kachel-accent { background: #7B3F8C; }
.v2-kachel--presse .v2-kachel-more { color: #7B3F8C; }

/* --- [5] KOSTEN-ZAEHLER --- */
.v2-kosten {
  background: var(--forest);
  border-top: 1px solid rgba(201,163,58,0.15);
}
.v2-kosten-rows {
  margin-bottom: 40px;
}
.v2-kosten-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v2-kosten-label {
  width: 240px;
  flex-shrink: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  color: var(--cream);
}
.v2-kosten-bar-track {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.v2-kosten-bar-fill {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  width: 0;
  transition: width 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11pt;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
}
.v2-kosten-bar-fill.red { background: var(--red); }
.v2-kosten-bar-fill.gold { background: var(--gold); color: var(--forest); }
.v2-kosten-bar-fill.blue { background: #1A6B8A; }

.v2-kosten-emoji {
  font-size: 16pt;
  margin-left: 8px;
  flex-shrink: 0;
}
.v2-kosten-src {
  cursor: help;
  font-size: 12pt;
  color: var(--gray-mid);
  margin-left: 4px;
}

/* Gesamt-Box */
.v2-kosten-total {
  background: rgba(232,90,79,0.1);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 24px;
}
.v2-kosten-total-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11pt;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 8px;
}
.v2-kosten-total-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36pt;
  font-weight: 700;
  color: var(--red);
}
.v2-kosten-total-num.pulse {
  animation: v2-pulse 1.5s ease-in-out;
}
@keyframes v2-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.v2-kosten-sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11pt;
  color: rgba(232,220,200,0.65);
  line-height: 1.6;
  padding: 12px 0 0 0;
  margin-bottom: 8px;
}

.v2-kosten-household {
  text-align: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14pt;
  font-style: italic;
  color: var(--cream);
  opacity: 0.8;
  margin-top: 16px;
}

/* --- [6] KLAERANLAGE DEEP DIVE --- */
.v2-klaer {
  background: var(--forest-mid);
  border-top: 1px solid rgba(26,107,138,0.3);
}

/* Horizontal Timeline (Desktop) */
.v2-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0 48px;
  padding-top: 20px;
}
.v2-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.v2-tl-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  flex: 1;
  max-width: 160px;
}
.v2-tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid #1A6B8A;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}
.v2-tl-point:hover .v2-tl-dot,
.v2-tl-point.active .v2-tl-dot {
  background: #1A6B8A;
  box-shadow: 0 0 12px rgba(26,107,138,0.6);
  transform: scale(1.3);
}
.v2-tl-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12pt;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.v2-tl-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10pt;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}
.v2-tl-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11pt;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

/* Timeline Detail Card */
.v2-tl-detail {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(26,107,138,0.3);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}
.v2-tl-detail.active {
  display: block;
  animation: v2-fade-in 0.3s ease;
}
@keyframes v2-fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.v2-tl-detail-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16pt;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.v2-tl-detail-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12pt;
  color: var(--gray);
  line-height: 1.6;
}

/* Cost Comparison Bars */
.v2-klaer-bars {
  margin: 32px 0;
}
.v2-klaer-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.v2-klaer-bar-label {
  width: 100px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11pt;
  color: var(--gray);
  text-align: right;
  flex-shrink: 0;
}
.v2-klaer-bar-track {
  flex: 1;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  position: relative;
}
.v2-klaer-bar-fill {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  width: 0;
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12pt;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  overflow: visible;
}
.v2-klaer-bar-fill.planned { background: rgba(255,255,255,0.15); }
.v2-klaer-bar-fill.actual { background: var(--red); }

.v2-klaer-increase {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18pt;
  font-weight: 700;
  color: var(--red);
  margin: 16px 0;
}

.v2-klaer-link {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  font-weight: 700;
  color: #1A6B8A;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  margin-top: 16px;
}
.v2-klaer-link:hover {
  color: #2a8aaa;
  transform: translateX(4px);
}

/* --- [7] CTA --- */
.v2-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,163,58,0.08), transparent 50%),
    var(--forest);
  text-align: center;
  border-top: 1px solid rgba(201,163,58,0.15);
}
.v2-cta-emoji {
  font-size: 56pt;
  margin-bottom: 16px;
  display: block;
}
.v2-cta-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28pt;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 12px;
}
.v2-cta-sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14pt;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
}
.v2-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}
.v2-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  color: var(--cream);
  transition: all 0.25s ease;
}
.v2-cta-btn:hover {
  background: rgba(201,163,58,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.v2-cta-btn-emoji {
  font-size: 18pt;
}

/* Share Buttons */
.v2-share-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11pt;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 16px;
}
.v2-share-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.v2-share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9pt;
  transition: all 0.25s ease;
  min-width: 72px;
}
.v2-share-btn:hover { transform: translateY(-2px); }
.v2-share-btn svg { opacity: 0.8; transition: opacity 0.2s; }
.v2-share-btn:hover svg { opacity: 1; }
.v2-share-whatsapp:hover { border-color: #25D366; color: #25D366; }
.v2-share-telegram:hover { border-color: #26A5E4; color: #26A5E4; }
.v2-share-email:hover { border-color: var(--gold); color: var(--gold); }
.v2-share-facebook:hover { border-color: #1877F2; color: #1877F2; }
.v2-share-copy:hover { border-color: var(--cream); color: var(--cream); }

/* --- [8] SEO EXECUTIVE SUMMARY --- */
.v2-seo {
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 60px;
  padding-bottom: 60px;
}
.v2-seo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22pt;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 28px;
}
.v2-seo-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12pt;
  color: var(--gray);
  line-height: 1.8;
}
.v2-seo-text p {
  margin-bottom: 18px;
}
.v2-seo-text h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 32px 0 14px;
}
.v2-seo-text strong {
  color: var(--cream);
}
.v2-seo-text em {
  font-style: italic;
}
.v2-seo-text a.link-gold {
  color: var(--gold);
  text-decoration: underline;
}

/* --- FOOTER SPACER --- */
.v2-footer-spacer {
  height: 40px;
  background: var(--forest);
}

/* --- SCROLL ANIMATIONS --- */
.v2-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.v2-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — MOBILE (<= 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Marquee als eigene Zeile unter der Nav (Nav = 54px + 2px border = 56px) */
  .nav-marquee {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 999;
    max-width: none;
    width: 100%;
    height: 28px;
    margin: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(201,163,58,0.3);
    border-bottom: 1px solid rgba(201,163,58,0.3);
    background: rgba(11,46,30,0.95);
  }
  .nav-marquee-text { font-size: 8pt; }

  /* Demokratie-Banner direkt unter Marquee (56 + 28 = 84px) */
  .nav-demokratie-banner {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 999;
    border-radius: 0;
  }

  /* Hero unter allen drei Bars: Nav(56) + Marquee(28) + Banner(~90) = ~174px + Abstand */
  .v2-hero { padding-top: 190px; }

  .v2-section { padding: 50px 16px; }

  /* Hero */
  .v2-hero-brand { font-size: 28pt; }
  .v2-tagline-wrap { height: 28px; }
  .v2-tagline { font-size: 11pt; }
  .v2-leserbrief-ticker { height: 90px; }
  .v2-leserbrief-quote { font-size: 10pt; }
  .v2-hero-content { padding-bottom: 260px; }
  .v2-hero-figures { gap: 14px; row-gap: 24px; margin-bottom: 16px; }
  .v2-hero-figure-emoji { font-size: 28pt; }
  .v2-hero-stats { flex-wrap: wrap; }
  .v2-stat { min-width: 45%; padding: 12px 10px; }
  .v2-stat-num { font-size: 16pt; }
  .v2-stat-lbl { font-size: 8pt; }

  /* Nav Dots hidden on mobile */
  .v2-nav-dots { display: none; }

  /* Brief */
  .v2-brief-card { padding: 28px 20px; }
  .v2-brief-quote { font-size: 15pt; }
  .v2-brief-stamp { font-size: 11pt; top: 12px; right: -5px; }
  .v2-brief-counter { flex-direction: column; gap: 4px; }
  .v2-brief-counter-num { font-size: 36pt; }
  .v2-brief-counter-label { font-size: 12pt; }
  .v2-brief-theme { padding: 12px 14px; }
  .v2-brief-theme-head { font-size: 11pt; }
  .v2-brief-theme-link { margin-left: 0; margin-top: 4px; }
  .v2-brief-questions li { font-size: 10pt; }

  /* Kacheln — untereinander */
  .v2-kachel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Kosten */
  .v2-kosten-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .v2-kosten-label { width: 100%; }
  .v2-kosten-total-num { font-size: 26pt; }

  /* Timeline — vertical on mobile */
  .v2-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
    gap: 24px;
  }
  .v2-timeline::before {
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .v2-tl-point {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    max-width: none;
  }
  .v2-tl-dot { margin-bottom: 0; flex-shrink: 0; }
  .v2-tl-text { text-align: left; }

  /* Klaer bars */
  .v2-klaer-bar-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .v2-klaer-bar-label { width: 100%; text-align: left; }

  /* CTA */
  .v2-cta-headline { font-size: 22pt; }
  .v2-cta-grid { grid-template-columns: 1fr; }

  /* Section titles */
  .v2-section-title { font-size: 24pt; }
}
