/* ============================================================
   econgy – Sustainability Report Microsite
   Fonts: Inter (lokal gebündelt)
   ============================================================ */

/* ── Inter: lokal, kein Google Fonts Request nötig ────────── */
@font-face { font-family:'Inter'; font-style:normal; font-weight:300; font-display:swap;
  src: url('../fonts/inter-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap;
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap;
  src: url('../fonts/inter-latin-800-normal.woff2') format('woff2'); }

/* ── Variablen ───────────────────────────────────────────── */
:root {
  --blue-dark:    #001347;
  --blue-mid:     #00249c;
  --blue-bright:  #0043ff;
  --green-forest: #1d3d2a;
  --green-sage:   #3a7453;
  --green-light:  #6daf86;
  --green-pale:   #edf3ee;
  --sand:         #f5f0e6;
  --sand-deep:    #e8e1d2;
  --warm-white:   #fdfcf8;
  --ochre:        #b07c2e;
  --text-dark:    #0d1520;
  --text-mid:     #3d4f60;
  --text-light:   #7a8fa3;
  --white:        #ffffff;
  --pad: clamp(72px, 10vw, 130px) clamp(24px, 6vw, 96px);
  --max-w: 1180px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400; font-size: 17px; line-height: 1.7;
  color: var(--text-dark); background: var(--warm-white); overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typografie ─────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-sage); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; display: block; width: 22px; height: 1.5px;
  background: currentColor; flex-shrink: 0;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.025em; color: var(--text-dark);
}
.section-title--light { color: var(--white); }
.section-body {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.8;
  color: var(--text-mid); max-width: 560px; font-weight: 400;
}
.section-body--light { color: rgba(255,255,255,0.6); }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px,5vw,80px); }
.section-header { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(44px,6vw,72px); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(24px,5vw,80px); height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(0,19,71,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

/* ── Logo: weiß invertiert (funktioniert auf dunklem Nav) ── */
.nav__logo { display: flex; align-items: center; }
.nav__logo img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav__logo img:hover { opacity: 1; }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__lang {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 13px; border-radius: 20px; transition: all 0.2s; flex-shrink: 0;
}
.nav__lang:hover { color: #fff; border-color: rgba(255,255,255,0.55); }
.nav__hamburger { display: none; cursor: pointer; background: none; border: none; padding: 4px; }
@media (max-width: 840px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; flex-direction: column; gap: 5px; }
  .nav__hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.7); }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--blue-dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px clamp(24px,6vw,96px) 80px;
  position: relative; overflow: hidden;
}
/* Waldbild: sichtbarer als zuvor (opacity 0.22 → 0.30) */
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/econgy-forest.webp');
  background-size: cover; background-position: center 30%;
  opacity: 0.30; pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 15%, rgba(0,67,255,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 85%, rgba(58,116,83,0.11) 0%, transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; width: 100%; }

.hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 36px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
.hero__eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--green-light); }

/* Hero-Logo: ebenfalls weiß ───────────────────────────────── */
.hero__logo-wrap {
  width: min(460px, 72vw); margin-bottom: 64px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
}
.hero__logo-wrap img {
  filter: brightness(0) invert(1);
  opacity: 0.88;
  width: 100%; height: auto;
}

.hero__headline {
  font-size: clamp(48px, 7.5vw, 108px); font-weight: 800;
  line-height: 1.0; letter-spacing: -0.035em; color: #fff;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.7s forwards;
}
.hero__headline span { display: block; color: rgba(255,255,255,0.22); font-weight: 300; }
.hero__sub {
  margin-top: 28px; font-size: clamp(15px,1.2vw,18px);
  color: rgba(255,255,255,0.5); max-width: 500px; line-height: 1.75; font-weight: 400;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.9s forwards;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.25); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 1; opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  animation: scrollPulse 2.4s ease-in-out 2s infinite;
}

