/* =========================================================
   ENERGIEBERATUNG DANNAPFEL — v2 (clean / personal)
   „Wenn Energie, dann Apfel."
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Grün (Marke) */
  --green-900: #0b3d22;
  --green-800: #0f5c30;
  --green-700: #157040;
  --green-600: #1a8047;
  --green-500: #2fa45f;
  --green-100: #e6f4ea;
  --green-50:  #f3faf5;
  /* Neutral, leicht warm */
  --ink:       #16211b;
  --gray-700:  #3c4a42;
  --gray-600:  #5d6b62;
  --gray-400:  #94a39a;
  --line:      #e7ece8;
  --cream:     #f9f8f4;
  --white:     #ffffff;
  /* Akzent (Apfel-warm, sehr sparsam) */
  --amber:     #e0a23a;
  /* System */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16,40,28,.05), 0 4px 14px rgba(16,40,28,.05);
  --shadow-md: 0 8px 30px rgba(16,40,28,.09);
  --shadow-lg: 0 24px 60px rgba(16,40,28,.14);
  --ease:      .3s cubic-bezier(.4,0,.2,1);
  --maxw:      1120px;
}

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── Typo-Bausteine ───────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 18px;
}
.eyebrow--dark  { color: var(--green-700); }
.eyebrow--light { color: #8fe0ac; }

h1, h2, h3 { letter-spacing: -.02em; line-height: 1.12; }

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
}

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub {
  font-size: 1.12rem;
  color: var(--gray-600);
  margin-top: 18px;
}
.section-sub--center { margin-left: auto; margin-right: auto; max-width: 600px; }

/* Grüner Akzent im Fließtext */
.leaf-accent { color: var(--green-500); white-space: nowrap; }

/* Apfel-Marke (Original-Logo, ohne Slogan) */
.apple-mark { display: inline-flex; vertical-align: middle; }
.apple-mark img { height: 46px; width: auto; display: block; }
.apple-mark--lg img { height: 68px; }
.apple-mark--inline { margin-left: .18em; vertical-align: -.16em; }
.apple-mark--inline img { height: 1.05em; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26,128,71,.28);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,128,71,.34); }
.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-quiet:hover { border-color: var(--green-500); color: var(--green-700); }
.btn-full { width: 100%; }

/* ── Aufbau-Hinweis ───────────────────────────────── */
.build-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-900);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
  z-index: 200;
}
.build-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(224,162,58,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224,162,58,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(224,162,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,162,58,0); }
}
.build-banner button {
  position: absolute; right: 14px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1;
}
.build-banner button:hover { color: #fff; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: none;
  padding: 0 clamp(20px, 4vw, 40px) 0 clamp(14px, 2vw, 24px);
}
.nav-logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: .92rem; font-weight: 600; color: var(--ink);
  line-height: 1.1; white-space: nowrap; letter-spacing: -.01em;
}
.nav-logo-text .red { color: #d62828; }
.nav-logo-text .arrow { color: var(--gray-400); margin: 0 5px; }
@media (max-width: 520px) { .nav-logo-text { display: none; } }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: .94rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  transition: var(--ease);
}
.nav-links a:hover { color: var(--green-700); background: var(--green-50); }
.nav-cta {
  background: var(--green-600); color: #fff !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--green-700) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--ease); }

/* ════════ 1 · HERO ════════ */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, var(--green-50) 0%, transparent 60%),
    var(--cream);
  padding: clamp(64px, 9vw, 110px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -.025em;
  margin-bottom: 26px;
}
/* „erfordert Sorgfalt🍎" bleibt eine Einheit – so rutscht das Paar gemeinsam
   in die letzte Zeile statt „Sorgfalt" allein. Auf schmalen Schirmen aus,
   sonst laeuft die Zeile aus dem Bild. */
.hero h1 .h1-keep { white-space: nowrap; }
@media (max-width: 760px) { .hero h1 .h1-keep { white-space: normal; } }
.hero-lead {
  font-size: 1.18rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.hero-trust li {
  position: relative;
  font-size: .88rem; font-weight: 600; color: var(--gray-700);
  padding-left: 22px;
}
.hero-trust li::before {
  content: '✓';
  position: absolute; left: 0; top: -1px;
  color: var(--green-500); font-weight: 800;
}

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 0; }
.hero-portrait {
  width: 100%; max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-100);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-signature {
  margin-top: -28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative; z-index: 2;
}
.hero-signature strong { display: block; font-size: .98rem; color: var(--ink); }
.hero-signature span { font-size: .8rem; color: var(--gray-400); }

/* ════════ 2 · ÜBER MICH ════════ */
.about { background: var(--white); padding: clamp(80px, 11vw, 140px) 0; }
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
}
.apple-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.about-claim { font-size: 1.15rem; color: var(--gray-600); }
.about-lead { position: sticky; top: 110px; align-self: start; }

