/* ============================================================
   ecowatt-custom.css
   Ecowatt Design System — Webflow Fix + Animation Layer
   ============================================================ */

/* === Design Tokens === */
:root {
  /* Farben (hex) */
  --eco-green:       #39a85b;
  --eco-green-soft:  #f4f8f2;
  --eco-green-mid:   #edf6ee;
  --ink:             #0c1511;
  --ink-soft:        #4d6256;
  --ink-faint:       #6b8a74;
  --night:           #0a1410;
  --border:          #e4ede1;
  /* oklch (Animation Layer) */
  --eco-ink:         oklch(0.18 0.018 155);
  --eco-ink-soft:    oklch(0.34 0.012 155);
  --eco-paper:       oklch(0.985 0.004 145);
  --eco-paper-warm:  oklch(0.975 0.008 145);
  --eco-line:        oklch(0.92 0.012 145);
  --eco-line-strong: oklch(0.86 0.018 145);
  --eco-brand:       oklch(0.65 0.16 145);
  --eco-brand-deep:  oklch(0.52 0.14 148);
  --eco-brand-glow:  oklch(0.65 0.16 145 / 0.14);
  --eco-shadow-1:    0 1px 2px oklch(0.18 0.018 155 / 0.04), 0 2px 6px oklch(0.18 0.018 155 / 0.04);
  --eco-shadow-2:    0 2px 6px oklch(0.18 0.018 155 / 0.06), 0 14px 32px -10px oklch(0.18 0.018 155 / 0.12);
  --eco-shadow-3:    0 4px 12px oklch(0.18 0.018 155 / 0.08), 0 28px 60px -16px oklch(0.18 0.018 155 / 0.18);
  --eco-ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --eco-ease-strong: cubic-bezier(0.16, 1, 0.3, 1);
  --eco-dur-fast:    180ms;
  --eco-dur:         360ms;
  --eco-dur-slow:    640ms;
}

/* === Base === */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}

/* === Accessibility: Skip-Link === */
.eco-skip {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  background: var(--eco-ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.eco-skip:focus {
  left: 0 !important;
  outline: 2px solid var(--eco-brand);
}

/* ── Highlight-Cards: visuell entstapeln ───────────────────── */
/* Statt zentrierter Icon-Box → textuell, links-bündig, ruhiger */
.highlight-card {
  background-color: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 1.75rem !important;
  text-align: left !important;
  align-items: flex-start !important;
  box-shadow: none !important;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.highlight-card:hover {
  border-color: var(--eco-green) !important;
  box-shadow: 0 2px 16px rgba(57,168,91,.08) !important;
}
.highlight-card.cc-left-aligned {
  text-align: left !important;
  align-items: flex-start !important;
}
.highlight-card_icon {
  width: 40px !important;
  height: 40px !important;
  background: var(--eco-green-soft) !important;
  border-radius: 8px !important;
  padding: 8px !important;
  margin-bottom: 1rem !important;
  color: var(--eco-green) !important;
  flex-shrink: 0 !important;
}
.highlight-card_icon svg,
.highlight-card_icon img {
  width: 100% !important;
  height: 100% !important;
  color: var(--eco-green) !important;
}
/* Entfernt die grellen Hintergrundfarben von highlight-cards */
.highlight-card.cc-alt,
.highlight-card.is-green {
  background-color: var(--eco-green-soft) !important;
  border-color: transparent !important;
}

/* ── Section Headings: weniger uniform ─────────────────────── */
.h2-new {
  font-size: clamp(1.35rem, 2.8vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  line-height: 1.2 !important;
  color: var(--ink) !important;
}
.h2-new .span-h2-variant {
  display: block;
  font-size: .875em;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -.01em;
  margin-top: .3rem;
}

/* ── Labels: dezenter ──────────────────────────────────────── */
.section-label,
.label-new,
[class*="label"]:not([class*="ecq-"]):not([class*="pq-"]):not([class*="bzq-"]) {
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--eco-green) !important;
}

/* ── Knöpfe: konsistenter ──────────────────────────────────── */
[data-wf--button-m--variant="primary"].button-m {
  background: var(--eco-green) !important;
  border-color: var(--eco-green) !important;
  border-radius: 6px !important;
}
[data-wf--button-m--variant="secondary"].button-m,
[data-wf--button-m--variant="outline"].button-m {
  border-radius: 6px !important;
}

/* ── highlight-cards Grid: besseres Layout ─────────────────── */
.highlight-cards {
  gap: 1.25rem !important;
}
.highlight-cards.cc-1x1 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}
.highlight-cards.cc-2x2 {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.25rem !important;
}
@media (max-width: 640px) {
  .highlight-cards.cc-2x2 {
    grid-template-columns: 1fr !important;
  }
}

/* ── Video section scroll performance ─────────────────────── */
/* Promote video containers to compositor layers to eliminate scroll jank */
.video-card {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: layout;
}
.video-bg {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: strict;
  isolation: isolate;
}
.video-bg video {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}
/* Avoid expensive box-shadow repaint on scroll — use filter:drop-shadow instead */
.layout-l.cc-single-video .video-card {
  box-shadow: none !important;
  filter: drop-shadow(0 4px 14px rgba(12,21,17,0.08)) drop-shadow(0 16px 40px rgba(12,21,17,0.10));
}

/* ── Video cards: gradient overlay for text legibility ─────── */
.layout-l.cc-single-video .video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,20,40,0.08) 30%, rgba(5,20,40,0.68) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}
.layout-l.cc-single-video .video-card.cc-content-left::before {
  background: linear-gradient(to left, rgba(5,20,40,0.08) 30%, rgba(5,20,40,0.68) 100%);
}

/* ── Section Spacing: mehr Luft ────────────────────────────── */
.section-new {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.section-new.is-less-padding {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* ── Text ──────────────────────────────────────────────────── */
.p-1-0625 {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  color: var(--ink-soft) !important;
}
.h6-new {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-bottom: .4rem !important;
}

/* ── Three-Steps Cards: cleaner ────────────────────────────── */
.three-steps-card {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding: 1.5rem !important;
}
.p-three-steps {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: var(--eco-green) !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: .75rem !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
}

/* ── Wärmepumpe im Fokus: helle Texte auf dunklem Hintergrund ── */
.ecowatt-home-focus .h2-new {
  color: #ffffff !important;
}
.ecowatt-home-focus .p-1-0625 {
  color: rgba(255, 255, 255, .75) !important;
}
.ecowatt-home-focus .ecowatt-chip {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .25) !important;
  color: #ffffff !important;
}
.ecowatt-home-focus .ecowatt-secondary-link {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, .4) !important;
}

/* ── Community Slider: mehr Kontrast ───────────────────────── */
.section_community {
  background: var(--night) !important;
}

/* ── pg-* system ──────────────────────────────────────────── */
.pg-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Dark CTA Section (pg-cta-dark) ────────────────────────── */
.pg-cta-dark {
  background: #0a1410;
  padding: 5rem 0;
  width: 100%;
  box-sizing: border-box;
}
.pg-cta-dark .pg-label {
  color: #5dd48a !important;
}
.pg-cta-dark .pg-title {
  color: #fff !important;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.pg-cta-dark p {
  color: rgba(255, 255, 255, .65);
}

/* ── Buttons (pg-btn-green / pg-btn-outline) ───────────────── */
.pg-btn-green {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #39a85b;
  color: #fff !important;
  font-weight: 700;
  font-size: .9375rem;
  padding: .85rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: background .15s, box-shadow .15s, transform .14s;
  white-space: nowrap;
}
.pg-btn-green:hover {
  background: #2e9a50;
  box-shadow: 0 4px 16px rgba(57, 168, 91, .35);
  transform: translateY(-1px);
}
.pg-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-size: .9375rem;
  padding: .85rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, .3);
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.pg-btn-outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6);
}

/* ── Stat Bar (pv-statbar) ──────────────────────────────────── */
/* Standalone statbar braucht eigene Sektionsabstände */
div.pg-inner:has(.pv-statbar) {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.pv-statbar {
  border: 1px solid #e4ede1;
  border-radius: 10px;
  overflow: hidden;
}
.pv-statbar > div {
  flex: 1;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid #e4ede1;
}
.pv-statbar > div:last-child {
  border-right: none;
}
@media (max-width: 580px) {
  .pv-statbar {
    flex-direction: column !important;
  }
  .pv-statbar > div {
    border-right: none !important;
    border-bottom: 1px solid #e4ede1;
  }
  .pv-statbar > div:last-child {
    border-bottom: none;
  }
}

/* ── Vorteile Checklist Grid (wp-feat-grid) ─────────────────── */
.wp-feat-grid {
  display: grid !important;
  grid-template-columns: 5fr 4fr !important;
  gap: 5rem !important;
  align-items: start !important;
}
@media (max-width: 800px) {
  .wp-feat-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .wp-feat-grid img {
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
}

/* ── Hero Stats Bar — drei einzelne Pill-Cards ──────────────── */
.hero-highlights--stats {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 1rem 2rem 1.5rem !important;
  gap: 0.75rem !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}
.hero-highlights--stats .hero-highlight {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 0.7rem 1.25rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(16px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  gap: 0.15rem !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}
.hero-highlights--stats .hero-highlight:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.hero-hl-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.hero-hl-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
@media (max-width: 580px) {
  .hero-highlights--stats {
    padding: 0.5rem 0.75rem 0.75rem !important;
    gap: 0.4rem !important;
    flex-wrap: nowrap !important;
  }
  .hero-hl-num {
    font-size: 1.1rem;
  }
  .hero-hl-label {
    font-size: 0.58rem;
  }
}

/* ── Standalone single video-card sections ──────────────────── */
.layout-l.cc-single-video {
  display: block !important;
  max-width: var(--layout-max, 1200px);
}
.layout-l.cc-single-video .col-new {
  width: 100% !important;
  max-width: 100% !important;
}

/* ── Process steps section ───────────────────────────────────── */
/* Fix: layout-m is a 12-col grid; col-new without w-node ID defaults to 1 col */
.eco-process-section > .layout-m > .col-new,
.eco-wp-intro > .layout-m > .col-new {
  grid-column: 1 / -1;
}

.eco-steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.eco-step-connector {
  width: 2rem;
  height: 2px;
  background: linear-gradient(to right, var(--eco-green), rgba(57,168,91,.2));
  margin-top: 1.55rem;
  align-self: start;
}
.eco-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.eco-step-card:hover {
  border-color: rgba(57, 168, 91, .4);
  box-shadow: 0 4px 20px rgba(57, 168, 91, .08);
}
.eco-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--eco-green);
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .eco-steps-grid {
    grid-template-columns: 1fr;
  }
  .eco-step-connector {
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom, var(--eco-green), rgba(57,168,91,.2));
    margin: 0 0 0 1.25rem;
    align-self: auto;
  }
}