/* ── KPIs ────────────────────────────────────────────────── */
.kpis { background: var(--sand); padding: var(--pad); }
.kpis__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--sand-deep);
}
@media (max-width: 840px) { .kpis__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .kpis__grid { grid-template-columns: 1fr; } }
.kpi-card {
  padding: 36px 28px; background: var(--warm-white);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s, transform 0.6s;
}
.kpi-card.in-view { opacity: 1; transform: none; }
.kpi-card:nth-child(1) { transition-delay: 0.00s; }
.kpi-card:nth-child(2) { transition-delay: 0.08s; }
.kpi-card:nth-child(3) { transition-delay: 0.16s; }
.kpi-card:nth-child(4) { transition-delay: 0.24s; }
.kpi-card__number { display: flex; align-items: baseline; gap: 3px; }
.kpi-card__value {
  font-size: clamp(34px,3.5vw,50px); font-weight: 800; line-height: 1;
  color: var(--blue-mid); letter-spacing: -0.04em;
}
.kpi-card__unit {
  font-size: clamp(16px,1.5vw,22px); font-weight: 500;
  color: var(--blue-mid); opacity: 0.4; margin-left: 2px;
}
.kpi-card__label { margin-top: 8px; font-size: 13px; color: var(--text-mid); font-weight: 400; }
.kpi-card__delta {
  display: inline-block; margin-top: 14px;
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 20px; letter-spacing: 0.04em;
}
.kpi-card__delta--pos { background: rgba(61,116,83,0.1); color: var(--green-sage); }
.kpi-card__delta--neg { background: rgba(176,124,46,0.1); color: var(--ochre); }