.about-body p { color: var(--gray-700); margin-bottom: 20px; font-size: 1.06rem; }
.about-body strong { color: var(--ink); font-weight: 600; }
.pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green-700);
  line-height: 1.4;
  padding: 8px 0 8px 26px;
  border-left: 3px solid var(--green-500);
  margin: 34px 0;
}
.value-row {
  display: grid; gap: 18px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.value { display: flex; gap: 16px; align-items: flex-start; }
.value-ico {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.value-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--green-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value strong { display: block; font-size: 1.02rem; color: var(--ink); }
.value span { font-size: .94rem; color: var(--gray-600); }

/* ════════ 2 · CO₂-KOSTEN ════════ */
.co2 { background: var(--white); padding: clamp(80px, 11vw, 140px) 0; }
.co2 h2 { white-space: nowrap; }
@media (max-width: 700px) { .co2 h2 { white-space: normal; } }
.co2-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.co2-stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.co2-stat--warn { border-top-color: var(--amber); }
.co2-stat--good { border-top-color: var(--green-600); }
.co2-stat-val {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 12px;
}
.co2-stat--warn .co2-stat-val { color: #c2761b; }
.co2-stat--good .co2-stat-val { color: var(--green-700); }
.co2-stat-lbl { font-size: .94rem; color: var(--gray-600); }
.co2-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) { .co2-stats { grid-template-columns: 1fr; } }

/* ════════ 3 · LEISTUNGEN ════════ */
.services { background: var(--cream); padding: clamp(80px, 11vw, 140px) 0; }
.services h2 { line-height: 1.15; }

.combo {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 20px;
}
.combo-card, .combo-result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.combo-result {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.combo-num {
  position: absolute; top: 22px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; color: var(--gray-400); font-weight: 600;
}
.combo-ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.combo-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--green-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.combo-ico--light { background: rgba(255,255,255,.14); }
.combo-ico--light svg { stroke: #fff; }
.combo-card h3, .combo-result h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.combo-card p { color: var(--gray-600); font-size: .98rem; }
.combo-result p { color: rgba(255,255,255,.85); font-size: .98rem; }
.combo-plus, .combo-equals {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 300; color: var(--green-500);
}

.services-note {
  display: flex; gap: 20px; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.services-note-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--green-50); display: flex; align-items: center; justify-content: center; }
.services-note-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--green-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.services-note p { font-size: .98rem; color: var(--gray-600); }
.services-note strong { color: var(--ink); font-weight: 600; }

.services-soon {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 26px;
  font-style: italic;
  font-size: .98rem;
  color: var(--gray-400);
}
.services-soon span { color: var(--green-600); font-weight: 600; font-style: italic; }
.services-soon-ico { display: inline-flex; }
.services-soon-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--gray-400); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ════════ 4 · DIRECTPOOL ════════ */
.directpool {
  background: linear-gradient(150deg, #0a2417 0%, #0f5c30 100%);
  color: #fff;
  padding: clamp(80px, 11vw, 130px) 0;
}
.dp-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 64px; align-items: center; }
.directpool h2 { color: #fff; margin-bottom: 20px; }
.dp-text > p { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 560px; }
.dp-text strong { color: #fff; }
.dp-points { list-style: none; margin: 28px 0 32px; display: grid; gap: 12px; }
.dp-points li { position: relative; padding-left: 30px; color: rgba(255,255,255,.85); font-size: 1rem; }
.dp-points li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-500); color: #0a2417;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.dp-badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.dp-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  transition: var(--ease);
}
.dp-badge:hover { background: rgba(255,255,255,.15); }
.dp-badge img { height: 26px; width: auto; filter: brightness(0) invert(1); }
/* Das directpool-Badge ist ein <button> (oeffnet das Partner-Formular) und muss
   die Browser-Optik eines Buttons ablegen, um wie das bwp-Badge auszusehen. */
button.dp-badge { font: inherit; color: inherit; cursor: pointer; }
button.dp-badge:focus-visible,
.dp-partner-link:focus-visible { outline: 2px solid #8fe0ac; outline-offset: 3px; }
/* directpool-Logo weiss + etwas groesser, sonst identisch zum bwp-Badge (Pille, Rahmen, weisser Filter) */
.dp-badge--logo img { height: 34px; }
.dp-badge--bwp span { font-size: .85rem; color: rgba(255,255,255,.85); }
.dp-badge--bwp strong { color: #fff; }

/* Hinweiszeile unter den Badges – sonst waere nicht erkennbar, dass das
   directpool-Logo ein Formular oeffnet und nicht zur Partnerseite fuehrt. */
.dp-partner-hint { margin-top: 16px; font-size: .92rem; color: rgba(255,255,255,.72); }
.dp-partner-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; font-weight: 700; color: #8fe0ac;
  text-decoration: underline; text-underline-offset: 3px;
  transition: var(--ease);
}
.dp-partner-link:hover { color: #fff; }

.dp-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.dp-trusted {
  width: 190px; height: 190px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  border: 4px solid rgba(255,255,255,.12);
}
.dp-trusted-cap { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); text-align: center; letter-spacing: .03em; }

/* ════════ 3b · DIGITALER SANIERUNGSCHECK ════════ */
.sancheck { background: var(--cream); padding: clamp(80px, 11vw, 140px) 0; }
.sancheck .section-head { margin-bottom: 44px; }
.sancheck-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sancheck-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(26px, 3vw, 34px);
}
.sancheck-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-50); margin-bottom: 16px;
}
.sancheck-ico svg {
  width: 23px; height: 23px;
  fill: none; stroke: var(--green-600); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.sancheck-card h3 { font-size: 1.24rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.sancheck-card ul { list-style: none; display: grid; gap: 11px; }
.sancheck-card li {
  position: relative; padding-left: 26px;
  font-size: .97rem; color: var(--gray-600); line-height: 1.5;
}
/* Haken als CSS-Zeichen: spart 10 SVGs im Markup */
.sancheck-card li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  font-weight: 800; color: var(--green-500);
}
.sancheck-cta { text-align: center; margin-top: 40px; }
/* .btn steht global auf nowrap. Dieser Knopftext ist lang — ohne Umbruch schob er
   auf dem Handy die ganze Seite seitlich aus dem Bild. */
.sancheck-cta .btn { white-space: normal; max-width: 100%; }
.sancheck-note {
  max-width: 620px; margin: 20px auto 0;
  font-size: .84rem; font-style: italic; color: var(--gray-400); line-height: 1.6;
}
.sancheck-note strong { color: var(--gray-600); font-style: normal; }

@media (max-width: 860px) {
  .sancheck-grid { grid-template-columns: 1fr; }
}

/* ════════ 5 · LEAD-FUNNEL ════════ */
.analyse { background: var(--white); padding: clamp(80px, 11vw, 140px) 0; }
.funnel {
  max-width: 640px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 44px);
}
.funnel-progress { height: 6px; border-radius: 999px; background: var(--green-50); overflow: hidden; }
.funnel-progress-bar { height: 100%; width: 25%; border-radius: 999px; background: linear-gradient(90deg, var(--green-500), var(--green-700)); transition: width .4s var(--ease); }
.funnel-step-label { font-size: .8rem; font-weight: 600; color: var(--gray-400); margin: 14px 0 26px; letter-spacing: .04em; }