/* ── WP intro section ────────────────────────────────────────── */
.eco-wp-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: 0 4px 24px rgba(12,21,17,.06);
}
.eco-wp-intro__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.eco-wp-benefit {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--ink-soft, #4d6256);
  line-height: 1.4;
}
.eco-wp-benefit svg {
  flex-shrink: 0;
  margin-top: .1rem;
}
.eco-wp-benefit strong {
  color: var(--ink, #0c1511);
  font-weight: 700;
}
@media (max-width: 700px) {
  .eco-wp-intro__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
}

/* ── FAQ Section: distinct background + card styling ────────── */
.section-new:has(.faqs-wrap) {
  background: var(--eco-green-soft) !important;
}

/* FAQ item = clean card */
.faq_accordion-new {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 0.625rem !important;
  transition: box-shadow .2s ease, border-color .2s ease !important;
}
.faq_accordion-new:hover {
  border-color: rgba(57,168,91,.3) !important;
}
.faq_accordion-new.is-open {
  box-shadow: 0 4px 24px rgba(12,21,17,.07) !important;
  border-color: rgba(57,168,91,.3) !important;
}
/* Hide Webflow divider line (replaced by card borders) */
.faq_devide {
  display: none !important;
}
/* Answer: collapsed by default via max-height trick */
.faq_answer {
  height: auto !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .32s ease, padding .32s ease !important;
  padding: 0 1.4rem !important;
}
.faq_accordion-new.is-open .faq_answer,
.faq_accordion.eco-open .faq_answer {
  max-height: 900px !important;
  padding: 0 1.4rem 1.25rem !important;
}
/* Chevron rotation when open */
.faq_icon-new {
  transition: transform .3s ease !important;
  flex-shrink: 0 !important;
  color: var(--eco-green) !important;
}
.faq_accordion-new.is-open .faq_icon-new {
  transform: rotate(180deg) !important;
}
/* FAQ heading treatment */
.section-new:has(.faqs-wrap) .h2-new .span-h2-variant {
  color: var(--eco-green) !important;
  font-weight: 700 !important;
}
/* FAQ answer text */
.faq-rt p {
  font-size: .9375rem !important;
  line-height: 1.65 !important;
  color: var(--ink-soft) !important;
  margin-bottom: .75rem !important;
}
.faq-rt p:last-child {
  margin-bottom: 0 !important;
}
.faq-rt a {
  color: var(--eco-green) !important;
  text-decoration: underline;
}
/* faq-wrap: gap between cards handled by margin above */
.faq-wrap {
  gap: 0 !important;
}

/* ── Mobile: reduce section padding ─────────────────────────── */
@media (max-width: 767px) {
  .section-new {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Override yellow rotating text → white */
  .rotating-headline-100-width-new {
    color: #ffffff !important;
  }

  /* Hide green checkmark USPs (replaced by stats bar) */
  .mobile-usps.c-desktop-hidden {
    display: none !important;
  }

  /*
   * Hero stats bar – mobile fix
   * Problem: absolute; bottom:1rem puts the bar below the fold on tall mobile heroes.
   * Fix: take it OUT of absolute flow so it renders right after the hero CTA button,
   *      always visible without scrolling.
   */
  .hero-highlights--stats {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.4rem !important;
    padding: 0.25rem 1.5rem 1.75rem !important;
  }

  .hero-highlights--stats .hero-highlight {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0.55rem 0.75rem !important;
  }

  .hero-hl-num {
    font-size: 1.1rem !important;
    white-space: nowrap;
  }

  .hero-hl-label {
    font-size: 0.62rem !important;
    white-space: nowrap;
  }
}

/* ── Cross-sell / Card Grid (pg-xsell-grid / pg-card) ─────── */
.pg-xsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: box-shadow .15s, transform .15s;
  text-decoration: none !important;
  color: var(--ink) !important;
}
.pg-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .pg-xsell-grid {
    grid-template-columns: 1fr;
  }
}

/* ── B2B Subpage Theme: Navy → Ecowatt Green ─────────────────── */

/* Page background: clean white for professional B2B trust */
.business-topic-page {
  background: #fff !important;
  color: #0c1511 !important;
}

/* Nav: prevent multi-word links from wrapping */
.eco2-plain-link {
  white-space: nowrap !important;
}

/* Eyebrow labels: green instead of slate-blue */
.business-topic-eyebrow {
  color: #39a85b !important;
}

/* Hero: dark green impact background – no more empty pale space */
.business-topic-hero {
  background: linear-gradient(160deg, #081209 0%, #0c1d12 60%, #112418 100%) !important;
  padding-top: 5rem !important;
  padding-bottom: 4rem !important;
}
.business-topic-hero-card {
  background: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.30) !important;
}

/* Headings: dark green ink instead of midnight-blue */
.business-topic-hero h1,
.business-topic-section h2,
.business-topic-card h3,
.business-topic-note h3,
.business-topic-cta h2 {
  color: #0c1511 !important;
}

/* Lead + body text: green-ink-soft instead of blue-grey */
.business-topic-lead,
.business-topic-card p,
.business-topic-note p,
.business-topic-steps,
.business-topic-steps li {
  color: #4d6256 !important;
}