/* ── Emissionen ──────────────────────────────────────────── */
.emissions {
  background: var(--blue-dark); padding: var(--pad);
  position: relative; overflow: hidden;
}
/* Naturbild-Hintergrund – sichtbarer (opacity 0.14 → 0.22) */
.emissions__bg {
  position: absolute; inset: 0;
  background-image: url('../images/econgy-nature.webp');
  background-size: cover; background-position: center;
  opacity: 0.22; pointer-events: none;
}
.emissions__overlay {
  position: absolute; right: -180px; top: -180px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,67,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.emissions .eyebrow { color: var(--green-light); }

.emissions__legend { display: flex; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.em-legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.em-legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.em-legend-dot--2022 { background: rgba(255,255,255,0.3); }
.em-legend-dot--2025 { background: var(--green-light); }

.emissions__chart { display: flex; flex-direction: column; gap: 32px; }
.bar-item {
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.65s, transform 0.65s;
}
.bar-item.in-view { opacity: 1; transform: none; }
.bar-item:nth-child(1) { transition-delay: 0.05s; }
.bar-item:nth-child(2) { transition-delay: 0.18s; }
.bar-item:nth-child(3) { transition-delay: 0.31s; }
.bar-item__label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.bar-comparison { display: flex; flex-direction: column; gap: 5px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-row__year {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em; width: 34px; flex-shrink: 0; text-align: right;
}
.bar-row__year--2025 { color: rgba(109,175,134,0.9); }
.bar-row__track {
  flex: 1; height: 38px; background: rgba(255,255,255,0.05);
  border-radius: 3px; overflow: hidden;
}
.bar-row__fill {
  height: 100%; width: 0; border-radius: 3px;
  transition: width 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Value labels sit OUTSIDE the bar track, always legible */
.bar-row__val {
  font-size: 12px; font-weight: 600;
  white-space: nowrap; flex-shrink: 0; min-width: 96px;
}
.bar-row__val--2022 { color: rgba(255,255,255,0.45); }
.bar-row__val--2025 { color: rgba(255,255,255,0.82); }

/* Bar fill colors */
.bar-row__fill--2022  { background: rgba(255,255,255,0.18); }
.bar-row__fill--scope1 { background: linear-gradient(90deg, rgba(109,175,134,0.5) 0%, rgba(109,175,134,0.9) 100%); }
.bar-row__fill--scope2 { background: linear-gradient(90deg, rgba(72,202,228,0.4)  0%, rgba(72,202,228,0.85)  100%); }
.bar-row__fill--scope3 { background: linear-gradient(90deg, rgba(244,162,89,0.4) 0%, rgba(244,162,89,0.85)  100%); }

.emissions__footnote {
  margin-top: 32px; font-size: 11px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Energie ─────────────────────────────────────────────── */
.energy { background: var(--warm-white); padding: var(--pad); }
.donuts-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 680px) { .donuts-row { grid-template-columns: 1fr; } }
.donut-card {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s, transform 0.7s;
}
.donut-card.in-view { opacity: 1; transform: none; }
.donut-card:nth-child(2) { transition-delay: 0.18s; }
.donut-card__title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 24px;
}

/* SVG-Ring: fixer quadratischer Container → perfekter Kreis */
.donut-wrap {
  position: relative; width: 200px; height: 200px;
  margin: 0 auto 24px;
}
.donut-svg { width: 200px; height: 200px; display: block; transform: rotate(-90deg); }
.donut-bg-circle { fill: none; stroke: var(--sand); stroke-width: 14; }
.donut-ring {
  fill: none; stroke-width: 14; stroke-linecap: round;
  stroke-dasharray: 502.65 502.65; stroke-dashoffset: 502.65;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.donut-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; pointer-events: none;
}
.donut-center__value {
  font-size: 38px; font-weight: 800; line-height: 1;
  color: var(--blue-mid); letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 1px;
}
.donut-center__value sup { font-size: 17px; font-weight: 600; }
.donut-center__label {
  font-size: 10px; font-weight: 600; color: var(--text-light);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}

/* Conic-Donut: Energiemix */
.donut-conic-wrap {
  position: relative; width: 200px; height: 200px;
  margin: 0 auto 24px; border-radius: 50%;
}
.donut-conic-canvas {
  width: 200px; height: 200px; border-radius: 50%;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.donut-conic-canvas.revealed { clip-path: circle(50% at 50% 50%); }
.donut-conic-hole {
  position: absolute; inset: 17%; border-radius: 50%;
  background: var(--warm-white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 2;
}
.donut-conic-hole__val {
  font-size: 30px; font-weight: 800; line-height: 1;
  color: var(--blue-mid); letter-spacing: -0.04em;
}
.donut-conic-hole__lbl {
  font-size: 9px; font-weight: 600; color: var(--text-light);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}
.donut-legend { display: flex; flex-direction: column; gap: 9px; }
.donut-legend-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-mid); }
.donut-legend-swatch { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.donut-legend-label { flex: 1; }
.donut-legend-value { font-weight: 600; color: var(--text-dark); font-size: 13px; }

/* ── Ressourcen ──────────────────────────────────────────── */
.resources {
  background: var(--green-pale); padding: var(--pad);
  position: relative; overflow: hidden;
}
/* Neues Naturbild hinter Wasser & Abfall */
.resources__bg {
  position: absolute; inset: 0;
  background-image: url('../images/econgy-nature2.webp');
  background-size: cover; background-position: center;
  opacity: 0.18; pointer-events: none;
}
/* Inhalt über dem Bild halten */
.resources > .container { position: relative; z-index: 1; }
.resources__legend { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.legend-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-mid);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot--current { background: var(--blue-mid); }
.legend-dot--target  { background: var(--green-light); }
.resource-bars { display: flex; flex-direction: column; gap: 36px; }
.resource-bar {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s, transform 0.6s;
}
.resource-bar.in-view { opacity: 1; transform: none; }
.resource-bar:nth-child(1) { transition-delay: 0.00s; }
.resource-bar:nth-child(2) { transition-delay: 0.10s; }
.resource-bar:nth-child(3) { transition-delay: 0.20s; }
.resource-bar:nth-child(4) { transition-delay: 0.30s; }
.resource-bar__header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px; gap: 8px; flex-wrap: wrap;
}
.resource-bar__label { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.resource-bar__vals { font-size: 12px; color: var(--text-mid); display: flex; gap: 14px; }
.resource-bar__vals strong { color: var(--blue-mid); font-weight: 700; }
.resource-bar__tracks { display: flex; flex-direction: column; gap: 5px; }
.resource-bar__track { height: 32px; background: rgba(0,0,0,0.06); border-radius: 3px; overflow: hidden; }
.resource-bar__fill {
  height: 100%; width: 0; border-radius: 3px;
  transition: width 1.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.resource-bar__fill--current { background: var(--blue-mid); }
.resource-bar__fill--target  { background: var(--green-light); opacity: 0.75; }

/* ── Soziales ────────────────────────────────────────────── */
.social {
  background: var(--sand); padding: var(--pad);
  position: relative; overflow: hidden;
}
/* People-Bild rechts – sichtbarer (opacity 0.18 → 0.28) */
.social__bg {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background-image: url('../images/econgy-people.webp');
  background-size: cover; background-position: center top;
  opacity: 0.28; pointer-events: none;
}
.social-bars { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.social-bar {
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.6s, transform 0.6s;
}
.social-bar.in-view { opacity: 1; transform: none; }
.social-bar:nth-child(1) { transition-delay: 0.00s; }
.social-bar:nth-child(2) { transition-delay: 0.09s; }
.social-bar:nth-child(3) { transition-delay: 0.18s; }
.social-bar:nth-child(4) { transition-delay: 0.27s; }
.social-bar:nth-child(5) { transition-delay: 0.36s; }
.social-bar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.social-bar__label { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.social-bar__value { font-size: 18px; font-weight: 700; color: var(--blue-mid); letter-spacing: -0.02em; }
.social-bar__track { height: 6px; background: var(--sand-deep); border-radius: 99px; overflow: hidden; }
.social-bar__fill {
  height: 100%; width: 0; border-radius: 99px;
  transition: width 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.social-bar:nth-child(1) .social-bar__fill { background: var(--green-sage); }
.social-bar:nth-child(2) .social-bar__fill { background: var(--blue-mid); }
.social-bar:nth-child(3) .social-bar__fill { background: var(--green-forest); }
.social-bar:nth-child(4) .social-bar__fill { background: var(--ochre); }
.social-bar:nth-child(5) .social-bar__fill { background: var(--blue-bright); }

/* ── Ziele 2030 ──────────────────────────────────────────── */
.goals { background: var(--blue-dark); padding: var(--pad); position: relative; overflow: hidden; }
.goals::before {
  content: ''; position: absolute; left: -250px; bottom: -250px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,116,83,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.goals .eyebrow { color: var(--green-light); }
.goals-timeline { display: flex; flex-direction: column; position: relative; padding-left: 80px; }
.goals-timeline::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.08);
}
.goal-item {
  position: relative; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.7s, transform 0.7s;
}
.goal-item.in-view { opacity: 1; transform: none; }
.goal-item:nth-child(1) { transition-delay: 0.10s; }
.goal-item:nth-child(2) { transition-delay: 0.20s; }
.goal-item:nth-child(3) { transition-delay: 0.30s; }
.goal-item:nth-child(4) { transition-delay: 0.40s; }
.goal-item:last-child { border-bottom: none; }
.goal-item__year {
  position: absolute; left: -80px; top: 28px;
  font-size: 12px; font-weight: 700; color: var(--green-light); letter-spacing: 0.04em;
}
.goal-item__dot {
  position: absolute; left: -58px; top: 38px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-mid); border: 2px solid var(--blue-bright); margin-left: -4px;
}
.goal-item__label {
  font-size: clamp(15px,1.3vw,18px); font-weight: 500;
  color: rgba(255,255,255,0.82); margin-bottom: 14px;
}
.goal-bar-track {
  height: 4px; background: rgba(255,255,255,0.07); border-radius: 99px;
  position: relative; margin-bottom: 10px;
}
.goal-bar-fill {
  height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright));
  transition: width 1.5s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.goal-bar-fill::after {
  content: ''; position: absolute; right: -1px; top: -5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-bright); box-shadow: 0 0 10px rgba(0,67,255,0.5);
}
.goal-bar-meta { display: flex; justify-content: space-between; align-items: center; }
.goal-bar-pct { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.3); }
.goal-bar-status {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-light); background: rgba(109,175,134,0.12); padding: 3px 9px; border-radius: 20px;
}

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--blue-mid); padding: var(--pad);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,67,255,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .eyebrow { color: rgba(255,255,255,0.45); justify-content: center; }
.cta-section .eyebrow::before { background: rgba(255,255,255,0.45); }
.cta-section .section-title { color: #fff; }
.cta-section .section-body { color: rgba(255,255,255,0.6); margin: 0 auto; }
.cta-section__inner {
  position: relative; z-index: 1; max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.cta-section__header { display: flex; flex-direction: column; gap: 18px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 99px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer; transition: all 0.2s;
}
.btn--white { background: #fff; color: var(--blue-mid); }
.btn--white:hover { background: var(--sand); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn--ghost { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.22); }
.btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--text-dark); padding: clamp(48px,7vw,88px) clamp(24px,5vw,80px) 36px; }
.footer__grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 48px 80px; align-items: start;
}
@media (max-width: 680px) { .footer__grid { grid-template-columns: 1fr; } }

/* Footer-Logo: weiß, gedämpft ───────────────────────────── */
.footer__logo { margin-bottom: 20px; }
.footer__logo img {
  height: 26px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer__tagline {
  font-size: clamp(19px,2.2vw,26px); font-weight: 700; line-height: 1.3;
  color: rgba(255,255,255,0.82); letter-spacing: -0.02em;
}
.footer__made { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.2); }
.footer__links { display: flex; flex-direction: column; gap: 11px; padding-top: 4px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer__links a:hover { color: rgba(255,255,255,0.65); }
.footer__bottom {
  max-width: var(--max-w); margin: 44px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.02em; }

/* ── Trennlinie ──────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-mid) 40%, var(--green-sage) 70%, transparent);
  opacity: 0.25;
}

/* ── Animationen ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s, transform 0.7s;
}
[data-reveal].in-view { opacity: 1; transform: none; }

/* ============================================================
   News-Seite
   ============================================================ */
.news-hero {
  background: var(--blue-dark); padding: var(--pad);
  position: relative; overflow: hidden; min-height: 40vh;
  display: flex; align-items: center;
}
.news-hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/econgy-forest.webp');
  background-size: cover; background-position: center 40%;
  opacity: 0.28; pointer-events: none;
}
.news-hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(0,67,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.news-hero__inner {
  position: relative; z-index: 1; max-width: var(--max-w);
  margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 16px;
}
.news-hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-light); display: flex; align-items: center; gap: 12px;
}
.news-hero__eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--green-light); }
.news-hero__title {
  font-size: clamp(36px, 5vw, 72px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em; color: #fff;
}
.news-hero__sub {
  font-size: clamp(14px,1.1vw,17px); color: rgba(255,255,255,0.45);
  max-width: 520px; line-height: 1.7;
}

/* News Grid */
.news-section { background: var(--warm-white); padding: var(--pad); }
.news-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }

/* Featured (first card spans 2 cols) */
.news-card--featured { grid-column: span 2; }
@media (max-width: 900px) { .news-card--featured { grid-column: span 2; } }
@media (max-width: 560px) { .news-card--featured { grid-column: span 1; } }

.news-card {
  background: var(--warm-white); border: 1px solid var(--sand-deep);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s, box-shadow 0.25s, border-color 0.25s;
}
.news-card.in-view { opacity: 1; transform: none; }
.news-card:nth-child(1) { transition-delay: 0.00s; }
.news-card:nth-child(2) { transition-delay: 0.10s; }
.news-card:nth-child(3) { transition-delay: 0.20s; }
.news-card:nth-child(4) { transition-delay: 0.30s; }
.news-card:nth-child(5) { transition-delay: 0.40s; }
.news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); border-color: var(--blue-mid); }
.news-card__badge {
  background: var(--sand); padding: 18px 24px 0;
  display: flex; align-items: center; gap: 10px;
}
.news-card__cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-sage);
}
.news-card__date { font-size: 10px; color: var(--text-light); margin-left: auto; }
.news-card__body { padding: 16px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news-card__title {
  font-size: clamp(16px,1.4vw,20px); font-weight: 700;
  line-height: 1.25; letter-spacing: -0.02em; color: var(--text-dark);
}
.news-card--featured .news-card__title {
  font-size: clamp(20px,2vw,28px);
}
.news-card__excerpt {
  font-size: 13px; line-height: 1.7; color: var(--text-mid); flex: 1;
}
.news-card__link {
  margin-top: 12px; font-size: 12px; font-weight: 600;
  color: var(--blue-mid); display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.news-card:hover .news-card__link { gap: 9px; }

/* CMS-Hinweis Banner */
.news-cms-note {
  background: var(--sand); border-top: 1px solid var(--sand-deep);
  padding: 22px clamp(24px,5vw,80px);
  display: flex; align-items: center; gap: 14px;
  max-width: 100%;
}
.news-cms-note__icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--blue-mid);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.news-cms-note__icon svg { color: #fff; }
.news-cms-note__text { font-size: 13px; color: var(--text-mid); line-height: 1.55; }
.news-cms-note__text strong { color: var(--text-dark); }

/* ============================================================
   Impressum / Datenschutz – Statische Seiten
   ============================================================ */
.legal-hero {
  background: var(--blue-dark); padding: clamp(100px,14vw,160px) clamp(24px,6vw,96px) clamp(48px,6vw,80px);
  position: relative; overflow: hidden;
}
.legal-hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/econgy-nature.webp');
  background-size: cover; background-position: center;
  opacity: 0.20; pointer-events: none;
}
.legal-hero__inner {
  position: relative; z-index: 1; max-width: var(--max-w);
  margin: 0 auto; display: flex; flex-direction: column; gap: 14px;
}
.legal-hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-light); display: flex; align-items: center; gap: 12px;
}
.legal-hero__eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--green-light); }
.legal-hero__title {
  font-size: clamp(32px,4.5vw,60px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em; color: #fff;
}
.legal-body {
  background: var(--warm-white);
  padding: clamp(48px,8vw,100px) clamp(24px,6vw,96px);
}
.legal-body__inner {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 36px;
}
.legal-block { display: flex; flex-direction: column; gap: 10px; }
.legal-block h2 {
  font-size: clamp(18px,1.8vw,24px); font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.02em;
  padding-bottom: 8px; border-bottom: 1px solid var(--sand-deep);
}
.legal-block h3 {
  font-size: 15px; font-weight: 600; color: var(--text-dark);
}
.legal-block p {
  font-size: 15px; line-height: 1.8; color: var(--text-mid);
}
.legal-block a {
  color: var(--blue-mid); text-decoration: underline; text-underline-offset: 3px;
}
.legal-block ul {
  list-style: disc; padding-left: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.legal-block ul li { font-size: 15px; line-height: 1.7; color: var(--text-mid); }