.funnel-step { display: none; animation: stepIn .35s var(--ease); }
.funnel-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

.funnel-q { font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 24px; letter-spacing: -.01em; }
.funnel-lead { font-size: .92rem; color: var(--gray-600); margin: -14px 0 22px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--gray-700);
  cursor: pointer; text-align: left;
  transition: var(--ease);
}
.choice--wide { grid-column: 1 / -1; }
.choice:hover { border-color: var(--green-500); background: var(--green-50); }
.choice.is-selected { border-color: var(--green-600); background: var(--green-50); color: var(--green-800); box-shadow: 0 0 0 3px rgba(47,164,95,.16); }
.choice-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--green-50); display: flex; align-items: center; justify-content: center; }
.choice-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--green-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.choice.is-selected .choice-ico { background: rgba(255,255,255,.7); }
.choice-emoji { font-size: 1.25rem; flex-shrink: 0; }

.funnel-input-wrap {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 6px 18px; transition: var(--ease);
}
.funnel-input-wrap:focus-within { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(47,164,95,.16); }
.funnel-input-wrap input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 1.3rem; font-weight: 600; color: var(--ink);
  padding: 12px 0; background: none;
}
.funnel-input-wrap input.error { color: #b91c1c; }
.funnel-unit { font-weight: 600; color: var(--gray-400); }
.funnel-hint { font-size: .86rem; color: var(--gray-400); margin-top: 12px; }
.funnel-skip {
  margin-top: 18px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .9rem; font-weight: 600; color: var(--green-600);
  text-decoration: underline; text-underline-offset: 3px; padding: 0;
}
.funnel-skip:hover { color: var(--green-800); }

.funnel-result {
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius);
  padding: 24px; text-align: center; margin-bottom: 28px;
}
.fr-label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); margin-bottom: 8px; }
.fr-value { display: block; font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 6vw, 3rem); font-weight: 600; color: var(--green-700); line-height: 1; }
.fr-sub { display: block; font-size: .86rem; color: var(--gray-600); margin-top: 8px; }
.funnel-result.is-empty .fr-label,
.funnel-result.is-empty .fr-value { color: var(--gray-400); }

.funnel-form { display: grid; gap: 12px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.funnel-form input, .funnel-form textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: inherit; font-size: .98rem; color: var(--ink);
  outline: none; transition: var(--ease); background: var(--white); width: 100%;
  resize: vertical;
}
.funnel-form input:focus, .funnel-form textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(47,164,95,.16); }
.funnel-form .btn { margin-top: 6px; }
.funnel-note { font-size: .76rem; color: var(--gray-400); text-align: center; line-height: 1.5; }

.funnel-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.funnel-back, .funnel-next {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .96rem; font-weight: 600;
  padding: 10px 6px; transition: var(--ease);
}
.funnel-back { color: var(--gray-400); }
.funnel-back:hover { color: var(--gray-700); }
.funnel-back[hidden] { visibility: hidden; }
.funnel-next {
  color: #fff; background: var(--green-600);
  padding: 12px 28px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(26,128,71,.26);
}
.funnel-next:hover:not(:disabled) { background: var(--green-700); }
.funnel-next:disabled { background: var(--line); color: var(--gray-400); cursor: not-allowed; box-shadow: none; }
.funnel-next[hidden] { display: none; }