/* Section spacing: proper breathing room */
.business-topic-section {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
/* Muted sections: full-width stripes – no floating pill boxes */
.business-topic-section-muted {
  background: #f6fbf4 !important;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
}
.business-topic-main {
  padding-bottom: 0 !important;
}

/* Cards: green border accent, white bg */
.business-topic-card {
  border-color: #d9ead3 !important;
  background: #fff !important;
}
.business-topic-card:hover {
  border-color: rgba(57, 168, 91, 0.4) !important;
  box-shadow: 0 4px 20px rgba(57, 168, 91, 0.1) !important;
}

/* Note card: green-soft bg */
.business-topic-note {
  background: #f4f8f2 !important;
  border: 1px solid #d9ead3 !important;
}

/* Sidecard: deep green instead of navy */
.business-topic-sidecard {
  background: linear-gradient(160deg, #0f2017 0%, #0c1511 100%) !important;
}
.business-topic-sideeyebrow {
  color: #6dd98a !important;
}
.business-topic-keyfacts li {
  color: rgba(246, 251, 244, 0.9) !important;
}

/* CTA band: deep green instead of navy */
.business-topic-cta {
  background: linear-gradient(135deg, #0a1410 0%, #0f2017 100%) !important;
}
.business-topic-cta h2,
.business-topic-cta p {
  color: #f6fbf4 !important;
}
.business-topic-cta .business-topic-eyebrow {
  color: #6dd98a !important;
}

/* Footer: deep green instead of navy */
.business-topic-footer {
  background: linear-gradient(180deg, #0a1410 0%, #0c1511 100%) !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
  margin-top: 3rem !important;
}
.business-topic-footer-copy {
  color: rgba(246, 251, 244, 0.65) !important;
}
.business-topic-footer-links a {
  color: rgba(246, 251, 244, 0.75) !important;
}
.business-topic-footer-links a:hover {
  color: #6dd98a !important;
}

/* Section header: more breathing room before cards */
.business-topic-section-header {
  margin-bottom: 2rem !important;
}
.business-topic-section-header h2 {
  color: #0c1511 !important;
}

/* Numbered steps: green accent numbers */
.business-topic-steps {
  padding-left: 0 !important;
  list-style: none !important;
  counter-reset: steps;
}
.business-topic-steps li {
  counter-increment: steps;
  padding-left: 2.5rem !important;
  position: relative !important;
  margin-bottom: 1.25rem !important;
}
.business-topic-steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #39a85b;
  letter-spacing: 0.05em;
}

/* Responsive: tighter on mobile */
@media (max-width: 767px) {
  .business-topic-hero {
    padding-top: 2rem !important;
  }
  .business-topic-section-muted {
    border-radius: 0 !important;
    margin-top: 0 !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* ── B2B Subpage Layout Variants ─────────────────────────────── */

/* --- Stat strip (below full-width hero) --- */
.biz-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.biz-stat-strip__item {
  background: #f4f8f2;
  border: 1px solid #d9ead3;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
/* Stat strip inside dark hero: glass morphism */
.business-topic-hero .biz-stat-strip__item {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.business-topic-hero .biz-stat-strip__label {
  color: rgba(246, 251, 244, 0.65) !important;
}
.biz-stat-strip__num {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #39a85b;
  letter-spacing: -0.03em;
  line-height: 1;
}
.biz-stat-strip__label {
  font-size: 0.8rem;
  color: #4d6256;
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* --- Dark feature card (2-col: text + image) --- */
.biz-dark-card {
  background: #0c1511;
  border-radius: 1.75rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 0.5rem;
}
.biz-dark-card__eyebrow {
  color: #6dd98a;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.biz-dark-card__title {
  color: #f6fbf4;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.biz-dark-card__lead {
  color: rgba(246, 251, 244, 0.72);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.biz-dark-card__checklist {
  display: grid;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.biz-dark-card__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: rgba(246, 251, 244, 0.9);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.biz-dark-card__checklist li::before {
  content: "✓";
  color: #6dd98a;
  font-weight: 900;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.biz-dark-card__img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

/* --- Process circles grid (PV page) --- */
.biz-process-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.biz-process-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid #d9ead3;
  border-radius: 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.biz-process-step:hover {
  border-color: rgba(57,168,91,.35);
  box-shadow: 0 4px 20px rgba(57,168,91,.08);
}
.biz-process-step__circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #39a85b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.biz-process-step__title {
  font-weight: 700;
  color: #0c1511;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.biz-process-step__desc {
  color: #4d6256;
  font-size: 0.875rem;
  line-height: 1.55;
}

/* --- Horizontal benefit rows (LED page) --- */
.biz-benefit-rows {
  display: grid;
  gap: 1rem;
}
.biz-benefit-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  background: #fff;
  border: 1px solid #d9ead3;
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  transition: border-color .2s, box-shadow .2s;
}
.biz-benefit-row:hover {
  border-color: rgba(57,168,91,.35);
  box-shadow: 0 4px 20px rgba(57,168,91,.08);
}
.biz-benefit-row__num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f4f8f2;
  border: 2px solid #d9ead3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: #39a85b;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.biz-benefit-row__body h3 {
  color: #0c1511;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}
.biz-benefit-row__body p {
  color: #4d6256;
  margin: 0;
  line-height: 1.65;
  font-size: 0.9375rem;
}

/* --- Big number hero (LED) --- */
.biz-hero-bignumber .business-topic-hero-card {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1.58fr) !important;
  align-items: center !important;
}
.biz-hero-stat {
  text-align: center;
  background: #f4f8f2;
  border: 1px solid #d9ead3;
  border-radius: 1.5rem;
  padding: 2rem 1rem;
}
.biz-hero-stat__number {
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 900;
  color: #39a85b;
  line-height: 1;
  letter-spacing: -0.04em;
}
.biz-hero-stat__unit {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0c1511;
  display: block;
  margin-top: -0.25rem;
}
.biz-hero-stat__caption {
  font-size: 0.72rem;
  color: #4d6256;
  margin-top: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

/* --- Comparison grid (Wärmepumpe) --- */
.biz-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.biz-compare-col {
  border-radius: 1.5rem;
  padding: 2rem;
}
.biz-compare-col--before {
  background: #fff;
  border: 1px solid #e4ede1;
}
.biz-compare-col--after {
  background: #0c1511;
}
.biz-compare-col__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid;
}
.biz-compare-col--before .biz-compare-col__label {
  color: #4d6256;
  border-color: #e4ede1;
}
.biz-compare-col--after .biz-compare-col__label {
  color: #6dd98a;
  border-color: rgba(255,255,255,0.1);
}
.biz-compare-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.biz-compare-col--before .biz-compare-col__list li {
  color: #4d6256;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.biz-compare-col--before .biz-compare-col__list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 900;
}
.biz-compare-col--after .biz-compare-col__list li {
  color: rgba(246,251,244,0.9);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.biz-compare-col--after .biz-compare-col__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6dd98a;
  font-weight: 900;
}

/* --- Centered full-width hero (Energieberatung / Batteriespeicher) --- */
.biz-hero-centered .business-topic-hero-card {
  display: block !important;
}
.biz-hero-centered .business-topic-hero-card > div:first-child {
  text-align: center;
}
.biz-hero-centered .business-topic-lead {
  margin: 0 auto !important;
}
.biz-hero-centered .business-topic-actions {
  justify-content: center !important;
}

/* --- Numbered step card (Energieberatung) --- */
.biz-stepped-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.biz-step-card {
  background: #fff;
  border: 1px solid #d9ead3;
  border-radius: 1.5rem;
  padding: 1.75rem;
  position: relative;
  padding-top: 4rem;
}
.biz-step-card__num {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #39a85b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.biz-step-card h3 {
  color: #0c1511;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.biz-step-card p {
  color: #4d6256;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .biz-process-circles {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .biz-dark-card,
  .biz-compare-grid {
    grid-template-columns: 1fr !important;
    padding: 2rem 1.5rem !important;
    gap: 1.5rem !important;
  }
  .biz-stat-strip {
    grid-template-columns: 1fr !important;
  }
  .biz-benefit-row {
    grid-template-columns: 2.75rem 1fr;
    gap: 1rem;
  }
  .biz-hero-bignumber .business-topic-hero-card {
    grid-template-columns: 1fr !important;
  }
  .biz-hero-stat {
    padding: 1.25rem;
  }
  .biz-stepped-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════
   ECOWATT LOCAL FUNNEL (.ecf-*)
   ═══════════════════════════════════════════════════ */
.ecf-wrap {
  font-family: inherit;
  color: #0c1511;
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4ede1;
  box-shadow: 0 4px 32px rgba(12,21,17,.10);
  overflow: hidden;
  margin: 0 auto;
}
[data-ecowatt-funnel] {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.ecf-progress {
  height: 5px;
  background: #e4ede1;
}
.ecf-progress-bar {
  height: 100%;
  background: #39a85b;
  transition: width .4s ease;
}
.ecf-header {
  padding: 1.5rem 1.75rem .75rem;
}
.ecf-step-lbl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #39a85b;
  margin-bottom: .4rem;
}
.ecf-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0c1511;
  line-height: 1.3;
  margin: 0;
}
.ecf-subtitle {
  font-size: .8125rem;
  color: #4d6256;
  margin: .3rem 0 0;
  line-height: 1.5;
}
.ecf-body {
  padding: 1rem 1.5rem 1.25rem;
}
/* Option grid */
.ecf-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
}
.ecf-opts.is-3 {
  grid-template-columns: repeat(3, 1fr);
}
.ecf-opts.is-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 520px) {
  .ecf-opts.is-3,
  .ecf-opts.is-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Option card */
.ecf-opt {
  position: relative;
  border: 2px solid #e4ede1;
  border-radius: 10px;
  padding: .875rem .75rem;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background .15s;
  text-align: center;
  user-select: none;
}
.ecf-opt:hover {
  border-color: rgba(57,168,91,.5);
  background: #f9fdf9;
}
.ecf-opt.sel {
  border-color: #39a85b;
  background: #f4f8f2;
}
.ecf-opt-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto .5rem;
  color: #4d6256;
}
.ecf-opt.sel .ecf-opt-icon {
  color: #39a85b;
}
.ecf-opt-lbl {
  font-size: .8rem;
  font-weight: 700;
  color: #0c1511;
  line-height: 1.3;
}
.ecf-opt-sub {
  font-size: .7rem;
  color: #6d8075;
  margin-top: .2rem;
  line-height: 1.4;
}
.ecf-badge {
  position: absolute;
  top: .45rem;
  right: .45rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #39a85b;
  display: none;
  align-items: center;
  justify-content: center;
}
.ecf-opt.sel .ecf-badge {
  display: flex;
}
/* Select */
.ecf-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.ecf-field label {
  font-size: .8rem;
  font-weight: 600;
  color: #4d6256;
}
.ecf-sel-wrap {
  position: relative;
}
.ecf-sel-wrap select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #e4ede1;
  border-radius: 8px;
  padding: .75rem 2.5rem .75rem 1rem;
  font-size: .9375rem;
  color: #0c1511;
  background: #fff;
  width: 100%;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s;
}
.ecf-sel-wrap select:focus {
  border-color: #39a85b;
  box-shadow: 0 0 0 3px rgba(57,168,91,.1);
}
.ecf-sel-wrap::after {
  content: "";
  position: absolute;
  right: .875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #4d6256;
  pointer-events: none;
}
/* Form */
.ecf-form {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.ecf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
}
@media (max-width: 480px) {
  .ecf-row {
    grid-template-columns: 1fr;
  }
}
.ecf-input-wrap label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #4d6256;
  margin-bottom: .25rem;
}
.ecf-input-wrap input {
  width: 100%;
  border: 1.5px solid #e4ede1;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .9375rem;
  color: #0c1511;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.ecf-input-wrap input:focus {
  border-color: #39a85b;
  box-shadow: 0 0 0 3px rgba(57,168,91,.1);
}
.ecf-privacy {
  display: flex;
  gap: .625rem;
  align-items: flex-start;
  font-size: .8rem;
  color: #4d6256;
  line-height: 1.5;
}
.ecf-privacy input[type="checkbox"] {
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: #39a85b;
}
.ecf-privacy a {
  color: #39a85b;
}
.ecf-err {
  font-size: .8rem;
  color: #c0392b;
  background: #fdf3f3;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  padding: .5rem .75rem;
  display: none;
}
.ecf-err.on {
  display: block;
}
.ecf-submit {
  background: #39a85b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .9rem 1.5rem;
  font-size: .9375rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.ecf-submit:hover {
  background: #2e8f4c;
}
.ecf-submit:disabled {
  opacity: .6;
  cursor: default;
}
/* Footer */
.ecf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.5rem 1.25rem;
  border-top: 1px solid #e4ede1;
}
.ecf-next {
  background: #39a85b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .7rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  margin-left: auto;
}
.ecf-next:hover {
  background: #2e8f4c;
}
.ecf-next:disabled {
  opacity: .5;
  cursor: default;
}
.ecf-back {
  background: none;
  border: none;
  color: #4d6256;
  font-size: .875rem;
  font-family: inherit;
  cursor: pointer;
  padding: .5rem 0;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.ecf-back:hover {
  color: #0c1511;
}
/* Success */
.ecf-ok {
  text-align: center;
  padding: 3rem 2rem;
}
.ecf-ok-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #39a85b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.ecf-ok-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0c1511;
  margin-bottom: .75rem;
}
.ecf-ok-text {
  font-size: .9375rem;
  color: #4d6256;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SEO ARTIKEL-SEITEN — Ecowatt Redesign v2
   Professionelles Leseerlebnis: klare Hierarchie, Editorial-Stil,
   Premium-Details. Kein generierter Baukasten-Look.
   ═══════════════════════════════════════════════════════════════ */

/* ── Reading Progress Bar (CSS Scroll-driven, Chrome 115+) ───── */
.ecowatt-article::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #39a85b, #6dd98a);
  z-index: 10000;
  animation: eco-read-progress linear both;
  animation-timeline: scroll(root);
  pointer-events: none;
}
@keyframes eco-read-progress {
  from { width: 0; }
  to { width: 100%; }
}

/* ── Hero: stark, klar, Ecowatt-branded ──────────────────────── */
.section_seo-hero {
  background: #f4f8f2 !important;
  border-bottom: 3px solid #39a85b !important;
  padding: 0 !important;
}
.section_seo-hero .e_padding-global-seo {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.section_seo-hero .seo-hero_component {
  display: block !important;
  max-width: none !important;
}
.section_seo-hero .seo-hero_content {
  max-width: 820px !important;
}

/* Breadcrumb – Small caps, dezent */
.section_seo-hero .e_breadcrumbs-wrapper,
.section_seo-hero .e_breadcrumbs-wrapper * {
  font-size: .71rem !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  color: #4d6256 !important;
  text-decoration: none !important;
}
.section_seo-hero .e_breadcrumbs-wrapper a:hover {
  color: #39a85b !important;
}
.section_seo-hero .e_breadcrumbs-wrapper {
  margin-bottom: 1rem !important;
  opacity: 1 !important;
}

/* H1 – Groß, fett, tight */
.section_seo-hero h1,
.section_seo-hero .e_heading-style-h3 {
  color: #0c1511 !important;
  font-size: clamp(1.9rem, 4.5vw, 2.85rem) !important;
  font-weight: 900 !important;
  line-height: 1.13 !important;
  letter-spacing: -.04em !important;
  margin-bottom: 0 !important;
}

/* ── Artikel-Bereich: alle Enpal-Paddings killen ─────────────── */
.ecowatt-article {
  padding-top: 0 !important;
  padding-bottom: 5rem !important;
  background: #fff !important;
}
.seo-redesign.ecowatt-article .e_padding-global-seo {
  padding: 0 !important;
}
.ecowatt-article .e_container-large {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding-left: clamp(1.25rem, 5vw, 3rem) !important;
  padding-right: clamp(1.25rem, 5vw, 3rem) !important;
  padding-top: 0 !important;
}
.ecowatt-article .content_component.is-switch {
  display: block !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.ecowatt-article .content_content {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding-top: 2.75rem !important;
}
.ecowatt-article .content_sidebar,
.ecowatt-article aside {
  display: none !important;
}
.ecowatt-article .content_wrapper {
  margin-top: 0 !important;
}

/* ── Summary-Box: Dark Premium Card ─────────────────────────── */
/*   Dunkler Hintergrund = sieht sofort "designed" aus           */
.seo-info-box.ecowatt-summary {
  background: #0c1511 !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin-bottom: 2.75rem !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: 0 4px 32px rgba(12, 21, 17, .18) !important;
}
/* Gradient accent stripe oben */
.seo-info-box.ecowatt-summary::before {
  content: '' !important;
  display: block !important;
  height: 3px !important;
  background: linear-gradient(90deg, #39a85b 0%, #6dd98a 60%, rgba(57,168,91,.3) 100%) !important;
}
.seo-info-box.ecowatt-summary .seo-blue-box {
  padding: 1.5rem 2rem 1.875rem !important;
  background: transparent !important;
}
/* h2 als Eyebrow-Label */
.seo-info-box.ecowatt-summary h2 {
  color: #6dd98a !important;
  font-size: .68rem !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  margin-bottom: .875rem !important;
}
.seo-info-box.ecowatt-summary p {
  color: rgba(246, 251, 244, .82) !important;
  font-size: .9375rem !important;
  line-height: 1.72 !important;
  margin-bottom: .625rem !important;
}
.seo-info-box.ecowatt-summary p:last-child {
  margin-bottom: 0 !important;
}
.seo-info-box.ecowatt-summary a {
  color: #6dd98a !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.seo-info-box.ecowatt-summary a:hover {
  text-decoration: underline !important;
}
.seo-info-box.ecowatt-summary li {
  color: rgba(246, 251, 244, .82) !important;
  font-size: .9375rem !important;
  line-height: 1.72 !important;
  margin-bottom: .35rem !important;
}
.seo-info-box.ecowatt-summary ul,
.seo-info-box.ecowatt-summary ol {
  padding-left: 1.4rem !important;
  margin-bottom: .625rem !important;
}

/* ── Artikel-Bild ────────────────────────────────────────────── */
.seo-image-wrapper {
  margin: 0 0 2.25rem !important;
}
.seo-image.is-fullwidth {
  width: 100% !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  max-height: 440px !important;
  display: block !important;
  box-shadow: 0 2px 20px rgba(12,21,17,.08) !important;
}

/* ── Artikel-Text: Publikations-Qualität ─────────────────────── */
.rt-seo.cc-redesign.w-richtext {
  font-size: 1.05rem !important;
  line-height: 1.78 !important;
  color: #1e2e25 !important;
  max-width: 680px !important;
}

/* Erster Paragraph: Lead-Text */
.rt-seo.cc-redesign.w-richtext > p:first-of-type {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  color: #0c1511 !important;
}

/* H2: klare Abschnittstrennlinie */
.rt-seo.cc-redesign h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.625rem) !important;
  font-weight: 800 !important;
  color: #0c1511 !important;
  margin-top: 3.25rem !important;
  margin-bottom: .75rem !important;
  letter-spacing: -.03em !important;
  padding-top: 2.25rem !important;
  border-top: 1px solid #e8f0e5 !important;
}
/* H3 */
.rt-seo.cc-redesign h3 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #0c1511 !important;
  margin-top: 2.25rem !important;
  margin-bottom: .5rem !important;
  letter-spacing: -.02em !important;
}
/* Paragraph */
.rt-seo.cc-redesign p {
  margin-bottom: 1.25rem !important;
  color: #1e2e25 !important;
}
/* Links: dezentes Grün, underline-offset */
.rt-seo.cc-redesign a {
  color: #1e7a3f !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
  transition: color .15s !important;
}
.rt-seo.cc-redesign a:hover {
  color: #39a85b !important;
}
/* Strong */
.rt-seo.cc-redesign strong {
  font-weight: 700 !important;
  color: #0c1511 !important;
}

/* ── Tabellen: sauber, lesbar ────────────────────────────────── */
.rt-seo.cc-redesign table,
.ecowatt-article .w-embed table.t,
.ecowatt-article .w-embed table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: .9rem !important;
  margin: 2rem 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid #e4ede1 !important;
  box-shadow: 0 2px 16px rgba(12,21,17,.05) !important;
}
.rt-seo.cc-redesign th,
.ecowatt-article .w-embed table th {
  background: #39a85b !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: .8rem 1.125rem !important;
  text-align: left !important;
  font-size: .875rem !important;
  letter-spacing: .02em !important;
}
.rt-seo.cc-redesign td,
.ecowatt-article .w-embed table td {
  padding: .7rem 1.125rem !important;
  border-bottom: 1px solid #e4ede1 !important;
  vertical-align: top !important;
}
.rt-seo.cc-redesign tr:nth-child(even) td,
.ecowatt-article .w-embed table tr:nth-child(even) td {
  background: #f8fbf7 !important;
}
.rt-seo.cc-redesign tr:last-child td,
.ecowatt-article .w-embed table tr:last-child td {
  border-bottom: none !important;
}

/* ── Listen ──────────────────────────────────────────────────── */
.rt-seo.cc-redesign ul,
.rt-seo.cc-redesign ol {
  padding-left: 1.375rem !important;
  margin-bottom: 1.25rem !important;
}
.rt-seo.cc-redesign li {
  margin-bottom: .5rem !important;
  line-height: 1.7 !important;
}

/* ── Blockquotes ─────────────────────────────────────────────── */
.rt-seo.cc-redesign blockquote {
  border-left: 3px solid #39a85b !important;
  margin: 2rem 0 !important;
  padding: 1rem 1.5rem !important;
  background: #f4f8f2 !important;
  border-radius: 0 10px 10px 0 !important;
  font-style: italic !important;
  color: #0c1511 !important;
}

/* ── TOC (Inhaltsverzeichnis) ────────────────────────────────── */
.rt-seo.cc-redesign [fs-toc-element="table-of-contents"],
.rt-seo.cc-redesign .toc-wrapper,
div[fs-toc-element="table-of-contents"] {
  background: #f4f8f2 !important;
  border: 1px solid #ddecd8 !important;
  border-left: 3px solid #39a85b !important;
  border-radius: 12px !important;
  padding: 1.25rem 1.5rem !important;
  margin: 0 0 2.25rem !important;
  columns: 1 !important;
}

/* ── Infobox im Artikelkörper ────────────────────────────────── */
.seo-info-box:not(.ecowatt-summary) {
  background: #f4f8f2 !important;
  border: 1px solid #ddecd8 !important;
  border-radius: 12px !important;
  padding: 1.25rem 1.5rem !important;
  margin: 1.75rem 0 2rem !important;
  display: flex !important;
  gap: 1rem !important;
  align-items: flex-start !important;
}

/* ── Enpal-Farb-Klassen neutralisieren ───────────────────────── */
.e_text-color-flash-blue {
  color: #39a85b !important;
}
.e_text-color-blue {
  color: #0c1511 !important;
}
.e_button.is-icon {
  background: #39a85b !important;
  border-color: #39a85b !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.e_button.is-icon.is-blended {
  background: transparent !important;
  border: 1.5px solid #39a85b !important;
  color: #39a85b !important;
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section_seo-hero .e_padding-global-seo {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .section_seo-hero h1,
  .section_seo-hero .e_heading-style-h3 {
    font-size: clamp(1.55rem, 6.5vw, 2.25rem) !important;
  }
  .ecowatt-article .content_content {
    padding-top: 2rem !important;
  }
  .seo-info-box.ecowatt-summary .seo-blue-box {
    padding: 1.25rem 1.5rem 1.625rem !important;
  }
  .seo-image.is-fullwidth {
    max-height: 260px !important;
    border-radius: 10px !important;
  }
  .rt-seo.cc-redesign.w-richtext {
    max-width: 100% !important;
    font-size: 1rem !important;
  }
  .rt-seo.cc-redesign h2 {
    margin-top: 2.5rem !important;
    padding-top: 1.75rem !important;
  }
}

/* ── Produkte Nav: Kategorien-Spalten-Layout ─────────────────── */
#eco2-panel-produkte .eco2-cards {
  grid-template-columns: 1.2fr 2fr 1fr 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  gap: 16px;
}

/* Override: Hero-Karte nicht über 2 Zeilen */
#eco2-panel-produkte .eco2-cards.eco2-cards--cat .eco2-card--hero {
  grid-row: auto !important;
}
#eco2-panel-produkte .eco2-cards.eco2-cards--cat .eco2-card--hero .eco2-card__img-wrap {
  flex: 1 !important;
  aspect-ratio: unset !important;
  min-height: auto !important;
}
#eco2-panel-produkte .eco2-cards.eco2-cards--cat .eco2-card--hero .eco2-card__body {
  padding: 14px 16px 16px !important;
}

