/* CRCFProjects — Stylesheet
   Uebertragen aus dem Prototyp crcfprojects-v3.html. Design unveraendert.
   Fix: --line-strong wird von .feed-dot genutzt, war im Prototyp nicht definiert.
   Jetzt im :root ergaenzt, damit die Feed-Punkte die gemeinte Randfarbe zeigen. */

/* Mona Sans selbst gehostet (Apache 2.0), keine Google-Fonts-Verbindung mehr. */
@font-face {
  font-family: 'Mona Sans';
  src: url('/assets/fonts/Mona-Sans.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mona Sans';
  src: url('/assets/fonts/Mona-Sans-Italic.woff2') format('woff2');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --ink: #14201a;
  --ink-soft: #3f4b44;
  --ink-muted: #6e7872;
  --white: #ffffff;
  --bg: #fbfcfb;
  --surface: #f4f6f4;
  --line: #e6e9e6;
  --line-soft: #eef0ee;
  --line-strong: #cdd3cd;
  --green: #1f5e3a;
  --green-bright: #2d8a52;
  --green-pale: #edf4ee;
  --blue: #14457f;
  --blue-bright: #2f6fd0;
  --blue-pale: #eef3fb;
  --blue-dark: #0b2c50;
  --amber: #9a6b16;
  --amber-pale: #f9f1e3;
  --neutral: #6e7872;
  --neutral-pale: #f0f1f0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Mona Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,252,251,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-size: 17px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink); display: flex; align-items: center; gap: 9px;
}
.brand-mark { width: 24px; height: 24px; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px; color: var(--ink-soft); text-decoration: none;
  font-weight: 400; transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 15px; font-weight: 500;
  background: var(--ink); color: var(--white) !important;
  padding: 9px 18px; border-radius: 8px; text-decoration: none;
  transition: background .18s;
}
.nav-cta:hover { background: var(--green); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero { padding: 64px 0 52px; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-muted); margin-bottom: 28px;
  padding: 6px 14px; background: var(--surface);
  border-radius: 100px;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.035em;
  max-width: 16ch; margin-bottom: 28px; color: var(--ink);
}
.hero p {
  font-size: 20px; line-height: 1.55; color: var(--ink-soft);
  max-width: 56ch; margin-bottom: 40px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; align-items: center; }
.btn-dark {
  font-size: 16px; font-weight: 500;
  background: var(--ink); color: var(--white);
  padding: 14px 26px; border-radius: 10px; text-decoration: none;
  border: none; cursor: pointer; transition: background .18s;
}
.btn-dark:hover { background: var(--green); }
.btn-outline {
  font-size: 16px; font-weight: 500;
  background: transparent; color: var(--ink);
  padding: 14px 26px; border-radius: 10px; text-decoration: none;
  border: 1px solid var(--line); cursor: pointer; transition: all .18s;
}
.btn-outline:hover { border-color: var(--ink); }

/* ─── LOGO STRIP / META ─── */
.meta-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.meta-inner {
  max-width: 1200px; margin: 0 auto; padding: 28px 32px;
  display: flex; gap: 56px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.meta-block { text-align: center; }
.meta-block .num {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink);
}
.meta-block .lbl {
  font-size: 14px; color: var(--ink-muted);
}
.meta-divider { width: 1px; height: 36px; background: var(--line); }

/* ─── SECTION ─── */
section { padding: 96px 0; }
.section-head { max-width: 1200px; margin: 0 auto; padding: 0 32px 48px; }
.section-eyebrow {
  font-size: 14px; font-weight: 500; color: var(--green-bright);
  margin-bottom: 14px; letter-spacing: 0;
}
.section-head h2 {
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 500;
  letter-spacing: -0.03em; line-height: 1.1; max-width: 20ch; color: var(--ink);
}
.section-head p {
  font-size: 18px; color: var(--ink-soft); max-width: 56ch; margin-top: 18px;
}

/* ─── PROJECT GRID ─── */
.tools {
  max-width: 1200px; margin: 0 auto; padding: 0 32px 32px;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.search-box {
  flex: 1; min-width: 220px; position: relative;
}
.search-box input {
  width: 100%; font-family: inherit; font-size: 16px;
  padding: 12px 16px 12px 42px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--white); color: var(--ink);
  transition: border-color .15s;
}
.search-box input:focus { outline: none; border-color: var(--green-bright); }
.search-box::before {
  content: '⌕'; position: absolute; left: 15px; top: 50%;
  transform: translateY(-50%); color: var(--ink-muted); font-size: 18px;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  font-family: inherit; font-size: 14px; font-weight: 400;
  padding: 10px 16px; border: 1px solid var(--line);
  background: var(--white); border-radius: 100px; cursor: pointer;
  color: var(--ink-soft); transition: all .15s;
}
.filter:hover { border-color: var(--ink-muted); }
.filter.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.grid-meta {
  max-width: 1200px; margin: 0 auto; padding: 0 32px 20px;
  font-size: 14px; color: var(--ink-muted);
}
.grid {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer; display: flex; flex-direction: column;
}
/* Ganze Karte klickbar: der View-Link spannt sich unsichtbar ueber die Karte. */
.card-stretch::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20,32,26,0.07);
  border-color: var(--line);
}
.card-img {
  height: 168px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 16px;
  background-size: cover; background-position: center; background-color: var(--surface);
}
.card-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 55%);
}
.img-forest { background-image: url('/assets/img/methods/forest.jpg'); }
.img-earth { background-image: url('/assets/img/methods/earth.jpg'); }
.img-water { background-image: url('/assets/img/methods/water.jpg'); }
.img-moss { background-image: url('/assets/img/methods/moss.jpg'); }
.img-peat { background-image: url('/assets/img/methods/peat.jpg'); }
.img-stone { background-image: url('/assets/img/methods/stone.jpg'); }
.card-img-label {
  font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 400;
  position: relative; z-index: 1;
}
.card-status {
  position: absolute; top: 14px; right: 14px;
  font-size: 12px; font-weight: 500;
  padding: 5px 11px; border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.95);
}
.card-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.st-green { color: var(--green); }
.st-green .dot { background: var(--green-bright); }
.st-amber { color: var(--amber); }
.st-amber .dot { background: #c4871f; }
.st-grey { color: var(--neutral); }
.st-grey .dot { background: var(--neutral); }

.card-content { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-size: 20px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 5px;
}
.card-dev { font-size: 14px; color: var(--ink-muted); margin-bottom: 16px; }
.card-tags { display: flex; gap: 7px; margin-bottom: 16px; flex-wrap: wrap; }
.tag {
  font-size: 13px; padding: 4px 11px; border-radius: 7px;
  background: var(--surface); color: var(--ink-soft);
}
.card-desc {
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
  margin-bottom: 18px; flex: 1;
}
.card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.confirm-tag { font-size: 13px; color: var(--ink-muted); display: flex; align-items: center; gap: 6px; }
.confirm-tag .ck { color: var(--green-bright); }
.card-link { font-size: 14px; font-weight: 500; color: var(--green); text-decoration: none; }
.card-link:hover { color: var(--green-bright); }

/* ─── GUIDE ─── */
.guide { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-inner {
  max-width: 1200px; margin: 0 auto; padding: 96px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.guide-text h2 {
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 500;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; color: var(--ink);
}
.guide-text p { font-size: 18px; color: var(--ink-soft); margin-bottom: 32px; }
.guide-list { display: flex; flex-direction: column; gap: 4px; }
.guide-item {
  padding: 24px; border-radius: 14px; background: var(--bg);
  border: 1px solid var(--line); transition: background .15s;
}
.guide-item:hover { background: var(--surface); }
.guide-item h3 { font-size: 17px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; }
.guide-item p { font-size: 15px; color: var(--ink-muted); margin: 0; line-height: 1.5; }

/* ─── DEVELOPER CTA ─── */
.dev-cta {
  background: var(--ink); border-radius: 24px;
  margin: 96px auto; max-width: 1136px;
  padding: 72px 64px;
  display: flex; justify-content: space-between; align-items: center; gap: 60px;
}
.dev-cta h2 {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 500;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--white); max-width: 18ch;
}
.dev-cta-right { flex-shrink: 0; max-width: 380px; }
.dev-cta p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 26px; line-height: 1.6; }
.btn-white {
  font-size: 16px; font-weight: 500;
  background: var(--white); color: var(--ink);
  padding: 14px 26px; border-radius: 10px; text-decoration: none;
  display: inline-block; transition: background .18s;
}
.btn-white:hover { background: var(--green-pale); }

/* ─── FOOTER ─── */
footer { padding: 56px 0 40px; border-top: 1px solid var(--line); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; padding-bottom: 40px;
}
.footer-disclaimer {
  font-size: 14px; color: var(--ink-muted); max-width: 52ch; line-height: 1.6;
}
.footer-disclaimer strong { color: var(--ink-soft); font-weight: 500; }
.footer-nav { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.footer-col a { font-size: 14px; color: var(--ink-muted); text-decoration: none; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--ink-muted);
}

.live-pulse {
  width:8px; height:8px; border-radius:50%; background:var(--green-bright);
  box-shadow:0 0 0 0 rgba(45,138,82,0.5); animation:pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(45,138,82,0.5); }
  70% { box-shadow:0 0 0 7px rgba(45,138,82,0); }
  100% { box-shadow:0 0 0 0 rgba(45,138,82,0); }
}
.feed { position:relative; padding-left:28px; }
.feed::before {
  content:''; position:absolute; left:7px; top:8px; bottom:8px; width:2px; background:var(--line);
}
.feed-item { position:relative; padding:0 0 26px 0; }
.feed-item:last-child { padding-bottom:0; }
.feed-dot {
  position:absolute; left:-28px; top:5px; width:16px; height:16px; border-radius:50%;
  background:var(--white); border:2px solid var(--line-strong); display:flex; align-items:center; justify-content:center;
}
.feed-dot::after { content:''; width:6px; height:6px; border-radius:50%; background:var(--ink-muted); }
.feed-item.is-adopted .feed-dot { border-color:var(--green-bright); }
.feed-item.is-adopted .feed-dot::after { background:var(--green-bright); }
.feed-time { font-size:12px; color:var(--ink-muted); margin-bottom:6px; display:flex; align-items:center; gap:10px; }
.feed-card {
  background:var(--white); border:1px solid var(--line); border-radius:12px;
  padding:16px 18px; transition:border-color .15s, box-shadow .15s;
}
.feed-card:hover { box-shadow:0 6px 18px rgba(20,32,26,0.06); }
.feed-head { display:flex; justify-content:space-between; align-items:flex-start; gap:14px; margin-bottom:6px; }
.feed-title { font-size:16px; font-weight:500; color:var(--ink); letter-spacing:-0.01em; line-height:1.3; }
.feed-summary { font-size:14px; color:var(--ink-soft); line-height:1.5; margin-bottom:12px; }
.feed-foot { display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding-top:10px; border-top:1px solid var(--line-soft); }
.feed-src { font-size:12px; color:var(--ink-muted); }
.feed-src a { color:var(--green); text-decoration:none; }
.st-label {
  font-size:11px; font-weight:600; letter-spacing:0.03em; text-transform:uppercase;
  padding:3px 9px; border-radius:6px; white-space:nowrap;
}
.st-adopted { background:var(--green-pale); color:var(--green); }
.st-report { background:var(--amber-pale); color:var(--amber); }
.st-proposed { background:#eef1f4; color:#3a5a78; }
.st-discussion { background:var(--neutral-pale); color:var(--neutral); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fbfcfb; z-index: 50;
    box-shadow: 0 14px 28px rgba(0,0,0,0.10);
    border-bottom: 1px solid var(--line); padding: 8px 32px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; font-size: 16px; }
  .nav-links .nav-cta { margin-top: 10px; text-align: center; padding: 12px 18px; }
  .guide-inner { grid-template-columns: 1fr; gap: 40px; }
  .dev-cta { flex-direction: column; align-items: flex-start; padding: 48px 32px; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 64px; }
  .meta-inner { gap: 28px; }
  .meta-divider { display: none; }
}