/* Ausweg-Zeile unter der Funnel-Navigation: „zu gross fuer diese Schaetzung?" */
.funnel-more {
  display: block; margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line);
  text-decoration: none; text-align: center;
}
.funnel-more-q { display: block; font-size: .88rem; color: var(--gray-600); }
.funnel-more-a {
  display: inline-block; margin-top: 5px;
  font-size: .92rem; font-weight: 700; color: var(--green-600);
  text-decoration: underline; text-underline-offset: 3px;
  transition: var(--ease);
}
.funnel-more:hover .funnel-more-a { color: var(--green-800); }

.funnel-success { text-align: center; padding: 30px 10px; }
.funnel-success .fs-next {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .93rem;
}
.funnel-success .btn { margin-top: 14px; }
.funnel-success .fs-ico { font-size: 3rem; margin-bottom: 14px; }
.funnel-success h3 { font-size: 1.4rem; color: var(--green-700); margin-bottom: 10px; }
.funnel-success p { color: var(--gray-600); }
.funnel-success a { color: var(--green-700); font-weight: 600; }

/* ════════ 6 · KONTAKT ════════ */
.contact { background: var(--cream); padding: clamp(40px, 5vw, 64px) 0; }
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.contact h2 { margin-bottom: 16px; }
.contact-text > p { color: var(--gray-600); font-size: 1.05rem; max-width: 440px; margin-bottom: 22px; }
.contact-eta { display: block; margin-top: 6px; font-style: italic; font-size: .9rem; color: var(--gray-400); }
.contact .eyebrow--light { color: var(--green-600); }
.contact-mail {
  display: inline-block;
  font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600;
  color: var(--green-700); text-decoration: none;
  border-bottom: 2px solid var(--green-100);
  transition: var(--ease); margin-bottom: 30px;
}
.contact-mail:hover { border-color: var(--green-500); }
.contact-quick { display: flex; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.contact-card .apple-mark { margin-bottom: 20px; }
.contact-quote {
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; font-style: italic;
  color: var(--ink); line-height: 1.5; margin-bottom: 18px;
}
.contact-card strong { color: var(--green-700); font-size: .98rem; }

/* ════════ FOOTER ════════ */
.footer { background: var(--green-900); color: rgba(255,255,255,.6); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding: 44px 28px;
}
.footer-brand img { height: 56px; width: auto; display: block; opacity: .95; }
.footer-links, .footer-legal { display: flex; flex-wrap: wrap; gap: 4px; }
.footer-links a, .footer-legal a {
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem;
  padding: 6px 12px; border-radius: 999px; transition: var(--ease);
}
.footer-links a:hover, .footer-legal a:hover { color: #fff; background: rgba(255,255,255,.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; padding: 16px 28px;
  font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-lead { position: static; }
  .dp-grid { grid-template-columns: 1fr; gap: 44px; }
  .dp-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .combo { grid-template-columns: 1fr; }
  .combo-plus, .combo-equals { transform: rotate(90deg); }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; text-align: center; }
  .choice-grid { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 8px 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .funnel { padding: 24px 18px; }
}

/* ════════ 4b · EINZUGSGEBIET / REGION ════════ */
.region { background: var(--white); padding: clamp(80px, 11vw, 140px) 0; }
/* „vor Ort" zusätzlich leicht kursiv – nur in der Einzugsgebiet-Sektion */
.region .leaf-accent { font-style: italic; }

/* Editorial 2-Spalten-Raster (wie .about-grid / .dp-grid) */
.region-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

/* Linke Intro-Spalte – sticky (wie .about-lead), Offset = scroll-padding-top */
.region-intro { position: sticky; top: 92px; align-self: start; }
.region-intro .section-sub { max-width: 460px; }
.region-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 28px; }
.region-aside {
  font-size: .92rem;
  color: var(--gray-600);
  border-left: 3px solid var(--green-100);
  padding-left: 18px;
  max-width: 420px;
}

/* Rechte Spalte – Stack der Regionen */
.region-stack { display: grid; gap: 24px; }

/* Region-Karte (weiße Karte wie .combo-card / .co2-stat) */
.region-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.region-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Header-Row: Icon (.combo-ico wiederverwendet) + Ort + Bundesland */
.region-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.region-card-head .combo-ico { flex-shrink: 0; }
.region-card-meta { display: flex; flex-direction: column; gap: 2px; }
.region-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-600);
}
.region-card-meta h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
}
.region-state { font-size: .9rem; color: var(--gray-400); font-weight: 500; }

/* Redaktioneller Fließtext */
.region-lead { color: var(--gray-600); font-size: 1rem; margin-bottom: 22px; }
.region-lead strong { color: var(--ink); font-weight: 600; }

/* Feine Ortsliste mit grünem Häkchen (Muster wie .dp-points) */
/* ── „Ein Wurzelwerk, zwei Kronen" ────────────────────
   Zwei Apfelbäume an den echten Standorten, unterirdisch verbunden. Zeigt die
   Spannweite; die Nähe zeigen die maßstabsgetreuen Karten daneben. Zeigen oder
   Tippen auf einen Baum lässt die Orte der Region aufblühen und hebt die
   zugehörige Karte hervor (Logik in script.js). */