/* Hero-Karte: streckt sich auf volle Grid-Höhe */
#eco2-panel-produkte .eco2-card--hero {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
#eco2-panel-produkte .eco2-card--hero .eco2-card__img-wrap {
  flex: 1;
  aspect-ratio: unset;
  min-height: 120px;
}
#eco2-panel-produkte .eco2-card--hero .eco2-card__desc {
  font-size: 0.78rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Spalten-Gruppe: Label + gestapelte Karten */
.eco2-col-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.eco2-col-group__label {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 0 3px;
  flex-shrink: 0;
}

/* Zwei-Spalten-Gruppe (Energie) */
.eco2-col-group__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
  align-items: stretch; /* beide Sub-Spalten gleich hoch */
}

/* Einzel-Spalten-Gruppe (Komfort / Finanzierung) */
.eco2-col-group__inner--single {
  grid-template-columns: 1fr;
}

/* ── Hero: Hintergrundbild sichtbar machen ─────────────────────────────── */
/* z-index:-1 fällt ohne Stacking-Context unter den Seitencanvas (weiß).   */
/* isolation:isolate erzeugt einen neuen Stacking-Context im Hero.          */
header.hero-new {
  isolation: isolate;
}

/* Overlay-Deckkraft reduzieren – Hintergrundbild soll erkennbar bleiben   */
.hero-bg-image_overlay {
  background-color: rgba(0, 0, 0, 0.18) !important;
}

/* Dunkler Gradient-Overlay für PV-Hero (helles Hintergrundbild) */
.hero-new > .hero-bg-image.cc-hero-pv {
  z-index: 0 !important;
}
.hero-new > .layout-l.cc-hero-pv {
  position: relative;
  z-index: 2;
}
.hero-bg-image.cc-hero-pv::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(5,15,10,.78) 0%,
    rgba(5,15,10,.52) 45%,
    rgba(5,15,10,.15) 100%
  );
  pointer-events: none;
}
.hero-bg-image.cc-hero-pv img {
  object-position: center 30% !important;
}

/* Dunkler Gradient-Overlay für Stromtarif-Hero (helles Hintergrundbild)   */
/* Webflow-Basis setzt .hero-bg-image auf position:absolute;inset:0;z-idx:-1 */
/* z-index auf 0 heben, damit das Bild im isolierten Header-Stacking-Context */
/* sichtbar wird; Text-Container (.layout-l.cc-elec) mit z-index:2 darüber.  */
.hero-new > .hero-bg-image.cc-hero-elec {
  z-index: 0 !important;
}
.hero-new > .layout-l.cc-elec {
  position: relative;
  z-index: 2;
}
.hero-bg-image.cc-hero-elec::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(5,15,10,.82) 0%,
    rgba(5,15,10,.60) 45%,
    rgba(5,15,10,.18) 100%
  );
  pointer-events: none;
}