/* ─── Schritt 3: eigene URLs ─── */
/* Brand ist jetzt ein Link. Optik unveraendert halten. */
a.brand { text-decoration: none; }

/* ─── Supplier Map ─── */
.map-wrap { max-width: 1200px; margin: 0 auto 8px; padding: 0 32px; }
.europe-map { width: 100%; max-width: 560px; height: auto; display: block; margin: 0 auto; }
.country {
  fill: var(--surface); stroke: var(--white); stroke-width: 1;
  vector-effect: non-scaling-stroke; transition: fill .15s;
}
.country.has-suppliers { fill: var(--green-bright); cursor: pointer; }
.country.has-suppliers:hover { fill: var(--green); }
.country.has-suppliers.non-eu { fill: var(--amber); }
.country.has-suppliers.non-eu:hover { fill: #7d560f; }
.country.is-active { fill: var(--green); }
.country.is-active.non-eu { fill: #7d560f; }

.map-legend {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-top: 14px; font-size: 13px; color: var(--ink-muted);
}
.map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.map-legend .lg { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.map-legend .lg-eu { background: var(--green-bright); }
.map-legend .lg-noneu { background: var(--amber); }

/* Eignungs-Tags im Verzeichnis */
.tag-eu { background: var(--green-pale); color: var(--green); }
.tag-noneu { background: var(--amber-pale); color: var(--amber); }

/* ─── Cookie-Consent ─── */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 660px; margin: 0 auto; z-index: 200;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 12px 32px rgba(20,32,26,0.12);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-soft);
}
.cookie-bar.hidden { display: none; }
.cookie-bar p { margin: 0; flex: 1 1 280px; line-height: 1.5; }
.cookie-bar .cc-actions { display: flex; gap: 8px; }
.cookie-bar button {
  font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 9px 18px; border-radius: 8px; cursor: pointer;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  transition: all .15s;
}
.cookie-bar button.cc-accept { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cookie-bar button.cc-accept:hover { background: var(--green); border-color: var(--green); }
.cookie-bar button.cc-decline:hover { border-color: var(--ink-muted); }

/* ─── EU-Mix: blaue Akzente (50/50 patch und EU) ─── */
/* Gruen bleibt fuer Projekte und Natur, Blau fuer die offiziellen, regulatorischen Elemente. */
.meta-strip { background: var(--blue); border-top: none; border-bottom: none; }
.meta-block .num { color: #fff; }
.meta-block .lbl { color: rgba(255,255,255,0.72); }
.meta-divider { background: rgba(255,255,255,0.22); }

#updates { background: var(--blue-pale); }
#updates .section-eyebrow { color: var(--blue-bright); }

footer { background: var(--blue-dark); border-top: none; }
.footer-disclaimer { color: rgba(255,255,255,0.62); }
.footer-disclaimer strong { color: rgba(255,255,255,0.9); }
.footer-col-title { color: #fff; }
.footer-col a { color: rgba(255,255,255,0.62); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.5); }

/* Regulatorische Seiten bekommen den blauen Eyebrow-Akzent. */
.eyebrow-eu { color: var(--blue-bright); }

/* ─── Ecosystem map ─── */
.eco-cluster { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; margin-bottom: 16px; }
.eco-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 14px; }
.eco-sub { font-size: 12px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-muted); margin: 14px 0 8px; }
.eco-tiles { display: flex; flex-wrap: wrap; gap: 8px; }
.eco-tile {
  display: inline-flex; align-items: center; background: var(--white); border: 1px solid var(--line);
  border-radius: 9px; padding: 9px 13px; font-size: 13px; color: var(--ink); text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
a.eco-tile:hover { border-color: var(--ink-muted); box-shadow: 0 4px 12px rgba(20,32,26,0.06); }
.eco-tile.has-logo { padding: 10px 14px; }
.eco-tile img { height: 22px; max-width: 124px; object-fit: contain; display: block; }

/* Logos auf Karten und Profil */
.card-logo { height: 24px; max-width: 130px; object-fit: contain; object-position: left center; display: block; margin-bottom: 10px; }
.profile-logo { height: 42px; max-width: 210px; object-fit: contain; object-position: left center; display: block; margin-bottom: 16px; }

/* ─── Who shapes CRCF ─── */
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.person { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: var(--blue-pale); color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-name { font-size: 16px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.person-role { font-size: 13px; color: var(--ink-muted); margin: 2px 0 8px; }
.person-why { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 8px; }

/* ─── Methodologie-Tracker (Pipeline) ─── */
.tracker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tracker-col { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.tracker-head { margin-bottom: 12px; }
.tracker-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 9px 11px; font-size: 13px; color: var(--ink); margin-bottom: 8px; line-height: 1.35;
}
.tracker-item:last-child { margin-bottom: 0; }
@media (max-width: 720px) { .tracker { grid-template-columns: repeat(2, 1fr); } }

/* ─── Methoden-Icon und Claimed-Badge ─── */
.method-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; opacity: 0.92; pointer-events: none;
}
.claimed-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 12px; font-weight: 500; padding: 5px 11px; border-radius: 100px;
  background: var(--green); color: #fff; display: inline-flex; align-items: center; gap: 6px;
}

/* ─── Newsletter ─── */
.news { background: var(--green-pale); }
.news-inner { max-width: 620px; margin: 0 auto; padding: 84px 32px; text-align: center; }
.news-inner h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink); margin: 12px 0 14px; }
.news-inner p { font-size: 18px; color: var(--ink-soft); margin-bottom: 24px; }
.news-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.news-form input {
  flex: 1; font-family: inherit; font-size: 16px; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink);
}
.news-form input:focus { outline: none; border-color: var(--green-bright); }
.news-form .btn-dark { white-space: nowrap; }
.news-note { font-size: 13px; color: var(--ink-muted); margin-top: 12px; }
@media (max-width: 560px) { .news-form { flex-direction: column; } }

/* MailerLite-Embed: doppelten Default-Header und -Text ausblenden. Eyebrow,
   Ueberschrift und Beschreibung liefert unsere Newsletter-Section. Feld und
   Button des Embeds bleiben sichtbar. */
.ml-embedded .ml-form-embedContent { display: none; }