.de-map {
  display: block; width: 100%; max-width: 400px; height: auto;
  margin: 26px 0 10px;
}
.de-land {
  fill: var(--green-50);
  stroke: var(--green-600); stroke-opacity: .35;
  stroke-width: 1.2; stroke-linejoin: round;
  transition: var(--ease);
}
.de-wurzel {
  fill: none; stroke: #8a6a45; stroke-opacity: .8;
  stroke-width: 1.5; stroke-dasharray: 5 3; stroke-linecap: round;
}
.de-dist {
  font-family: inherit; font-size: 8.5px; font-weight: 700;
  fill: #8a6a45; text-anchor: middle;
  paint-order: stroke; stroke: var(--cream); stroke-width: 4px; stroke-linejoin: round;
}
/* Die Bäume sind Miniaturen des Energiebaums aus dem Wetterlabor: Fächerkrone aus
   PV-Modulen, geteilter Stamm mit goldenem Kern, rote Äpfel. Als <symbol> einmal
   definiert und zweimal per <use> gesetzt — die Farben stehen im Symbol selbst. */
.de-treff { fill: transparent; }        /* großzügige Trefferfläche fürs Antippen */
.de-baum { cursor: pointer; }
.de-baum:focus { outline: none; }
.de-baum:focus-visible .de-treff { fill: rgba(47,164,95,.14); stroke: var(--green-600); stroke-width: 1; }

.de-label {
  font-family: inherit; font-size: 11px; font-weight: 800; fill: var(--ink);
  paint-order: stroke; stroke: var(--cream); stroke-width: 3.5px; stroke-linejoin: round;
}
.de-sub {
  font-family: inherit; font-size: 9px; font-weight: 600; fill: var(--gray-600);
  paint-order: stroke; stroke: var(--cream); stroke-width: 3.5px; stroke-linejoin: round;
}

/* Die Orte blühen erst auf, wenn die Region angetippt wird */
.de-ort { fill: var(--green-500); opacity: 0; transition: opacity .45s var(--ease); }
.de-map[data-aktiv="osnabrueck"] .de-orte[data-region="osnabrueck"] .de-ort,
.de-map[data-aktiv="leipzig"]    .de-orte[data-region="leipzig"]    .de-ort { opacity: .95; }
/* Die nicht gewählte Seite tritt zurück */
.de-map[data-aktiv] .de-baum { transition: opacity .3s var(--ease); }
.de-map[data-aktiv="osnabrueck"] .de-baum[data-region="leipzig"],
.de-map[data-aktiv="leipzig"]    .de-baum[data-region="osnabrueck"] { opacity: .42; }

.de-hinweis {
  max-width: 400px; margin-bottom: 26px;
  font-size: .86rem; color: var(--gray-600);
}
.de-hinweis span { display: block; font-size: .78rem; color: var(--gray-400); font-style: italic; }

/* Die Regionskarte, die gerade gemeint ist, hebt sich mit */
.region-card.is-hervor { border-color: var(--green-500); box-shadow: var(--shadow-md); }

/* ── Einzugsgebiets-Karte ─────────────────────────────
   Die Punkte sitzen an ihren echten Orten (siehe Kommentar im HTML). Beschriftet
   sind nur zwei; für den Rest ist die Ortsliste die Legende — Maus auf einen Ort,
   und der zugehörige Punkt leuchtet auf. Umgekehrt genauso. */