/* Dunkler Gradient-Overlay auf dem Hero-Hintergrundbild für Lesbarkeit    */
.hero-bg-image.cc-hero-heat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,15,10,.72) 0%,
    rgba(5,15,10,.50) 50%,
    rgba(5,15,10,.18) 100%
  );
  pointer-events: none;
}

/* Sub-Spalte: Inhalt direkt in den Parent-Grid einfließen lassen */
.eco2-col-group__sub {
  display: contents;
}

/* Visuelle Reihenfolge in Energie-Gruppe:
   PV(1) + Wallbox(2) in Zeile 1 | Mieterstrom(3) + Notstrom(4) in Zeile 2 */
.eco2-col-group__sub:first-of-type > .eco2-card:first-child { order: 1; }
.eco2-col-group__sub:last-of-type  > .eco2-card:first-child { order: 2; }
.eco2-col-group__sub:first-of-type > .eco2-card:last-child  { order: 3; }
.eco2-col-group__sub:last-of-type  > .eco2-card:last-child  { order: 4; }

/* Karten in Gruppen */
.eco2-col-group .eco2-card {
  min-height: 0;
}

/* Bild-Wrap in Gruppen-Karten: einheitliche feste Höhe — !important um
   ecowatt-design.css :first-child flex:1 / min-height:155px zu überschreiben */
#eco2-panel-produkte .eco2-col-group .eco2-card .eco2-card__img-wrap {
  height: 95px !important;
  aspect-ratio: unset !important;
  flex: none !important;
  min-height: 0 !important;
}

/* Karten in Gruppen: kompakter */
.eco2-col-group .eco2-card__body {
  padding: 10px 12px 12px;
}
.eco2-col-group .eco2-card__name {
  font-size: 0.82rem;
}
.eco2-col-group .eco2-card__desc {
  font-size: 0.72rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eco2-col-group .eco2-card__cta {
  font-size: 0.72rem;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════
   Medien-Platzhalter für Foto/Video-Einbau
   ═══════════════════════════════════════════════════ */

/* Vorteile-Nummernkreise: grün statt schwarz (midnight-blue) */
.benefit-card-home_number {
  background-color: var(--eco-green) !important;
  color: #fff !important;
}

/* Wärmepumpe Quest-Sektion: letztes section-new hat 13.75rem Padding-Bottom (zu viel) */
.layout-l.cc-slider-heat {
  padding-bottom: 4rem !important;
}
.pg-media-placeholder {
  background: #f0f8f0;
  border: 2px dashed #39a85b;
  border-radius: 12px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #4d6256;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 200px;
  width: 100%;
  box-sizing: border-box;
}
.pg-media-placeholder__icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pg-media-placeholder__label {
  font-weight: 700;
  font-size: 1rem;
  color: #0c1511;
  line-height: 1.4;
}
.pg-media-placeholder__sub {
  font-size: 0.8125rem;
  color: #4d6256;
  margin-top: 0.25rem;
}

/* ── Home Focus Card: helles Re-Design (dunkler Text) ──────── */
.ecowatt-home-focus > div:first-child,
.ecowatt-home-focus > div:first-child h2,
.ecowatt-home-focus > div:first-child .h2-new,
.ecowatt-home-focus > div:first-child p,
.ecowatt-home-focus > div:first-child .p-1-0625 {
  color: #0c1511 !important;
}

.ecowatt-home-focus > div:first-child .ecowatt-home-focus_kicker {
  color: #39a85b !important;
}

.ecowatt-home-focus .ecowatt-chip {
  color: #1e5c2e !important;
}

.ecowatt-home-focus .ecowatt-secondary-link {
  color: #0c1511 !important;
}

/* ── "Ihr Zuhause" CTA-Sektion: dunkler Hintergrund ─────────── */
.section-new:has(.cc-complete-package) {
  background: #0c1511 !important;
}
.flow-new.cc-complete-package .h2-new span:first-child {
  color: #f4fbf0 !important;
}
.flow-new.cc-complete-package .span-h2-variant {
  color: var(--eco-green) !important;
}
/* USPs als horizontale Reihe */
.flow-new.cc-complete-package .usp-list {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: .65rem !important;
}
.flow-new.cc-complete-package .usp-list_item {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 999px !important;
  padding: .55rem 1rem !important;
}
.flow-new.cc-complete-package .h6-new {
  color: #fff !important;
  font-size: .875rem !important;
}
.flow-new.cc-complete-package .usp-list_icon svg path {
  stroke: var(--eco-green) !important;
}
/* Funnel-Wrap: als Button-Wrapper zentriert */
.funnel-wrap.cc-complete-pack {
  display: flex !important;
  justify-content: center !important;
  margin-top: 1.5rem !important;
}

/* ── FAQ: Überschrift kompakter ─────────────────────────────── */
.faqs_content .h2-new {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  line-height: 1.2 !important;
}

/* Button im funnel-wrap: korrekte Breite */
.funnel-wrap.cc-complete-pack .e_button {
  width: fit-content !important;
  min-width: 0 !important;
}

/* Funnel-Wrap Hintergrund auf dunkel anpassen */
.section-new:has(.cc-complete-package) .funnel-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Nav-Höhe: gleicher Abstand oben/unten um die Buttons */
.nav-bar.ecowatt-shell-nav { border-bottom: none !important; height: 64px !important; min-height: 64px !important; max-height: 64px !important; overflow: visible !important; }
.eco2-bar { border-bottom: none !important; height: 64px !important; min-height: 64px !important; }
.eco2-bar__inner { height: 64px !important; }
.eco2-backdrop { display: none !important; }

/* ── ecowatt-shell-nav: Ratgeber dropdown ────────────────────── */
.ecowatt-shell-dropdown {
  position: relative;
}

.ecowatt-shell-dropbtn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.12s;
}

.ecowatt-shell-dropbtn:hover,
.ecowatt-shell-dropdown.is-hovered .ecowatt-shell-dropbtn {
  color: rgba(255,255,255,0.95);
}

.ecowatt-shell-drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  padding: 0.4rem;
  background: #0f1e17;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  z-index: 1001;
}

.ecowatt-shell-dropdown.is-hovered .ecowatt-shell-drop-panel {
  display: block;
}

.ecowatt-shell-drop-panel::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.ecowatt-shell-drop-item {
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0.875rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.1s;
}

.ecowatt-shell-drop-item:hover {
  background: rgba(255,255,255,0.05);
}

.ecowatt-shell-drop-title {
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.ecowatt-shell-drop-desc {
  color: rgba(255,255,255,0.42);
  font-size: 0.75rem;
  margin-top: 0.125rem;
  line-height: 1.3;
}

/* ── QUIZ HEADING + LAYOUT — wie ecowattgmbh.de ─────────────────────────────── */

/* Titel: zentriert, groß */
.pq-title, .pq-title-form,
.ecq-q-head,
.bzq-head-title {
  text-align: center !important;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
}

/* Beschreibung: zentriert */
.pq-desc,
.ecq-q-desc {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 1.125rem !important;
}

/* Mehr Abstand zwischen Titel-Block und Kacheln */
.pq-head {
  margin-bottom: 3rem !important;
}
.ecq-q-head + .ecq-q-desc,
.ecq-q-desc {
  margin-bottom: 3rem !important;
}

/* Nav-Row: mehr Abstand + Border-Separator wie ecowattgmbh.de */
.pq-navrow {
  margin-top: 3rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid #f3f4f6 !important;
}
.ecq-nav {
  margin-top: 3rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid #f3f4f6 !important;
}
.bzq-nav {
  margin-top: 3rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid #f3f4f6 !important;
}

/* Progress bar: 8px hoch wie Referenz */
.pq-navprog,
.ecq-progress-bar {
  height: 8px !important;
}

/* ecq-nav-bar: Progress-Bar zwischen den Buttons (via JS in nav injiziert) */
.ecq-nav-bar {
  flex: 1 !important;
  margin-bottom: 0 !important;
}
.ecq-nav {
  gap: 1rem !important;
}

/* ── QUIZ NAV-BUTTONS — 50×50 px, 10 px Radius (wie ecowattgmbh.de) ─────────── */

/* ecq-* : Zurück (alle Steps) + Weiter (Kachel-Steps, kein id) */
.ecq-nav .ecq-btn--back,
.ecq-nav .ecq-btn--fwd:not([id]) {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  font-size: 0 !important;
  gap: 0 !important;
}
.ecq-nav .ecq-btn--back svg,
.ecq-nav .ecq-btn--fwd:not([id]) svg {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
}

/* pq-* : Back + Forward Buttons im Navigations-Row */
.pq-navrow .pq-btn-back,
.pq-navrow .pq-btn-fwd {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  font-size: 1.375rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* bzq-* : Weiter + Zurück (nicht der Submit-Button) */
.bzq-nav .bzq-btn--back,
#bzqFwd,
#bzqBack {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  font-size: 0 !important;
  gap: 0 !important;
}
#bzqFwd svg,
#bzqBack svg,
.bzq-nav .bzq-btn--back svg {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
}

/* ── QUIZ KACHELN — 200 × 150 px Karte, Label darunter (wie ecowattgmbh.de) ── */

/* Quiz-Card nimmt volle verfügbare Breite */
.pq-wrap, .ecq-wrap, .bzq-wrap {
  max-width: 1100px !important;
  width: 100% !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}

/* ── Hersteller-Carousel: kompakteres Padding ──────────────── */
.section-new.cc-hersteller-wp,
.section-new.cc-hersteller-pv,
.section-new.cc-press-marquee {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

/* ── Kachel-Container: CSS-Grid streckt Tiles auf volle Breite ── */
.pq-tiles, .pq-tiles-4, .pq-tiles-2, .pq-tiles-8,
.ecq-tiles, .bzq-tiles {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
  gap: 1.5rem !important;
}

/* pq-* */
.pq-tile {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  gap: 1rem !important;
}
.pq-tile__icon {
  width: 100% !important;
  height: 150px !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 5px 5px 15px 0 rgba(225,225,225,1) !important;
  border: 2px solid transparent !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.pq-tile:hover .pq-tile__icon {
  border-color: #7BCE31 !important;
  box-shadow: 5px 5px 20px 0 rgba(123,206,49,.3) !important;
}
.pq-tile--sel .pq-tile__icon {
  border-color: #7BCE31 !important;
  box-shadow: 5px 5px 15px 0 rgba(123,206,49,.35) !important;
}
.pq-tile__icon img {
  width: 64px !important;
  height: 64px !important;
}
.pq-tile__label {
  font-size: 18px !important;
  font-weight: 500 !important;
}

/* ecq-* */
.ecq-tile {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  gap: 1rem !important;
}
.ecq-tile__icon {
  width: 100% !important;
  height: 150px !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 5px 5px 15px 0 rgba(225,225,225,1) !important;
  border: 2px solid transparent !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.ecq-tile:hover .ecq-tile__icon {
  border-color: #7BCE31 !important;
  box-shadow: 5px 5px 20px 0 rgba(123,206,49,.3) !important;
}
.ecq-tile.ecq-selected .ecq-tile__icon {
  border-color: #7BCE31 !important;
  box-shadow: 5px 5px 15px 0 rgba(123,206,49,.35) !important;
}
.ecq-tile__icon img {
  width: 64px !important;
  height: 64px !important;
}
.ecq-tile__text {
  font-size: 18px !important;
  font-weight: 500 !important;
}

/* bzq-* */
.bzq-tile {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  gap: 1rem !important;
}
.bzq-tile__icon {
  width: 100% !important;
  height: 150px !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 5px 5px 15px 0 rgba(225,225,225,1) !important;
  border: 2px solid transparent !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.bzq-tile:hover .bzq-tile__icon,
.bzq-tile.bzq-selected .bzq-tile__icon,
.bzq-tile[aria-checked="true"] .bzq-tile__icon {
  border-color: #7BCE31 !important;
  box-shadow: 5px 5px 15px 0 rgba(123,206,49,.35) !important;
}
.bzq-tile__icon img {
  width: 64px !important;
  height: 64px !important;
}
.bzq-tile__text {
  font-size: 18px !important;
  font-weight: 500 !important;
}

/* Responsive: mobile 1-spaltig mit Row-Layout */
@media (max-width: 700px) {
  .pq-tiles, .pq-tiles-4, .pq-tiles-2, .pq-tiles-8,
  .ecq-tiles, .bzq-tiles {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .pq-tile, .ecq-tile, .bzq-tile {
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 0 !important;
  }
  .pq-tile__icon, .ecq-tile__icon, .bzq-tile__icon {
    width: 72px !important;
    height: 72px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }
  .pq-tile__label, .ecq-tile__text, .bzq-tile__text {
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: left !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
}

/* Quiz-Abschnitte: hellgrauer Hintergrund damit weiße Karte hervorsticht */
.section-new#query,
section:has(> .layout-l > .col-new > .flow-new > .pq-wrap),
section:has(> div > .ecq-wrap),
section:has(> .layout-l > .col-new > .flow-new > div > .ecq-wrap) {
  background: #f5f7f5 !important;
}


/* === Splide slider track fix (clip overflowing slides) === */
.splide,
.splide__track { overflow: hidden !important; }
.splide__list { display: flex; }


/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE: Inline-Grid-Overrides (alle Produktseiten)
   Alle 3-Spalten-Grids mit Inline-Style → 1-Spalte auf Mobile
   ═══════════════════════════════════════════════════════════════ */

/* PV-Seite: Service-Grid & Steps */
@media (max-width: 767px) {
  .pv-service-grid,
  .pv-steps-list {
    grid-template-columns: 1fr !important;
  }
  /* Steps-List: Borders anpassen */
  .pv-steps-list > div {
    border-right: none !important;
    border-bottom: 1px solid #e4ede1 !important;
  }
  .pv-steps-list > div:last-child {
    border-bottom: none !important;
  }
}

/* Wallbox-Seite: alle Grids */
@media (max-width: 767px) {
  .wb-komp-grid,
  .wb-service-grid,
  .wb-ratgeber-grid {
    grid-template-columns: 1fr !important;
  }
  .wb-steps-list {
    grid-template-columns: 1fr !important;
  }
  .wb-steps-list > div {
    border-right: none !important;
    border-bottom: 1px solid #e4ede1 !important;
  }
  .wb-steps-list > div:last-child {
    border-bottom: none !important;
  }
  /* Bento-Metrics: 3 → 2-Spalten (passt besser auf Mobile) */
  .wb-bento-metrics {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Wärmepumpe-Seite: Einbauarten-Grid */
@media (max-width: 767px) {
  .wp-system-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Klimaanlage-Seite: Geräte-Grid */
@media (max-width: 767px) {
  .ka-device-grid {
    grid-template-columns: 1fr !important;
  }
}

/* B2B-Subseiten: stepped-grid, process-circles */
@media (max-width: 767px) {
  .biz-stepped-grid,
  .biz-process-circles {
    grid-template-columns: 1fr !important;
  }
}

/* ── Alle Seiten: pg-section grids (ecowatt-one + andere) ─── */
@media (max-width: 767px) {
  .pg-inner > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  /* Connector-Linien in 3-Schritt-Flows verstecken */
  .pg-inner > div[style*="grid-template-columns:repeat(3"] > div[style*="position:absolute"] {
    display: none !important;
  }
  /* Einsparpotenzial-Section: 2-Spalten-Outer → Stack */
  section[style*="background:#0a1410"] > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  /* Stats-Grid innen: bleibt 2 Spalten */
  section[style*="background:#0a1410"] > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ============================================================
   BRUTAL LAYER — Animation & Polish
   ============================================================ */


/* Tabular numerals everywhere numbers matter */
.h1-new, .h2-new, .h3-new,
h1, h2, h3, h4,
.eco-stat, .eco-counter,
.uu-stat strong, .st-stat strong,
[class*="stat"] strong, [class*="metric"] strong,
.komp-pv-card_price, .komp-wp-card_price {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "kern" 1;
}

/* === Typography polish — sharper hierarchy === */
h1, .h1-new {
  letter-spacing: -0.028em;
  line-height: 1.05;
  text-wrap: balance;
}
h2, .h2-new {
  letter-spacing: -0.022em;
  line-height: 1.12;
  text-wrap: balance;
}
h3, .h3-new, h4 {
  letter-spacing: -0.014em;
  text-wrap: balance;
}
p, .p-1-0625, .paragraph {
  text-wrap: pretty;
}

/* Generic pg-title / section headings get matching treatment */
.pg-title, .eco2-title, .biz-title, .uu-title, .st-title {
  letter-spacing: -0.024em !important;
  line-height: 1.1 !important;
  text-wrap: balance;
}

/* Eyebrow labels — uniform across all section variants */
.pg-label, .eco2-eyebrow, .biz-eyebrow, .uu-eyebrow, .st-eyebrow {
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--eco-brand-deep) !important;
}

/* === Focus states — premium + accessible === */
:where(a, button, [role="button"], input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--eco-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === Selection === */
::selection {
  background: var(--eco-brand);
  color: #fff;
}

/* === Link hover (text links inside content) === */
.pg-inner a:not([class*="btn"]):not([class*="card"]):not([class*="nav"]),
.flow-new a:not([class*="btn"]):not([class*="card"]):not([class*="nav"]) {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color var(--eco-dur-fast) var(--eco-ease), color var(--eco-dur-fast) var(--eco-ease);
}

/* === Buttons — arrow micro-slide + lift === */
.pg-btn-green,
.btn-new,
.button-new,
.cta-button,
a[class*="btn-green"],
a[class*="-btn-"] {
  transition:
    transform var(--eco-dur-fast) var(--eco-ease),
    box-shadow var(--eco-dur) var(--eco-ease),
    background-color var(--eco-dur-fast) var(--eco-ease) !important;
  will-change: transform;
}
.pg-btn-green:hover,
.btn-new:hover,
.button-new:hover,
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--eco-brand-glow), var(--eco-shadow-2);
}
.pg-btn-green:active,
.btn-new:active,
.button-new:active {
  transform: translateY(0);
  transition-duration: 80ms !important;
}
.pg-btn-green svg,
.btn-new svg,
.button-new svg {
  transition: transform var(--eco-dur) var(--eco-ease) !important;
}
.pg-btn-green:hover svg,
.btn-new:hover svg,
.button-new:hover svg {
  transform: translateX(3px);
}

/* === Card lift — applies to all card-like elements === */
.pg-card, .pg-product-card,
.eco2-card, .e_card, .e_card-new,
.biz-step-card, .biz-topic-card,
.komp-pv-card, .komp-wp-card,
.community-slide,
.business-topic-card,
.uu-team-card, .st-stat-card {
  transition:
    transform var(--eco-dur) var(--eco-ease),
    box-shadow var(--eco-dur) var(--eco-ease),
    border-color var(--eco-dur) var(--eco-ease) !important;
  will-change: transform;
}
.pg-card:hover, .pg-product-card:hover,
.eco2-card:hover, .e_card:hover, .e_card-new:hover,
.biz-step-card:hover, .biz-topic-card:hover,
.komp-pv-card:hover, .komp-wp-card:hover,
.business-topic-card:hover,
.uu-team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--eco-shadow-3);
}

/* Image hover zoom on card-image wrappers */
.eco2-card__img-wrap,
.pg-card__media,
[class*="card__img"],
[class*="card-image"] {
  overflow: hidden;
}
.eco2-card__img-wrap img,
.pg-card__media img,
[class*="card__img"] img,
[class*="card-image"] img {
  transition: transform var(--eco-dur-slow) var(--eco-ease-strong);
}
.eco2-card:hover .eco2-card__img-wrap img,
.pg-card:hover .pg-card__media img,
[class*="card"]:hover [class*="card__img"] img,
[class*="card"]:hover [class*="card-image"] img {
  transform: scale(1.04);
}

/* === Scroll reveal primitive ===
   Hidden state only applies when JS has booted (body.eco-js-ready).
   This guarantees content stays visible if JS fails to load. */
.eco-js-ready [data-eco-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--eco-dur-slow) var(--eco-ease-strong),
    transform var(--eco-dur-slow) var(--eco-ease-strong);
  transition-delay: var(--eco-reveal-delay, 0ms);
}
.eco-js-ready [data-eco-reveal="left"]  { transform: translateX(-24px); }
.eco-js-ready [data-eco-reveal="right"] { transform: translateX(24px); }
.eco-js-ready [data-eco-reveal="scale"] { transform: scale(0.96); }
.eco-js-ready [data-eco-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children: container with data-eco-stagger applies delays */
.eco-js-ready [data-eco-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--eco-dur-slow) var(--eco-ease-strong),
    transform var(--eco-dur-slow) var(--eco-ease-strong);
}
.eco-js-ready [data-eco-stagger].is-visible > *           { opacity: 1; transform: none; transition-delay: 0ms; }
.eco-js-ready [data-eco-stagger].is-visible > *:nth-child(2) { transition-delay: 60ms; }
.eco-js-ready [data-eco-stagger].is-visible > *:nth-child(3) { transition-delay: 120ms; }
.eco-js-ready [data-eco-stagger].is-visible > *:nth-child(4) { transition-delay: 180ms; }
.eco-js-ready [data-eco-stagger].is-visible > *:nth-child(5) { transition-delay: 240ms; }
.eco-js-ready [data-eco-stagger].is-visible > *:nth-child(6) { transition-delay: 300ms; }
.eco-js-ready [data-eco-stagger].is-visible > *:nth-child(7) { transition-delay: 360ms; }
.eco-js-ready [data-eco-stagger].is-visible > *:nth-child(8) { transition-delay: 420ms; }

/* === Counter visual emphasis === */
[data-eco-counter] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* === Section dividers — quiet rhythm === */
.pg-section + .pg-section,
section.section-new + section.section-new {
  position: relative;
}

/* === Hero polish — applied to existing homepage hero === */
.hero-new.cc-home .h1-new {
  font-weight: 800;
  letter-spacing: -0.034em;
  line-height: 1.0;
}
.hero-new .hero-bg-image_overlay {
  background: linear-gradient(
    180deg,
    oklch(0.18 0.018 155 / 0.35) 0%,
    oklch(0.18 0.018 155 / 0.55) 100%
  ) !important;
}

/* Subtle animated grain on dark sections (optional polish) */
.hero-new.cc-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    radial-gradient(circle at 1px 1px, oklch(1 0 0 / 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 75%);
  opacity: 0.8;
}
.hero-new.cc-home { position: relative; }

/* === Mobile sticky CTA bar === */
.eco-stickybar {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 14px;
  z-index: 998;
  display: none;
  background: var(--eco-ink);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--eco-shadow-3);
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 420ms var(--eco-ease-strong),
    opacity 280ms var(--eco-ease);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.eco-stickybar.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.eco-stickybar__cta {
  background: var(--eco-brand);
  color: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: transform 180ms var(--eco-ease), background 180ms var(--eco-ease);
}
.eco-stickybar__cta:hover {
  transform: translateX(2px);
  background: oklch(0.7 0.17 145);
}
@media (max-width: 720px) {
  .eco-stickybar { display: flex; }
}

/* === Image lazy fade-in === */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 480ms var(--eco-ease);
}
img[loading="lazy"].is-loaded,
img[loading="lazy"][data-loaded] {
  opacity: 1;
}

/* === Refined dark-section eyebrow === */
section[style*="background:#0a1410"] p:first-child,
section[style*="background:#0c1511"] p:first-child {
  color: oklch(0.78 0.13 145) !important;
}

/* === Reduce motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-eco-reveal], [data-eco-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   Ecowatt in Zahlen — Clean white bento layout
   ============================================================ */
.eco-stats {
  --eco-green: #39a85b;
  --eco-green-dark: #2d8b48;
  --eco-green-soft: #f4f8f2;
  --eco-green-mid: #edf6ee;
  --eco-ink: #0c1511;
  --eco-ink-2: #4d6256;
  --eco-ink-3: #6b8a74;
  --eco-line: #e4ede1;
  --eco-bg: #f4f8f2;

  position: relative;
  padding: 5rem clamp(20px, 4vw, 56px);
  background: #ffffff;
  color: var(--eco-ink);
}

.eco-stats__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.eco-stats__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin: 0 0 clamp(32px, 4vw, 48px);
}
.eco-stats__header-left  { display: flex; flex-direction: column; gap: 1rem; }
.eco-stats__header-right { display: flex; flex-direction: column; gap: 1rem; padding-bottom: .25rem; }

.eco-stats__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eco-green);
  align-self: flex-start;
}
.eco-stats__eyebrow-dot {
  width: 0.5rem; height: 0.5rem;
  background: var(--eco-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(57, 168, 91, 0.15);
}

.eco-stats__title {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.028em;
  color: var(--eco-ink);
}
.eco-stats__title-accent {
  color: var(--eco-green);
}
.eco-stats__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--eco-ink-2);
}
.eco-stats__signature {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  color: var(--eco-ink-3);
}
.eco-stats__signature-line {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1px;
  background: var(--eco-green);
}
.eco-stats__signature-text {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Bento grid ---------- */
.eco-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 1.25rem;
}
.eco-bento__tile {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--eco-line);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.eco-bento__tile:hover {
  border-color: var(--eco-green);
  box-shadow: 0 2px 16px rgba(57, 168, 91, 0.08);
}

.eco-bento__tile--map     { grid-column: span 4; grid-row: span 2; }
.eco-bento__tile--sideinfo { grid-column: span 2; grid-row: span 2; }
.eco-bento__tile--values  { grid-column: span 6; }

.eco-tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.eco-bento__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eco-green);
}
.eco-tile-counter {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--eco-ink-3);
  font-variant-numeric: tabular-nums;
}
.eco-tile-counter__sep { color: var(--eco-line); margin: 0 .2rem; }