.reg-map {
  display: block; width: 100%; height: auto;
  margin: 4px 0 22px;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.reg-rays line { stroke: var(--green-600); stroke-opacity: .13; stroke-width: 1; }
.reg-ring {
  font-family: inherit; font-size: 7.5px; font-weight: 700;
  fill: var(--green-700); fill-opacity: .5;
  text-anchor: middle; letter-spacing: .06em;
  /* Halo in der Kartenfarbe: schneidet Ring und Strahl hinter der Zahl weg */
  paint-order: stroke; stroke: var(--green-50); stroke-width: 4px; stroke-linejoin: round;
}
.reg-label {
  font-family: inherit; font-size: 11px; font-weight: 700;
  fill: var(--ink); text-anchor: middle;
  paint-order: stroke; stroke: var(--green-50); stroke-width: 3.5px; stroke-linejoin: round;
}
.reg-label--home { fill: var(--green-700); }
.reg-dot {
  fill: var(--green-500); stroke: #fff; stroke-width: 1.5;
  transition: var(--ease);
}
.reg-home-dot { fill: var(--green-700); stroke: #fff; stroke-width: 2; }
.reg-home-halo { fill: var(--green-600); opacity: .18; }
@media (prefers-reduced-motion: no-preference) {
  .reg-home-halo { animation: regPuls 2.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
}
@keyframes regPuls {
  0%, 100% { transform: scale(1);   opacity: .18; }
  50%      { transform: scale(1.28); opacity: .07; }
}
/* Hervorhebung – von der Liste oder vom Punkt aus ausgelöst */
.reg-dot.is-on { fill: var(--amber); r: 7; }
.reg-home.is-on .reg-home-dot { fill: var(--amber); }

.region-places {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin-bottom: 18px;
}
.region-places li {
  position: relative;
  padding-left: 28px;
  font-size: .96rem;
  color: var(--gray-700);
  font-weight: 500;
}
/* Am Handy schrumpft die ganze Karte — die Schrift muss dort relativ groesser
   werden, sonst ist sie nicht mehr zu entziffern. */
@media (max-width: 620px) {
  .reg-label { font-size: 15px; }
  .reg-ring  { font-size: 10.5px; }
  .reg-dot   { r: 5.5; }
}

.region-places li[data-ort] { cursor: default; border-radius: 6px; transition: var(--ease); }
.region-places li.is-on { color: var(--green-800); }
.region-places li.is-on::before { background: var(--amber); color: #fff; }
.region-places li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-50); color: var(--green-600);
  font-size: .66rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.region-note { font-size: .92rem; font-style: italic; color: var(--gray-400); }

/* Responsive – 2 Spalten -> 1 Spalte bei 980px (wie Seitenlogik) */
@media (max-width: 980px) {
  .region-grid { grid-template-columns: 1fr; gap: 44px; }
  .region-intro { position: static; }
}
@media (max-width: 480px) {
  .region-places { grid-template-columns: 1fr; }
  .region-actions { flex-direction: column; }
  .region-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ════════ LEISTUNGEN · Apfelbaum-Diagramm (Ansatz A) ════════ */
/* Alle Klassen mit .svc-/.tree-Prefix – kollidieren NICHT mit .combo/.services-note */

.svc-tree {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 560px) 1fr;
  grid-template-areas:
    "pv    art    result"
    "hp    art    result";
  align-items: center;
  justify-items: stretch;
  gap: 28px 48px;
  margin-top: 8px;
}

/* Zentrales Baum-SVG */
.svc-tree-art {
  grid-area: art;
  align-self: center;
  display: flex;
  justify-content: center;
  position: relative;
}
.svc-tree-art .tree-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

/* Callout-Zonen */
.svc-callout--pv     { grid-area: pv;     text-align: right; align-self: end;    padding-bottom: 6px; }
.svc-callout--hp     { grid-area: hp;     text-align: right; align-self: start;  padding-top: 6px; }
.svc-callout--result { grid-area: result; text-align: left;  align-self: center; }

.svc-callout {
  position: relative;
  max-width: 320px;
}
.svc-callout--result { margin-left: 0; }
.svc-callout--pv, .svc-callout--hp { margin-left: auto; }

.svc-callout h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 8px 0 8px;
  line-height: 1.25;
}
.svc-callout p {
  font-size: .96rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Tag (kleines Label über jedem Block) */
.svc-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  padding: 5px 12px;
  border: 1px solid var(--green-100);
  border-radius: 999px;
  background: var(--green-50);
}
.svc-tag--accent {
  color: var(--green-700);
  border-color: var(--green-100);
  background: var(--green-50);
}

/* feine Callout-Linie (Connector) zur jeweiligen Baum-Zone */
.svc-callout .svc-dot {
  position: absolute;
  top: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px var(--green-50);
  transform: translateY(-50%);
}
.svc-callout--pv .svc-dot,
.svc-callout--hp .svc-dot   { right: -32px; }
.svc-callout--result .svc-dot { left: -32px; background: var(--green-500); box-shadow: 0 0 0 5px var(--green-50); }

.svc-callout .svc-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1.5px;
  background: linear-gradient(to right, var(--green-500), transparent);
  transform: translateY(-50%);
}
.svc-callout--pv .svc-dot::before,
.svc-callout--hp .svc-dot::before   { right: 9px; background: linear-gradient(to left, var(--green-500), transparent); }
.svc-callout--result .svc-dot::before { left: 9px; background: linear-gradient(to right, var(--green-500), transparent); }

/* ── SVG-Detailfarben & dezente Animation ── */
.tree-svg .tree-glow { transform-origin: 240px 250px; animation: svcGlow 7s ease-in-out infinite; }
.tree-svg .tree-flow circle {
  animation: svcRise 3.2s ease-in-out infinite;
}
.tree-svg .tree-flow circle:nth-child(2) { animation-delay: -1.06s; }
.tree-svg .tree-flow circle:nth-child(3) { animation-delay: -2.13s; }
.tree-svg .tree-heat path {
  animation: svcHeat 3.2s ease-in-out infinite;
}
.tree-svg .tree-heat path:nth-child(2) { animation-delay: -.5s; }
.tree-svg .tree-heat path:nth-child(3) { animation-delay: -1s; }

@keyframes svcGlow {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}
@keyframes svcRise {
  0%   { transform: translateY(14px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(-58px); opacity: 0; }
}
@keyframes svcHeat {
  0%, 100% { opacity: .35; transform: translateY(2px); }
  50%      { opacity: 1;   transform: translateY(-2px); }
}

/* ── Hinweis Fachbetriebe (svc-Variante der services-note) ── */
.svc-note {
  display: flex; gap: 20px; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 64px;
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.svc-note-ico {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.svc-note-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--green-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-note p { font-size: .98rem; color: var(--gray-600); }
.svc-note strong { color: var(--ink); font-weight: 600; }

/* ── Ausblick Kleinwindkraft (svc-Variante) ── */
.svc-soon {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 26px;
  font-style: italic;
  font-size: .98rem;
  color: var(--gray-400);
}
.svc-soon span { color: var(--green-600); font-weight: 600; font-style: italic; }
.svc-soon-ico { display: inline-flex; }
.svc-soon-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--gray-400); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ════════ RESPONSIVE · Leistungen-Diagramm ════════ */
@media (max-width: 980px) {
  /* 1 Spalte: Baum oben, Callouts darunter als ruhige Liste */
  .svc-tree {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "pv"
      "result"
      "hp";
    gap: 22px;
    justify-items: center;
  }
  .svc-tree-art .tree-svg { max-width: 360px; }
  .svc-callout,
  .svc-callout--pv,
  .svc-callout--hp,
  .svc-callout--result {
    text-align: center;
    max-width: 460px;
    margin: 0 auto;
    align-self: auto;
    padding: 0;
  }
  /* Connector-Punkte im Stack ausblenden */
  .svc-callout .svc-dot { display: none; }
}

@media (max-width: 480px) {
  .svc-tree-art .tree-svg { max-width: 300px; }
  .svc-note { flex-direction: column; text-align: center; gap: 14px; padding: 24px 20px; }
  .svc-soon { flex-direction: row; flex-wrap: wrap; }
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  .tree-svg .tree-glow,
  .tree-svg .tree-flow circle,
  .tree-svg .tree-heat path { animation: none; }
}

/* ── Leistungen: Foto-Apfelbaum mit klickbaren Äpfeln ── */
.svc-tree-art .tree-photo { width: 100%; max-width: 540px; }
.tree-photo { position: relative; margin: 0 auto; }
.tree-photo picture, .tree-photo img { display: block; width: 100%; height: auto; border-radius: 12px; }

.apple-spot {
  position: absolute; left: var(--x); top: var(--y);
  width: 13%; aspect-ratio: 1 / 1; transform: translate(-50%, -50%);
  border: 0; background: transparent; padding: 0; cursor: pointer;
  border-radius: 50%; -webkit-tap-highlight-color: transparent;
}
.apple-spot::before {
  content: ""; position: absolute; inset: 6%; border-radius: 50%;
  border: 2px solid var(--amber); opacity: 0; transform: scale(.6);
  transition: opacity .2s ease, transform .2s ease;
}
.apple-spot::after {
  content: ""; position: absolute; inset: 20%; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(224,162,58,.5); animation: appleHint 2.6s ease-out infinite;
}
.apple-spot:hover::before, .apple-spot:focus-visible::before, .apple-spot.is-open::before { opacity: 1; transform: scale(1); }
.apple-spot:focus-visible { outline: none; }
@keyframes appleHint {
  0%   { box-shadow: 0 0 0 0 rgba(224,162,58,.5); }
  70%  { box-shadow: 0 0 0 13px rgba(224,162,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,162,58,0); }
}

.apple-pop {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, calc(-100% - 4px)) scale(.96);
  width: min(220px, 72%);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 12px 15px; text-align: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 5;
}
.apple-pop::after {
  content: ""; position: absolute; left: 50%; bottom: -7px;
  width: 13px; height: 13px; background: var(--white);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}
.apple-pop.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, calc(-100% - 12px)) scale(1);
}
.apple-pop strong { display: block; font-size: .98rem; color: var(--green-700); margin-bottom: 3px; }
.apple-pop span { font-size: .86rem; color: var(--gray-600); line-height: 1.45; }