.eco-bento__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--eco-ink);
  line-height: 1.3;
}
.eco-bento__title--lg {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.2;
}
.eco-muted { color: var(--eco-ink-3); font-weight: 500; }
.eco-bento__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--eco-ink-2);
}

/* States list */
.eco-states-list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--eco-line);
}
.eco-states-list li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--eco-line);
  font-size: 14px;
  font-weight: 600;
  color: var(--eco-ink);
}
.eco-states-list__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c, var(--eco-green));
}
.eco-states-list__name { letter-spacing: -0.005em; }
.eco-states-list__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eco-ink-2);
  background: var(--eco-bg);
  border: 1px solid var(--eco-line);
  border-radius: 6px;
  padding: 3px 8px;
}

/* ---------- Map tile ---------- */
.eco-bento__tile--map {
  background: #f0f7f2;
  overflow: hidden;
}
.eco-bento__tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.eco-bento__legend {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--eco-ink-2); font-weight: 500;
}
.eco-bento__legend-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--eco-green);
}

.eco-map-wrap {
  position: relative;
  flex: 1;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-map {
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: visible;
}

.eco-map__inactive path {
  fill: #c2d9c7;
  stroke: #ffffff;
  stroke-width: 1.2;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.eco-map__active .eco-state {
  fill: var(--eco-green);
  stroke: #ffffff;
  stroke-width: 1.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transition: opacity .6s ease, fill .2s ease;
}
.eco-stats.is-in .eco-map__active .eco-state { opacity: 1; }
.eco-map__active .eco-state:hover {
  fill: var(--eco-green-dark);
  cursor: pointer;
}
.eco-state--1 { transition-delay: .05s; fill: #6dd98a; }
.eco-state--2 { transition-delay: .10s; fill: #5cc97a; }
.eco-state--3 { transition-delay: .15s; fill: #4cbf6c; }
.eco-state--4 { transition-delay: .20s; fill: #5cc97a; }
.eco-state--5 { transition-delay: .25s; fill: #6dd98a; }
.eco-state--6 { transition-delay: .30s; fill: #39a85b; }
.eco-state--7 { transition-delay: .35s; fill: #2d8b48; }

.eco-map__dots circle {
  fill: #ffffff;
  stroke: var(--eco-green-dark);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transition: opacity .5s ease;
  transition-delay: calc(var(--d, 0s) + .6s);
}
.eco-stats.is-in .eco-map__dots circle { opacity: 1; }

/* Floating badge */
.eco-map-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: #ffffff;
  border: 1px solid var(--eco-line);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  box-shadow: 0 4px 18px rgba(12, 21, 17, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 140px;
}
.eco-map-badge__num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--eco-ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}
.eco-map-badge__num span[data-eco-counter] { color: var(--eco-green); }
.eco-map-badge__plus { color: var(--eco-green); }
.eco-map-badge__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--eco-ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: .35rem;
}

/* Map project hover tooltip */
.eco-map-tooltip {
  position: fixed;
  z-index: 9999;
  width: 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(12,21,17,.15), 0 2px 8px rgba(12,21,17,.07);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
/* TOOLTIP-HIDDEN-START — zum Wiederherstellen Kommentar entfernen
.eco-map-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}
TOOLTIP-HIDDEN-END */

/* ---------- Sideinfo tile (Präsenz + Zufriedenheit) ---------- */
.eco-bento__tile--sideinfo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.eco-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.eco-chip {
  display: inline-flex;
  align-items: center;
  padding: .3rem .65rem;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--cc, #39a85b);
  color: #fff;
}
.eco-sideinfo-sep {
  height: 1px;
  background: var(--eco-line);
  margin: .1rem 0;
}
.eco-satisfaction-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.eco-satisfaction-row__num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--eco-green);
  font-variant-numeric: tabular-nums;
}
.eco-satisfaction-row__label {
  font-size: .78rem;
  color: var(--eco-muted);
  font-weight: 500;
}
.eco-sideinfo-values {
  list-style: none;
  counter-reset: sv;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  flex: 1;
  justify-content: center;
}
.eco-sideinfo-values li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.eco-sideinfo-values li::before {
  counter-increment: sv;
  content: counter(sv);
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--eco-green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .15rem;
}
.eco-sideinfo-values li > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.eco-sideinfo-values li strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--eco-dark);
}
.eco-sideinfo-values li span {
  font-size: .78rem;
  color: var(--eco-muted);
  line-height: 1.35;
}
.eco-map-tooltip__img img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.eco-map-tooltip__body {
  padding: .8rem 1rem;
}
.eco-map-tooltip__badge {
  display: inline-block;
  background: var(--eco-green);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2em .6em;
  border-radius: 50px;
  margin-bottom: .4rem;
}
.eco-map-tooltip__name {
  font-size: .92rem;
  font-weight: 800;
  color: var(--eco-ink);
  margin: 0 0 .35rem;
  line-height: 1.2;
}
.eco-map-tooltip__meta {
  display: flex;
  gap: .7rem;
  font-size: .72rem;
  color: var(--eco-ink-2);
  margin-bottom: .35rem;
}
.eco-map-tooltip__desc {
  font-size: .76rem;
  color: var(--eco-ink-3);
  margin: 0;
  line-height: 1.45;
}

/* ---------- Ring tile ---------- */
.eco-ring-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 1.1rem;
  align-items: center;
  margin-top: .25rem;
}
.eco-ring {
  position: relative;
  width: 116px;
  height: 116px;
}
.eco-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.eco-ring__track {
  fill: none;
  stroke: var(--eco-green-soft);
  stroke-width: 9;
}
.eco-ring__fill {
  fill: none;
  stroke: var(--eco-green);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.4s cubic-bezier(.2,.7,.2,1) .2s;
}
.eco-ring__fill.is-on { stroke-dashoffset: 0; }
.eco-ring__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.eco-ring__num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--eco-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.eco-ring__num span { color: var(--eco-green); }
.eco-ring-meta { display: flex; flex-direction: column; gap: .35rem; }

.eco-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #fbbc04;
}
.eco-stars svg { width: 13px; height: 13px; fill: currentColor; }

/* ---------- Values tile ---------- */
.eco-bento__values {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.eco-bento__values li {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: .5rem;
  padding: .25rem clamp(1.25rem, 2.4vw, 2rem);
  border-left: 1px solid var(--eco-line);
}
.eco-bento__values li:first-child { border-left: none; padding-left: .25rem; }
.eco-bento__values li:last-child  { padding-right: .25rem; }
.eco-bento__value-num {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--eco-green);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.eco-bento__values strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--eco-ink);
  line-height: 1.3;
}
.eco-bento__values li > span:last-child {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--eco-ink-2);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .eco-stats__header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .eco-stats__header-right { padding-bottom: 0; }
  .eco-bento { grid-template-columns: repeat(2, 1fr); }
  .eco-bento__tile--map      { grid-column: span 2; grid-row: auto; }
  .eco-bento__tile--sideinfo { grid-column: span 2; grid-row: auto; }
  .eco-bento__tile--values   { grid-column: span 2; }
  .eco-map { max-width: 380px; }
}
@media (max-width: 720px) {
  .eco-ring-row { grid-template-columns: 110px 1fr; }
  .eco-ring { width: 110px; height: 110px; }
}
@media (max-width: 640px) {
  .eco-bento { grid-template-columns: 1fr; }
  .eco-bento__tile,
  .eco-bento__tile--map,
  .eco-bento__tile--sideinfo,
  .eco-bento__tile--values { grid-column: span 1; }
  .eco-bento__values { grid-template-columns: 1fr; }
  .eco-bento__values li { border-left: none; border-top: 1px solid var(--eco-line); padding: 18px 4px 0; }
  .eco-bento__values li:first-child { border-top: none; padding-top: 4px; }
  .eco-map-badge {
    position: static;
    margin-top: 12px;
    align-self: center;
    align-items: center;
  }
  .eco-map-wrap { flex-direction: column; min-height: auto; }
}