.tree-photo-hint { text-align: center; font-size: .86rem; color: var(--gray-400); margin-top: 14px; }
.tree-photo-hint strong { color: var(--green-700); font-weight: 600; }

@media (prefers-reduced-motion: reduce) { .apple-spot::after { animation: none; } }

/* Wärme-Hotspot: steigt nach oben (Wärme!), statt radial zu pulsieren */
.apple-spot.heat-spot::after { content: none; }
.heat-spot .heat-wisp {
  position: absolute; left: 50%; bottom: 26%;
  width: 46%; aspect-ratio: 1 / 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,170,55,.9) 0%, rgba(240,170,55,0) 66%);
  transform: translate(-50%, 0); pointer-events: none;
  animation: heatRise 2.2s ease-out infinite;
}
.heat-spot .heat-wisp:nth-child(2) { left: 40%; animation-delay: -0.73s; }
.heat-spot .heat-wisp:nth-child(3) { left: 60%; animation-delay: -1.47s; }
@keyframes heatRise {
  0%   { opacity: 0;  transform: translate(-50%, 35%)   scale(.45); }
  15%  { opacity: 1; }
  55%  { opacity: .8; }
  100% { opacity: 0;  transform: translate(-50%, -210%) scale(1.35); }
}
@media (prefers-reduced-motion: reduce) { .heat-spot .heat-wisp { animation: none; opacity: .55; } }

/* Sonnen-Hotspot: atmender Reaktor-Glow (Kernfusion) */
.apple-spot.sun-spot::after {
  box-shadow: none;
  background: radial-gradient(circle, rgba(245,195,60,.6) 0%, rgba(245,195,60,0) 66%);
  animation: sunPulse 2.8s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,100% { opacity: .3;  transform: scale(.65); }
  50%     { opacity: .92; transform: scale(1.55); }
}
@media (prefers-reduced-motion: reduce) { .apple-spot.sun-spot::after { animation: none; } }

/* Popover, das nach UNTEN öffnet (für die Sonne ganz oben) */
.apple-pop.pop-below { transform: translate(-50%, calc(0% + 4px)) scale(.96); }
.apple-pop.pop-below.is-open { transform: translate(-50%, calc(0% + 12px)) scale(1); }
.apple-pop.pop-below::after { top: -7px; bottom: auto; border: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }

/* ═══════════ 4b · SOZIALES ENGAGEMENT (Don Bosco) ═══════════ */
.engagement { background: var(--cream); padding: clamp(80px, 11vw, 130px) 0; }
.engagement-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.engagement-text .section-sub { max-width: 480px; }
.engagement-text .section-sub strong { color: var(--ink); }

/* Fakten aus der Sponsorenurkunde (Muster wie .dp-points, helle Variante) */
.engagement-facts { list-style: none; margin: 30px 0 26px; display: grid; gap: 12px; }
.engagement-facts li {
  position: relative;
  padding-left: 30px;
  color: var(--gray-700);
  font-size: .98rem;
}
.engagement-facts li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.engagement-facts strong { color: var(--ink); font-weight: 600; }
.engagement-aside {
  font-size: .92rem;
  font-style: italic;
  color: var(--gray-600);
  border-left: 3px solid var(--green-100);
  padding-left: 18px;
  max-width: 420px;
}

/* Foto-Karte mit Sponsor-Badge */
.engagement-visual { position: relative; margin: 0; }
.engagement-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.engagement-photo img { display: block; width: 100%; height: auto; }
.engagement-badge {
  position: absolute;
  top: -17px; left: 26px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .74rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-700);
  box-shadow: var(--shadow-md);
}
.engagement-badge svg {
  width: 15px; height: 15px; flex-shrink: 0;
  fill: #c62f27;
  animation: engHeart 1.8s ease-in-out infinite;
}
@keyframes engHeart {
  0%, 100% { transform: scale(1); }
  12%      { transform: scale(1.22); }
  24%      { transform: scale(1); }
  36%      { transform: scale(1.14); }
  48%      { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .engagement-badge svg { animation: none; } }
.engagement-cap {
  margin-top: 16px;
  font-size: .92rem;
  font-style: italic;
  color: var(--gray-600);
  text-align: center;
}

/* Responsive – gleiche Bruchlogik wie die übrigen Sektionen */
@media (max-width: 980px) {
  .engagement-grid { grid-template-columns: 1fr; gap: 48px; }
  .engagement-visual { order: -1; }
}

/* ════════ MODAL · VERTRIEBSPARTNER WERDEN ════════
   Wird vom directpool-Badge geoeffnet. Das Karten-Innere uebernimmt bewusst die
   Formular-Optik des Funnels (.funnel-form), damit es sich nicht fremd anfuehlt. */
.modal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 61, 34, .55);
  backdrop-filter: blur(3px);
  animation: modalFade .25s var(--ease);
}
.modal-card {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(26px, 4vw, 40px);
  animation: modalIn .3s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-card { animation: none; }
}
.modal-x {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--gray-400);
  transition: var(--ease);
}
.modal-x:hover { background: var(--green-50); color: var(--green-700); }

.modal-head { margin-bottom: 24px; padding-right: 34px; }
.modal-head .eyebrow { margin-bottom: 12px; }
.modal-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 600; color: var(--ink);
  margin-bottom: 12px;
}
.modal-head p { font-size: .98rem; color: var(--gray-600); line-height: 1.6; }
/* Zusage: „Ich bleibe Ihr Ansprechpartner" – der Satz, der die Angst nimmt,
   nach der Unterschrift allein dazustehen. Bewusst abgesetzt, nicht im Fliesstext. */
.modal-zusage {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 18px; padding: 16px 18px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius);
  font-size: .93rem; color: var(--gray-700); line-height: 1.55;
}
.modal-zusage svg {
  flex-shrink: 0; width: 19px; height: 19px; margin-top: 2px;
  fill: none; stroke: var(--green-600); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.modal-zusage strong { color: var(--green-800); }

/* Die Auswahlfelder gibt es nur hier – Optik identisch zu den Textfeldern. */
.partner-form select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: inherit; font-size: .98rem;
  color: var(--ink); background: var(--white);
  outline: none; transition: var(--ease); width: 100%;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d6b62' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 40px;
}
.partner-form select:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(47,164,95,.16); }
.partner-form .funnel-note a { color: var(--green-700); }

/* Seite hinter dem Fenster nicht mitscrollen lassen */
body.modal-open { overflow: hidden; }

@media (max-width: 560px) {
  .modal { padding: 0; align-items: flex-end; }
  .modal-card {
    max-width: none; max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}