/* ============================================================
   Google Bewertungen (eco-reviews) — homepage section
   ============================================================ */
.eco-reviews {
  position:relative; overflow:hidden;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(57,168,91,.10), transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(57,168,91,.06), transparent 70%),
    #f4f8f2;
  color:#0c1511; padding:6rem 0 5.5rem;
}
.eco-reviews::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(2,44,34,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2,44,34,.04) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000 30%, transparent 75%);
  opacity:.55;
}
.eco-reviews__inner { position:relative; max-width:1200px; margin:0 auto; padding:0 1.5rem; }

.eco-reviews__head { text-align:center; max-width:46rem; margin:0 auto 3rem; }
.eco-reviews__label {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:'Poppins',sans-serif; font-size:0.7rem; font-weight:700;
  letter-spacing:0.14em; text-transform:uppercase; color:#0c1511;
  background:#fff; padding:.45rem .85rem; border-radius:999px;
  border:1px solid #dde6df; box-shadow:0 4px 14px -10px rgba(2,44,34,.25);
  margin:0 0 1.1rem;
}
.eco-reviews__label::before {
  content:""; width:.5rem; height:.5rem; border-radius:50%;
  background:#39a85b; box-shadow:0 0 0 4px rgba(57,168,91,.18);
}
.eco-reviews__heading {
  font-family:'Poppins',sans-serif;
  font-size:clamp(1.6rem,3.2vw,2.4rem); font-weight:800;
  letter-spacing:-0.028em; line-height:1.15; color:#0c1511;
  margin:0 0 1.75rem;
}

/* Score card — premium centered widget */
.eco-reviews__scorecard {
  display:inline-flex; align-items:center; gap:1.25rem;
  background:#fff; border:1px solid #e3ebe5; border-radius:18px;
  padding:1rem 1.5rem; box-shadow:0 24px 60px -32px rgba(2,44,34,.30);
  text-align:left;
}
.eco-reviews__scorecard-g {
  width:48px; height:48px; border-radius:50%; background:#f7faf6;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid #e3ebe5; flex-shrink:0;
}
.eco-reviews__scorecard-body { display:flex; flex-direction:column; gap:.15rem; }
.eco-reviews__scorecard-top {
  display:flex; align-items:baseline; gap:.55rem;
  font-family:'Poppins',sans-serif;
}
.eco-reviews__score {
  font-size:1.85rem; font-weight:800; color:#0c1511; line-height:1;
  letter-spacing:-.02em;
}
.eco-reviews__score strong { font-weight:800; }
.eco-reviews__stars { display:inline-flex; gap:2px; }
.eco-reviews__scorecard-meta {
  font-family:'Poppins',sans-serif; font-size:.82rem; color:#5a6e62;
  display:flex; align-items:center; gap:.4rem;
}
.eco-reviews__scorecard-meta strong { color:#0c1511; font-weight:600; }

/* Cards grid */
.eco-reviews__grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
  margin-top:1rem;
}
.eco-review-card {
  position:relative; background:#fff; border:1px solid #e6ede7; border-radius:18px;
  padding:1.6rem 1.6rem 1.35rem; display:flex; flex-direction:column;
  gap:1rem; transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
  overflow:hidden;
}
.eco-review-card::before {
  content:"\201C";
  position:absolute; top:-1.8rem; right:.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size:9rem; line-height:1; color:#39a85b;
  opacity:.07; pointer-events:none; user-select:none;
}
.eco-review-card::after {
  content:""; position:absolute; left:0; right:0; top:0; height:3px;
  background:linear-gradient(90deg,#39a85b 0%, #74c98a 100%);
  transform:scaleX(0); transform-origin:left center;
  transition:transform .35s cubic-bezier(.2,.7,.2,1);
}
.eco-review-card:hover {
  transform:translateY(-4px);
  box-shadow:0 24px 50px -28px rgba(2,44,34,.30);
  border-color:#d5e2d8;
}
.eco-review-card:hover::after { transform:scaleX(1); }
.eco-review-card__top {
  display:flex; align-items:center; justify-content:space-between;
  position:relative; z-index:1;
}
.eco-review-card__stars { display:inline-flex; gap:1px; }
.eco-review-card__g { opacity:.95; }
.eco-review-card__text {
  font-family:'Poppins',sans-serif; font-size:.96rem; line-height:1.65;
  color:#1f2a23; margin:0; flex:1; position:relative; z-index:1;
  display:-webkit-box; -webkit-line-clamp:7; -webkit-box-orient:vertical;
  overflow:hidden;
}
.eco-review-card__foot {
  display:flex; align-items:center; gap:.7rem; margin-top:.25rem;
  padding-top:1rem; border-top:1px solid #eef3ef;
  font-family:'Poppins',sans-serif; font-size:.82rem; color:#5a6e62;
  position:relative; z-index:1;
}
.eco-review-card__avatar {
  width:2.35rem; height:2.35rem; border-radius:50%;
  background:linear-gradient(135deg,#39a85b,#2c8447);
  color:#fff; display:inline-flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem; flex-shrink:0;
  box-shadow:0 4px 10px -4px rgba(57,168,91,.45);
  border:2px solid #fff;
}
.eco-review-card__avatar--img { padding:0; background:#eef3ef; object-fit:cover; }
.eco-review-card__author { color:#0c1511; font-weight:600; font-size:.88rem; }
.eco-review-card__when { color:#7a8a80; }
.eco-review-card__when::before { content:"\00b7"; margin-right:.4rem; color:#c2cec5; }

/* Footer / CTA */
.eco-reviews__footer {
  display:flex; flex-direction:column; align-items:center; gap:.85rem;
  margin-top:3rem;
}
.eco-reviews__verify {
  display:inline-flex; align-items:center; gap:.4rem;
  font-family:'Poppins',sans-serif; font-size:.78rem; color:#5a6e62;
}
.eco-reviews__verify svg { color:#39a85b; }
.eco-reviews__cta {
  display:inline-flex; align-items:center; gap:.55rem;
  font-family:'Poppins',sans-serif; font-size:.95rem; font-weight:600;
  color:#fff; background:#0c1511; text-decoration:none;
  padding:.95rem 1.6rem; border-radius:999px;
  border:1.5px solid #0c1511;
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow:0 14px 30px -16px rgba(2,44,34,.45);
}
.eco-reviews__cta:hover {
  background:#39a85b; border-color:#39a85b;
  transform:translateY(-1px);
  box-shadow:0 18px 36px -16px rgba(57,168,91,.55);
}
.eco-reviews__cta svg { transition:transform .2s ease; }
.eco-reviews__cta:hover svg { transform:translateX(3px); }

@media (max-width:980px) {
  .eco-reviews__grid { grid-template-columns:repeat(2,1fr); gap:1.25rem; }
}
@media (max-width:620px) {
  .eco-reviews { padding:4rem 0 3.5rem; }
  .eco-reviews__grid { grid-template-columns:1fr; }
  .eco-reviews__scorecard { gap:1rem; padding:.85rem 1.1rem; }
  .eco-reviews__scorecard-g { width:42px; height:42px; }
  .eco-reviews__score { font-size:1.55rem; }
  .eco-review-card { padding:1.35rem 1.35rem 1.15rem; }
}

/* ============================================================
   Eco Reasons — "Darauf können Sie sich verlassen"
   ============================================================ */
.eco-reasons {
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem);
  background: #fff;
}
.eco-reasons__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.eco-reasons__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8eee6;
}
.eco-reasons__head-text { max-width: 560px; }
.eco-reasons__label {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #39a85b;
}
.eco-reasons__heading {
  margin: 0 0 .75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: #0c1511;
}
.eco-reasons__subtext {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #4d6256;
}
.eco-reasons__stats {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}
.eco-reasons__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
}
.eco-reasons__stat-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #0c1511;
  letter-spacing: -.04em;
  line-height: 1;
}
.eco-reasons__stat-label {
  font-size: .75rem;
  color: #8aa294;
  white-space: nowrap;
}
.eco-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.eco-reason-card {
  background: #f8faf8;
  border: 1px solid #e8eee6;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.eco-reason-card:hover {
  border-color: #39a85b;
  box-shadow: 0 2px 16px rgba(57,168,91,.07);
}
.eco-reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: #edf6ee;
  color: #39a85b;
  flex-shrink: 0;
  margin-bottom: .25rem;
}
.eco-reason-card__icon svg {
  width: 18px;
  height: 18px;
}
.eco-reason-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0c1511;
  line-height: 1.3;
}
.eco-reason-card__text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: #4d6256;
}

/* Reveal animation */
[data-eco-reveal] .eco-reason-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease, border-color .2s ease, box-shadow .2s ease;
}
[data-eco-reveal].is-visible .eco-reason-card { opacity: 1; transform: translateY(0); }
[data-eco-reveal].is-visible .eco-reason-card:nth-child(2) { transition-delay: .06s; }
[data-eco-reveal].is-visible .eco-reason-card:nth-child(3) { transition-delay: .12s; }
[data-eco-reveal].is-visible .eco-reason-card:nth-child(4) { transition-delay: .18s; }
[data-eco-reveal].is-visible .eco-reason-card:nth-child(5) { transition-delay: .24s; }
[data-eco-reveal].is-visible .eco-reason-card:nth-child(6) { transition-delay: .30s; }

@media (max-width: 1024px) {
  .eco-reasons__head { grid-template-columns: 1fr; }
  .eco-reasons__stats { justify-content: flex-start; }
  .eco-reasons__stat { align-items: flex-start; }
}
@media (max-width: 900px) {
  .eco-reasons__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .eco-reasons { padding: 3.5rem 1.25rem; }
  .eco-reasons__grid { grid-template-columns: 1fr; gap: 1rem; }
  .eco-reasons__stats { gap: 1.5rem; flex-wrap: wrap; }
}
