:root {
  --primary:     #53B0AE;
  --accent:      #003B46;
  --text:        #003B46;
  --bg:          #ffffff;
  --bg-soft:     #f2f7f7;
  /* RGB channel vars – overridden by head.php based on brand.json */
  --primary-rgb: 83,176,174;
  --accent-rgb:  0,59,70;
  --text-rgb:    0,59,70;
  --bg-soft-rgb: 242,247,247;
  /* Derived vars – use hardcoded fallbacks, head.php injects updated values when brand changes */
  --muted:   rgba(var(--accent-rgb),.62);
  --line:    rgba(var(--accent-rgb),.10);
  --shadow:  0 8px 32px rgba(var(--accent-rgb),.10);
  --r:       16px;
  --max:     1120px;
  --wm-img:  url('img/trueessence_logo_clean_transparent.webp');
}

*, *::before, *::after { box-sizing: border-box }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  /* Grayscale-Antialiasing → scharfe Kanten ohne farbige „Fransen" bei eigenen Schriften */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none }
img { display: block; max-width: 100% }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Header ──────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand img {
  height: 36px;
  width: auto;
  transition: opacity .2s;
}
.brand img:hover { opacity: .82 }

nav.desktop { display: none }
nav.desktop a {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--text);
  transition: background .15s;
}
nav.desktop a:hover { background: var(--bg-soft) }

/* ─── Dropdown-Untermenüs (Desktop) ───────────────────────── */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item .nav-caret { opacity: .55; transition: transform .18s ease; flex-shrink: 0; }
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret { transform: rotate(180deg); opacity: .85; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 80;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 13px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  -webkit-tap-highlight-color: transparent;
  border: none;
}
.btn:active { transform: scale(.98) }
.btn.primary {
  background: var(--primary);
  color: #fff;
}
.btn.primary:hover { background: var(--accent) }
.btn.secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn.secondary:hover { background: var(--bg-soft) }
.btn.ghost {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn.ghost:hover { background: rgba(255,255,255,.25) }

/* ── section-bg-primary: white text on turquoise bg ────────── */
.section-bg-primary .section-label { color: rgba(255,255,255,.65); }
.section-bg-primary .section-title { color: #fff; }
.section-bg-primary .section-sub   { color: rgba(255,255,255,.80); }
.section-bg-primary .btn.ghost {
  border-color: rgba(255,255,255,.55);
  color: #fff;
  background: rgba(255,255,255,.12);
}
.section-bg-primary .btn.ghost:hover { background: rgba(255,255,255,.25); }
/* Buttons on turquoise bg → ghost style (white border, white text) */
.section-bg-primary .btn.primary,
.section-bg-primary .order-submit-btn,
.section-bg-primary .order-coupon-btn {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section-bg-primary .btn.primary:hover,
.section-bg-primary .order-submit-btn:hover,
.section-bg-primary .order-coupon-btn:hover { background: rgba(255,255,255,.25); }
/* Turquoise-colored texts → dark on turquoise bg */
.section-bg-primary a { color: var(--accent); }
/* Input focus on turquoise bg */
.section-bg-primary input:focus,
.section-bg-primary textarea:focus { border-color: rgba(255,255,255,.7) !important; }
/* Contact form consent link */
.contact-section.section-bg-primary .consent-label a { color: var(--primary) !important; }

/* ── section-bg-soft: soft (#f2f7f7) background override ────── */
.section-bg-soft { background: var(--bg-soft) !important; }
.section-bg-dark { background: var(--accent) !important; }

/* ── section-light: sections on white/transparent bg ───────── */
/* Ghost button → dark brand colors */
.section-light .btn.ghost {
  background: transparent;
  border-color: rgba(var(--accent-rgb),.30);
  color: var(--accent);
  backdrop-filter: none;
}
.section-light .btn.ghost:hover {
  background: rgba(var(--accent-rgb),.07);
  border-color: rgba(var(--accent-rgb),.55);
}
/* Primary button already dark — no change needed */
/* Text elements */
.section-light .section-label { color: var(--primary); }
.section-light .section-title { color: var(--accent);  }
.section-light .section-sub   { color: var(--muted);   }

/* Optional page-builder section frame, same visual logic as the hero banner */
.section-frame--rounded {
  margin: 12px 12px 12px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.section-frame--rounded > section {
  margin: 0 !important;
}

/* freebies dark default: section-label white */
.freebies-section:not(.section-light) .section-label { color: rgba(255,255,255,.55); }

/* ── freebies.section-light ─────────────────────────────── */
.freebies-section.section-light {
  background: #fff;
}
.freebies-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.freebies-section.section-light .freebies-section-title { color: var(--accent); }
.freebies-section.section-light .section-label           { color: var(--primary); }
.freebies-section.section-light .freebie-card {
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.06);
}

/* ── feedback.section-light ─────────────────────────────── */
.feedback-section.section-light {
  background: #fff;
}
.feedback-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.feedback-section.section-light .section-label { color: var(--primary); }
.feedback-section.section-light .section-title { color: var(--accent);  }
.feedback-section.section-light .fb-item {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.06);
}
.feedback-section.section-light .fb-item-stars  { color: #f5a623; }
.feedback-section.section-light .fb-item-bereich { color: var(--muted); }
.feedback-section.section-light .fb-item-name   { color: var(--accent); }
.feedback-section.section-light .fb-item-text   { color: var(--text);   }
.feedback-section.section-light .fb-more        { color: var(--primary); }
/* Punkte & Pfeile an die gewählte Hintergrundfarbe koppeln (nicht ans Bild):
   helle Hintergrundfarbe → dunkle Nav, auch wenn ein Bild/Video gesetzt ist. */
.feedback-section.feedback-light-nav .fb-arrow {
  border-color: rgba(var(--accent-rgb),.20);
  background: rgba(var(--accent-rgb),.05);
  color: var(--accent);
}
.feedback-section.feedback-light-nav .fb-arrow:hover { background: rgba(var(--accent-rgb),.10); }
.feedback-section.feedback-light-nav .fb-dot         { background: rgba(var(--accent-rgb),.18); }
.feedback-section.feedback-light-nav .fb-dot.active  { background: var(--primary); }

/* ── logos.section-light ────────────────────────────────── */
.logos-section.section-light {
  background: #fff;
}
.logos-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.logos-section.logos-light-text .logos-section-title { color: var(--accent); }
/* Logos in Originalfarbe, volle Deckkraft von Anfang an (kein Transparenz-Effekt). */
.logos-section.section-light .logos-item img { filter: none; opacity: 1; }

/* ── audio.section-light ────────────────────────────────── */
.audio-section.section-light {
  background: #fff;
}
.audio-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.audio-section.section-light .audio-section-label { color: var(--primary); }
.audio-section.section-light .audio-section-title { color: var(--accent);  }
.audio-section.section-light .audio-section-text  { color: var(--muted);   }
.audio-section.section-light .audio-section-player-wrap,
.audio-section.section-light .audio-player {
  background: transparent;
}
.audio-section.section-light .audio-player {
  background: rgba(var(--primary-rgb),.09);
  border-color: rgba(var(--primary-rgb),.18);
  border-radius: 12px;
  box-shadow: none;
  backdrop-filter: none;
  padding: 10px 14px;
  gap: 12px;
}
.audio-section.section-light .audio-play-btn {
  width: 38px;
  height: 38px;
  background: var(--primary);
  box-shadow: none;
}
.audio-section.section-light .audio-play-btn:hover {
  background: var(--accent);
  box-shadow: none;
}
.audio-section.section-light .ap-cur,
.audio-section.section-light .ap-dur { color: var(--muted); }
.audio-section.section-light .audio-progress-wrap {
  height: 4px;
  background: rgba(var(--primary-rgb),.22);
  border-radius: 2px;
}
.audio-section.section-light .audio-progress-bar {
  background: var(--primary);
  border-radius: 2px;
}
.audio-section.section-light .audio-progress-thumb {
  background: #fff;
}
.audio-section.section-bg-primary .audio-section-label { color: rgba(255,255,255,.65); }
.audio-section.section-bg-primary .audio-section-title { color: #fff; }
.audio-section.section-bg-primary .audio-section-text { color: rgba(255,255,255,.80); }
.audio-section.section-bg-primary .audio-play-btn {
  background: var(--accent);
  box-shadow: 0 2px 12px rgba(var(--accent-rgb),.28);
}
.audio-section.section-bg-primary .audio-play-btn:hover {
  background: var(--accent-dark);
}

/* Audio-Player: heller Hintergrund durch Overlay-Ausblenden (kein Glass) */
.section-no-overlay:not(.section-light):not(.section-glass-bright) .ap-cur,
.section-no-overlay:not(.section-light):not(.section-glass-bright) .ap-dur { color: var(--muted); }
.section-no-overlay:not(.section-light):not(.section-glass-bright) .audio-progress-wrap {
  background: rgba(var(--accent-rgb),.14);
}

/* Audio-Player: heller Hintergrund durch Overlay-Ausblenden + Glass */
.section-glass-bright .ap-cur,
.section-glass-bright .ap-dur { color: var(--muted) !important; }
.section-glass-bright .audio-progress-wrap { background: rgba(var(--accent-rgb),.14) !important; }
.section-glass-bright .audio-player {
  background: rgba(255,255,255,.55) !important;
  border-color: rgba(var(--accent-rgb),.15) !important;
  backdrop-filter: none !important;
}

/* ── nl-signup.section-light ────────────────────────────── */
.nl-signup-section.section-light {
  background: #fff;
}
.nl-signup-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.nl-signup-section.section-light .nl-signup-card {
  background: #fff !important;
  border: 1px solid rgba(var(--accent-rgb),.12);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),.10);
  backdrop-filter: none;
}
.nl-signup-section.section-light.section-bg-soft .nl-signup-card {
  box-shadow: 0 4px 22px rgba(var(--accent-rgb),.08);
}
.nl-signup-section.section-light .nl-signup-form input[type="text"],
.nl-signup-section.section-light .nl-signup-form input[type="email"] {
  background: #f6fafa;
  border-color: rgba(var(--accent-rgb),.18);
  color: var(--accent);
}
.nl-signup-section.section-light .nl-signup-form input[type="text"]::placeholder,
.nl-signup-section.section-light .nl-signup-form input[type="email"]::placeholder {
  color: rgba(var(--accent-rgb),.35);
}
.nl-signup-section.section-light .nl-signup-form input[type="text"]:focus,
.nl-signup-section.section-light .nl-signup-form input[type="email"]:focus {
  background: #fff;
  border-color: var(--primary);
}
.nl-signup-section.section-light .nl-dark-check         { color: var(--text)   !important; }
.nl-signup-section.section-light .nl-dark-check a       { color: var(--primary)!important; }
.nl-signup-section.section-light .nl-dark-check a:hover { color: var(--accent) !important; }
.nl-signup-section.section-light .nl-signup-error {
  background: rgba(184,0,0,.08);
  color: #c00;
}
.nl-signup-section.section-light .nl-signup-state-title { color: var(--accent); }
.nl-signup-section.section-light .nl-signup-state-text  { color: var(--muted);  }

.btn.dark {
  background: var(--accent);
  color: #fff;
}
.btn.dark:hover { background: var(--accent-dark) }
/* Nav-button sizing: matches original Erstgespräch button */
header nav.desktop a.btn,
header .drawer a.btn {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 12px;
}

/* Hamburger */
.hamburger {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:active { transform: scale(.97) }
.hamburger-lines {
  width: 18px; height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-lines span {
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  display: block;
}

/* Mobile drawer */
.drawer {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 16px;
}
.drawer a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text);
  transition: background .15s;
}
.drawer a:hover { background: var(--bg-soft) }

/* ─── Untermenüs in der mobilen Drawer-Navigation ─────────── */
.drawer-item-row { display: flex; align-items: stretch; gap: 2px; }
.drawer-item-row .drawer-link { flex: 1; }
.drawer-toggle {
  width: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-toggle:hover { background: var(--bg-soft); color: var(--text) }
.drawer-toggle svg { transition: transform .2s ease; }
.drawer-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer-submenu {
  display: none;
  flex-direction: column;
  margin: 2px 8px 8px 18px;
  padding-left: 12px;
  border-left: 2px solid var(--line);
}
.drawer-item.open .drawer-submenu { display: flex; }
.drawer-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s;
}
.drawer-submenu a:hover { background: var(--bg-soft) }
.drawer .cta {
  margin: 10px 14px 0;
  display: flex;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: background .15s;
}
.drawer .cta:hover { background: var(--accent) }

/* ─── Hero Banner ─────────────────────────────────────────── */
.hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  margin: 12px 12px 0;
  border-radius: 24px;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
}
.hero-banner.hero-banner-primary { background: var(--primary); }
.hero-banner.hero-banner-primary .hero-label,
.page-hero.page-hero-primary     .hero-label {
  color: #fff;
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}
.hero-banner.hero-banner--full { margin: 0; border-radius: 0; }

/* ── Hero-Banner light variants (no image/video) ── */
.hero-banner.hero-banner-white { background: #fff; }
.hero-banner.hero-banner-soft  { background: var(--bg-soft); }
.hero-banner.hero-banner-white .hero-inner h1,
.hero-banner.hero-banner-soft  .hero-inner h1  { color: var(--accent); }
.hero-banner.hero-banner-white .hero-lead,
.hero-banner.hero-banner-soft  .hero-lead      { color: var(--muted); }
.hero-banner.hero-banner-white .hero-label,
.hero-banner.hero-banner-soft  .hero-label     { color: var(--primary); background: rgba(var(--primary-rgb),.12); border-color: rgba(var(--primary-rgb),.2); }
.hero-banner.hero-banner-white::before,
.hero-banner.hero-banner-soft::before           { opacity: .05; }
/* Ghost button → turquoise on light hero backgrounds */
.hero-banner.hero-banner-white .btn.ghost,
.hero-banner.hero-banner-soft  .btn.ghost {
  background: rgba(var(--primary-rgb),.12);
  border-color: rgba(var(--primary-rgb),.5);
  color: var(--primary);
  backdrop-filter: none;
}
.hero-banner.hero-banner-white .btn.ghost:hover,
.hero-banner.hero-banner-soft  .btn.ghost:hover {
  background: rgba(var(--primary-rgb),.22);
  border-color: var(--primary);
}
.hero-banner .hero-content {
  padding-top: 120px;
  padding-bottom: 120px;
}
.hero-banner--page .hero-content {
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-banner img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
}
.dark-section-bg .hero-video {
  transform: none;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--overlay-rgb, var(--accent-rgb)), var(--overlay-opacity, .60));
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 780px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-label {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb),.18);
  border: 1px solid rgba(var(--primary-rgb),.32);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.hero-logo {
  height: 22px;
  width: auto;
  display: block;
  margin: 0 0 22px;
}
.hero-inner h1 {
  margin: 0 0 18px;
  font-size: clamp(26px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
}
@media (min-width: 480px) {
  .hero-inner h1 { letter-spacing: -1.5px }
}
.hero-lead {
  margin: 0 0 32px;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.84);
  max-width: 52ch;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  display: grid;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 24px;
}
.hero-slider.hero-slider--full { margin: 0; border-radius: 0; }
/* Alle Slides liegen in derselben Grid-Zelle übereinander → Höhe = größter Slide */
.hero-slider > .hero-slide {
  grid-area: 1 / 1;
  margin: 0;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease;
}
.hero-slider > .hero-slide.is-active { opacity: 1; visibility: visible; }

/* ── Slider-Übergang „Einschieben": Bild gleitet von links, Inhalte gestaffelt ── */
.hero-slider[data-anim="slide"] > .hero-slide img,
.hero-slider[data-anim="slide"] > .hero-slide .hero-video {
  transform: scale(1.08) translateX(-40px);
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.hero-slider[data-anim="slide"] > .hero-slide.is-active img,
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-video {
  transform: scale(1.08) translateX(0);
}
.hero-slider[data-anim="slide"] > .hero-slide .hero-label,
.hero-slider[data-anim="slide"] > .hero-slide .hero-inner h1,
.hero-slider[data-anim="slide"] > .hero-slide .hero-lead,
.hero-slider[data-anim="slide"] > .hero-slide .hero-actions {
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-label,
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-inner h1,
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-lead,
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-actions {
  opacity: 1;
  transform: translateX(0);
}
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-label   { transition-delay: .15s; }
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-inner h1 { transition-delay: .28s; }
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-lead    { transition-delay: .40s; }
.hero-slider[data-anim="slide"] > .hero-slide.is-active .hero-actions { transition-delay: .52s; }
@media (prefers-reduced-motion: reduce) {
  .hero-slider[data-anim="slide"] > .hero-slide img,
  .hero-slider[data-anim="slide"] > .hero-slide .hero-video,
  .hero-slider[data-anim="slide"] > .hero-slide .hero-label,
  .hero-slider[data-anim="slide"] > .hero-slide .hero-inner h1,
  .hero-slider[data-anim="slide"] > .hero-slide .hero-lead,
  .hero-slider[data-anim="slide"] > .hero-slide .hero-actions {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.hero-slider-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  cursor: pointer;
  transition: width .25s, background .25s;
}
.hero-slider-dot.is-active { width: 24px; border-radius: 5px; background: #fff; }
.hero-slider-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.28);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.hero-slider-arrow:hover { background: rgba(0,0,0,.5); }
.hero-slider-prev { left: 16px; }
.hero-slider-next { right: 16px; }
@media (max-width: 600px) {
  .hero-slider { margin: 16px 16px 0; border-radius: 28px; }
  .hero-slider.hero-slider--full { margin: 0; border-radius: 0; }
  .hero-slider-arrow { width: 38px; height: 38px; font-size: 20px; }
  .hero-slider-prev { left: 8px; }
  .hero-slider-next { right: 8px; }
}

/* ─── Section Labels & Titles ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}
.section-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--accent);
}
.section-sub {
  margin: 0 0 48px;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}

/* ─── Intro Section ───────────────────────────────────────── */
.intro-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--bg);
}
.intro-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .08;
  pointer-events: none;
}
.intro-section > .container {
  position: relative;
  z-index: 2;
}
.intro-section.section-light { background: #fff; }
.intro-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.intro-section:not(.section-light) { background: var(--accent); }
.intro-section:not(.section-light) .section-label { color: rgba(255,255,255,.62); }
.intro-section:not(.section-light) .intro-inner h2 { color: #fff; }
.intro-section:not(.section-light) .intro-text p { color: rgba(255,255,255,.78); }
.intro-section:not(.section-light) .haltung-note {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
}
.intro-section:not(.section-light) .haltung-note strong { color: #fff; }
.intro-section.section-bg-primary .btn.primary {
  background: var(--accent);
  color: #fff;
}
.intro-section.section-bg-primary .btn.primary:hover {
  background: var(--accent-dark);
}
.haltung-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
}
.haltung-section > .container {
  position: relative;
  z-index: 2;
}
.haltung-section.section-light { background: #fff; }
.haltung-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.haltung-section.section-light.section-bg-soft .haltung-card {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.06);
}
.haltung-section:not(.section-light) { background: var(--accent); }
.haltung-section:not(.section-light) .section-label { color: rgba(255,255,255,.62); }
.haltung-section:not(.section-light) h2 { color: #fff; }
/* Kein Glas: weiße Karte auf dunklem Hintergrund */
.haltung-section:not(.section-light):not(.haltung-glass) .haltung-card {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.08);
  backdrop-filter: none;
}
.haltung-section:not(.section-light):not(.haltung-glass) .haltung-card h3 { color: var(--accent); }
.haltung-section:not(.section-light):not(.haltung-glass) .haltung-card p { color: var(--muted); }
/* Glas-Effekt */
.haltung-glass:not(.section-light) .haltung-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.haltung-glass:not(.section-light) .haltung-card h3 { color: #fff; }
.haltung-glass:not(.section-light) .haltung-card p { color: rgba(255,255,255,.74); }
.haltung-section:not(.section-light) .haltung-note {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
}
.haltung-section:not(.section-light) .haltung-note strong { color: #fff; }
.haltung-section.section-bg-primary .sp-icon-wrap,
.sp-section.section-bg-primary .sp-icon-wrap {
  color: #fff;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
}
.haltung-glass:not(.section-light):not(.section-bg-primary) .sp-icon-wrap,
.sp-glass:not(.section-light):not(.section-bg-primary) .sp-icon-wrap {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
}
.haltung-section.section-bg-primary .qual-list li::before,
.sp-section.section-bg-primary .qual-list li::before {
  color: #fff;
}
.intro-inner {
  max-width: 720px;
}
.intro-inner h2 {
  margin: 0 0 24px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: var(--accent);
}
.intro-text {
  margin-bottom: 32px;
}
.intro-text p {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.intro-text p:last-child { margin-bottom: 0 }

/* ─── Schwerpunkte ────────────────────────────────────────── */
.sp-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.sp-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.sp-section .container {
  position: relative;
  z-index: 2;
}
.sp-section.section-light { background: #fff; }
.sp-section.section-bg-soft { background: var(--bg-soft) !important; }
.sp-section:not(.section-light) .section-label { color: rgba(255,255,255,.55); }
.sp-section:not(.section-light) .section-title { color: #fff; }
.sp-section:not(.section-light) .section-sub { color: rgba(255,255,255,.72); }
.sp-section:not(.section-light) .haltung-note {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
}
.sp-section:not(.section-light) .haltung-note strong { color: #fff; }
/* Kein Glas: weiße Karte auf dunklem Hintergrund */
.sp-section:not(.section-light):not(.sp-glass) .sp-card {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.08);
  backdrop-filter: none;
}
.sp-section:not(.section-light):not(.sp-glass) .sp-card:hover {
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),.14);
}
.sp-section:not(.section-light):not(.sp-glass) .sp-card h3 { color: var(--accent); }
.sp-section:not(.section-light):not(.sp-glass) .sp-card p,
.sp-section:not(.section-light):not(.sp-glass) .qual-list li span { color: var(--muted); }
.sp-section:not(.section-light):not(.sp-glass) .qual-sub { color: var(--muted); }
.sp-section:not(.section-light):not(.sp-glass) .qual-list li strong { color: var(--accent); }
/* Glas-Effekt */
.sp-glass:not(.section-light) .sp-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sp-glass:not(.section-light) .sp-card:hover {
  box-shadow: none;
  background: rgba(255,255,255,.11);
}
.sp-glass:not(.section-light) .sp-card h3 { color: #fff; }
.sp-glass:not(.section-light) .sp-card p,
.sp-glass:not(.section-light) .qual-list li span { color: rgba(255,255,255,.74); }
.sp-glass:not(.section-light) .qual-sub { color: rgba(255,255,255,.55); }
.sp-glass:not(.section-light) .qual-list li strong { color: rgba(255,255,255,.90); }
.sp-section.section-light .sp-card {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.06);
}
.sp-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
/* 4-Spalten-Variante: Tablet 2 Spalten, Desktop 4 Spalten (Mobil 1 Spalte) */
@media (min-width: 600px) and (max-width: 939px) {
  .sp-grid.sp-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.sp-card {
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(var(--accent-rgb),.14);
}
.sp-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(var(--primary-rgb),.12);
  border: 1.5px solid rgba(var(--primary-rgb),.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary);
}
.sp-icon-wrap svg {
  width: 30px;
  height: 30px;
}
.sp-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
}
.sp-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Contact Section ─────────────────────────────────────── */
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.contact-section .container {
  position: relative;
  z-index: 2;
}
.contact-section.section-light {
  background: var(--bg);
}
.contact-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.contact-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.contact-section:not(.section-light) .section-title { color: #fff; }
.contact-section:not(.section-light) .section-sub { color: rgba(255,255,255,.72); }
.contact-section .section-title { font-size: clamp(20px,3vw,28px); }
.contact-section .section-sub {
  max-width: 700px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.contact-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
/* No steps → form always full width */
.contact-section--no-steps .contact-wrap { grid-template-columns: 1fr !important; }
/* Centered layout → title/sub centered, form constrained */
.contact-section--centered .section-label { display: block; text-align: center; }
.contact-section--centered .section-title { text-align: center; }
.contact-section--centered .section-sub  { text-align: center; margin-left: auto; margin-right: auto; }
.contact-section--centered.contact-section--no-steps .contact-wrap { max-width: 640px; margin-left: auto; margin-right: auto; }
/* Kein Glas: weiße Karte (Standard) */
.contact-info {
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb),.10);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.08);
  backdrop-filter: none;
}
.contact-info h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.contact-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
/* Glas: semitransparente Karte */
.contact-glass:not(.section-light) .contact-info {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact-glass:not(.section-light) .contact-info h3 { color: rgba(255,255,255,.92); }
.contact-glass:not(.section-light) .contact-list li { color: rgba(255,255,255,.74); }
.contact-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.contact-list--arrow .contact-list li::before,
.contact-list--check .contact-list li::before {
  margin-top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.45;
}
.contact-list--arrow .contact-list li::before { content: '→'; }
.contact-list--check .contact-list li::before {
  content: '✓';
  font-size: 15px;
  line-height: 1.2;
  align-self: center;
}
.contact-section.section-bg-primary .contact-list li::before {
  background: #fff;
}
.contact-section.section-bg-primary.contact-list--arrow .contact-list li::before,
.contact-section.section-bg-primary.contact-list--check .contact-list li::before {
  background: none;
  color: #fff;
}
form {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
/* Kein Glas: weißes Formular (Standard) */
.contact-section form {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.08);
  backdrop-filter: none;
}
/* Glas: semitransparentes Formular */
.contact-glass:not(.section-light) form {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* Light: gleich wie Standard */
.contact-section.section-light .contact-info,
.contact-section.section-light form {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.06);
  backdrop-filter: none;
}
.contact-section.section-light .contact-info h3 { color: var(--accent); }
.contact-section.section-light .contact-list li { color: var(--muted); }
.contact-section.section-light label { color: var(--accent); }
.contact-section.section-light input,
.contact-section.section-light textarea,
.contact-section.section-light select {
  background-color: var(--bg-soft);
  border-color: var(--line);
  color: var(--text);
}
.contact-section.section-light input:focus,
.contact-section.section-light textarea:focus,
.contact-section.section-light select:focus {
  background-color: var(--bg);
}
.contact-section.section-light .small { color: var(--muted); }
.contact-section.section-light .consent-label .small { color: var(--muted); }
/* Glas auf dunklem Hintergrund: Texte weiß */
.contact-glass:not(.section-light) .consent-label .small,
.contact-glass:not(.section-light) .form-actions .small { color: rgba(255,255,255,.62); }
.contact-glass:not(.section-light) .consent-label a { color: #fff !important; }
.contact-section.section-bg-primary.contact-glass:not(.section-light) .consent-label a { color: var(--primary) !important; }
.contact-section:not(.section-light):not(.section-bg-primary) .btn.primary {
  background: var(--primary);
  color: #fff;
}
label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin: 16px 0 6px;
  color: var(--accent);
}
.contact-glass:not(.section-light) label { color: rgba(255,255,255,.86); }
label:first-child { margin-top: 0 }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23003B46' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.contact-glass:not(.section-light) select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
select option { color: #003B46; }
/* Glas auf dunklem Hintergrund: transparente Inputs mit weißem Text */
.contact-glass:not(.section-light) input,
.contact-glass:not(.section-light) textarea,
.contact-glass:not(.section-light) select {
  border-color: rgba(255,255,255,.16);
  background-color: rgba(255,255,255,.10);
  color: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  background-color: var(--bg);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.14);
}
.contact-glass:not(.section-light) input:focus,
.contact-glass:not(.section-light) textarea:focus,
.contact-glass:not(.section-light) select:focus {
  background-color: rgba(255,255,255,.14);
}
.contact-glass:not(.section-light) input::placeholder,
.contact-glass:not(.section-light) textarea::placeholder { color: rgba(255,255,255,.42); }
.contact-section.section-light input::placeholder,
.contact-section.section-light textarea::placeholder { color: rgba(var(--accent-rgb),.35); }
textarea { min-height: 130px; resize: vertical }
.row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  margin-top: 16px;
}
.consent-label input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
}
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.small {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.success, .error {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
}
.success {
  background: rgba(var(--primary-rgb),.14);
  border: 1px solid rgba(var(--primary-rgb),.28);
  color: var(--accent);
}
.error {
  background: rgba(200,0,0,.07);
  border: 1px solid rgba(200,0,0,.18);
  color: #7a1010;
}

/* ── Contact form success state (after submit) ── */
.contact-success-state {
  display: none;
  max-width: 640px;
  margin: 0 auto;
  /* same box styling as the form */
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 48px 32px;
  text-align: center;
}
.contact-section.section-light .contact-success-state {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.06);
  backdrop-filter: none;
}
.contact-success-icon  { font-size: 52px; margin-bottom: 14px; line-height: 1; }
.contact-success-title { font-size: clamp(20px, 3vw, 26px); font-weight: 800; margin: 0 0 12px; }
.contact-success-text  { font-size: 15px; line-height: 1.7; margin: 0; }
/* Erfolgstext folgt derselben Logik wie die übrigen Formulartexte (Labels):
   standardmäßig dunkel, nur im Glas-Modus weiß. */
.contact-success-title { color: var(--accent); }
.contact-success-text  { color: var(--muted); }
.contact-glass:not(.section-light) .contact-success-title { color: #fff; }
.contact-glass:not(.section-light) .contact-success-text  { color: rgba(255,255,255,.75); }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.foot-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .15s;
}
.foot-links a:hover {
  background: var(--bg-soft);
  color: var(--text);
}
.foot-copy {
  font-size: 12px;
  color: var(--muted);
}
.foot-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

/* ─── Shared: optional background image for dark sections ── */
.dark-section-bg { position: absolute; inset: -1px; z-index: 0; }
.dark-section-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.dark-section-bg-overlay { position: absolute; inset: 0; background: rgba(var(--overlay-rgb, var(--accent-rgb)), var(--overlay-opacity, .78)); }
/* Hintergrundfarbe Türkis */
.section-bg-primary { background: var(--primary) !important; }
/* Wasserzeichen ausblenden (bei Bild oder wenn deaktiviert) */
.section-no-watermark::before { display: none !important; }

/* ─── Audio Section ──────────────────────────────────────── */
.audio-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0;
  background: var(--accent);
}
.audio-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .15;
  pointer-events: none;
}
.audio-section-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.audio-section-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.audio-section-logo img { height: 36px; width: auto; }
.audio-section:not(.section-light) .audio-section-logo img {
  filter: brightness(0) invert(1);
}
.audio-section-label,
.audio-section-title,
.audio-section-text {
  max-width: 680px;
}
/* section-label/title/sub on dark audio bg */
.audio-section:not(.section-light) .section-label { color: rgba(255,255,255,.55); }
.audio-section:not(.section-light) .section-title { color: #fff; }
.audio-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.70); }
.audio-section-label { color: rgba(255,255,255,.55) }
.audio-section-title {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #fff;
}
.audio-section-text {
  margin: 0 0 32px;
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
}

/* Player wrapper — full section width with symmetric padding */
.audio-section-player-wrap {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  margin-top: 32px;
  box-sizing: border-box;
}

/* Player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 60px;
  padding: 12px 24px 12px 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.audio-player--empty {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  border-radius: 8px;
  padding: 12px 20px;
}
.audio-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(var(--primary-rgb),.45);
}
.audio-play-btn:hover { background: var(--primary-dark); transform: scale(1.07); box-shadow: 0 4px 18px rgba(var(--primary-rgb),.6); }
.audio-play-btn svg { width: 24px; height: 24px; fill: #fff; }
.audio-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.ap-cur, .ap-dur {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  letter-spacing: .4px;
  min-width: 32px;
  font-variant-numeric: tabular-nums;
}
.ap-dur { text-align: right; }
.audio-progress-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.18);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}
.audio-progress-wrap:hover { height: 8px; }
.audio-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 6px;
  width: 0%;
  transition: width .1s linear;
}
.audio-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
  pointer-events: none;
  transition: left .1s linear;
}
.audio-progress-wrap:not(:hover) .audio-progress-thumb { opacity: 0; }

/* ── audio.audio-hero (Seitenbanner-Stil) ────────────────── */
.audio-section.audio-hero {
  margin: 12px 12px 0;
  border-radius: 24px;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 0;
}
.audio-section.audio-hero .audio-section-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px clamp(24px, 5%, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.audio-section.audio-hero .audio-section-label {
  display: inline-block !important;
  width: fit-content;
  max-width: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb),.18);
  border: 1px solid rgba(var(--primary-rgb),.32);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.audio-section.section-bg-primary.audio-hero .audio-section-label {
  color: var(--accent) !important;
  background: rgba(var(--accent-rgb),.12);
  border-color: rgba(var(--accent-rgb),.22);
}
.audio-section.audio-hero .audio-section-title {
  max-width: none;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin: 10px 0 12px;
}
.audio-section.audio-hero .audio-section-text {
  max-width: none;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.80);
  line-height: 1.55;
  margin: 0 0 28px;
}
.audio-section.audio-hero .audio-player {
  width: 100%;
  max-width: none;
}
.audio-section.audio-hero .audio-section-logo {
  justify-content: flex-start;
}
.audio-section.audio-hero .dark-section-bg-overlay {
  background: rgba(var(--overlay-rgb, var(--accent-rgb)), var(--overlay-opacity, .60));
}
.audio-section.audio-hero:not(:has(.dark-section-bg)) {
  background: linear-gradient(160deg, rgba(var(--accent-rgb),.95) 0%, var(--accent) 100%);
}
.audio-section.audio-hero.section-light:not(:has(.dark-section-bg)) {
  background: #fff;
}
.audio-section.audio-hero.section-light.section-bg-soft:not(:has(.dark-section-bg)) {
  background: var(--bg-soft) !important;
}
.audio-section.audio-hero.section-light .audio-section-title {
  color: var(--accent);
}
.audio-section.audio-hero.section-light .audio-section-text {
  color: var(--muted);
}
.audio-section.audio-hero.section-bg-primary:not(:has(.dark-section-bg)) {
  background: var(--primary) !important;
}
.audio-section.audio-hero.section-bg-primary .audio-section-title {
  color: #fff;
}
.audio-section.audio-hero.section-bg-primary .audio-section-text {
  color: rgba(255,255,255,.80);
}
@media (max-width: 768px) {
  .audio-section.audio-hero { margin: 8px 8px 0; border-radius: 20px; min-height: 320px; }
  .audio-section.audio-hero .audio-section-content { padding: 56px 24px; }
}

/* ─── Feedback Section ────────────────────────────────────── */
.feedback-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0;
  background: var(--accent);
}
.feedback-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .20;
  pointer-events: none;
}
.feedback-section .container {
  position: relative;
  z-index: 2;
}
.feedback-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.feedback-section:not(.section-light) .section-title { color: #fff; font-size: clamp(20px,3vw,28px); }
.feedback-section .section-title { font-size: clamp(20px,3vw,28px); }

/* Carousel wrapper */
.fb-carousel {
  overflow: hidden;
  position: relative;
}
.fb-track {
  display: flex;
  gap: 14px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Individual card – 1/3 width (desktop), full width (mobile) */
/* Kein Glas: weiße Karten (Standard) */
.fb-item {
  flex: 0 0 calc((100% - 28px) / 3);
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb),.10);
  border-radius: 14px;
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.08);
  backdrop-filter: none;
}

@media (max-width: 599px) {
  .fb-item { flex: 0 0 100%; }
}

/* Glas: semitransparent */
.feedback-glass:not(.section-light) .fb-item {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Texte: Standard dunkel, Glas weiß */
.fb-item-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
}
.feedback-glass:not(.section-light) .fb-item-stars { color: rgba(255,255,255,.75); }
.fb-item-bereich {
  font-size: 11px;
  color: var(--muted);
}
.feedback-glass:not(.section-light) .fb-item-bereich { color: rgba(255,255,255,.42); }
.fb-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.feedback-glass:not(.section-light) .fb-item-name { color: rgba(255,255,255,.90); }
.fb-item-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feedback-glass:not(.section-light) .fb-item-text { color: rgba(255,255,255,.75); }
.fb-more {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}

/* Controls */
.fb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.fb-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}
.fb-arrow:hover { background: rgba(255,255,255,.18) }
.fb-dots {
  display: flex;
  gap: 6px;
}
.fb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.fb-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ─── Newsletter Signup Section ─────────────────────────── */
.nl-signup-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0;
  background: var(--accent);
  text-align: center;
}
.nl-signup-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .15;
  pointer-events: none;
}
.nl-signup-section .container { position: relative; z-index: 2; }
/* section-label/title/sub on dark nl-signup bg */
.nl-signup-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.nl-signup-section:not(.section-light) .section-title { color: #fff; }
.nl-signup-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.70); }

/* Form card – weiß (Standard, kein Glas) */
.nl-signup-section .nl-signup-card {
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb),.10);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 28px rgba(var(--accent-rgb),.13);
  backdrop-filter: none;
}

/* Glas-Effekt */
.nl-glass:not(.section-light) .nl-signup-card {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Two-col input row */
.nl-signup-form {
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}
.nl-signup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 540px) { .nl-signup-row { grid-template-columns: 1fr; } }

/* Inputs – dark text on white card (Standard) */
.nl-signup-form input[type="text"],
.nl-signup-form input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 11px;
  border: 1.5px solid rgba(var(--accent-rgb),.15);
  background: var(--bg-soft);
  color: var(--accent);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.nl-signup-form input[type="text"]::placeholder,
.nl-signup-form input[type="email"]::placeholder { color: var(--muted); }
.nl-signup-form input[type="text"]:focus,
.nl-signup-form input[type="email"]:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.12);
}

/* Inputs – glass look (nur bei nl-glass) */
.nl-glass:not(.section-light) .nl-signup-form input[type="text"],
.nl-glass:not(.section-light) .nl-signup-form input[type="email"] {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  color: #fff;
}
.nl-glass:not(.section-light) .nl-signup-form input[type="text"]::placeholder,
.nl-glass:not(.section-light) .nl-signup-form input[type="email"]::placeholder { color: rgba(255,255,255,.40); }
.nl-glass:not(.section-light) .nl-signup-form input[type="text"]:focus,
.nl-glass:not(.section-light) .nl-signup-form input[type="email"]:focus {
  border-color: rgba(var(--primary-rgb),.8);
  background: rgba(255,255,255,.13);
  box-shadow: none;
}

/* Checkbox container */
.nl-signup-checks { margin-bottom: 20px; text-align: left; }

/* Checkbox – weißer Text nur bei Glas (dunkler Hintergrund) */
.nl-glass:not(.section-light) .nl-dark-check { color: rgba(255,255,255,.80) !important; }
.nl-glass:not(.section-light) .nl-dark-check a { color: rgba(255,255,255,.80) !important; text-decoration: underline; }
.nl-glass:not(.section-light) .nl-dark-check a:hover { color: #fff !important; }
/* Standard (weißes Karte): dunkler Text */
.nl-signup-section:not(.nl-glass) .nl-dark-check,
.nl-signup-section.section-light .nl-dark-check { color: var(--text) !important; }
.nl-signup-section:not(.nl-glass) .nl-dark-check a,
.nl-signup-section.section-light .nl-dark-check a { color: var(--primary) !important; }
.nl-signup-section:not(.nl-glass) .nl-dark-check a:hover,
.nl-signup-section.section-light .nl-dark-check a:hover { color: var(--accent) !important; }

/* Submit button */
.nl-signup-btn {
  width: 100%;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
}
.nl-signup-btn:hover  { background: var(--primary-dark); transform: translateY(-1px); }
.nl-signup-btn:active { transform: translateY(0); }
.nl-signup-section.section-bg-primary .nl-signup-btn {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nl-signup-section.section-bg-primary .nl-signup-btn:hover { background: rgba(255,255,255,.25); }

/* Error */
.nl-signup-error {
  background: rgba(184,0,0,.18);
  border-left: 3px solid #f87;
  color: #ffb3b3;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  text-align: left;
}

/* State screens */
.nl-signup-state { max-width: 520px; margin: 0 auto; padding: 16px 0; }
.nl-signup-state-icon  { font-size: 52px; margin-bottom: 12px; line-height: 1; }
.nl-signup-state-title { color: #fff; font-size: clamp(20px,3vw,26px); font-weight: 800; margin: 0 0 12px; }
.nl-signup-state-text  { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.7; margin: 0; }

/* ─── Fragebogen Section (Mehrschritt-Formular) ──────────── */
.fragebogen-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0;
  background: var(--accent);
  text-align: center;
}
.fragebogen-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .15;
  pointer-events: none;
}
.fragebogen-section .container { position: relative; z-index: 2; }
.fragebogen-section.section-light { background: var(--bg); }
.fragebogen-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.fragebogen-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }

/* ── Card ── */
.frbg-container { max-width: 600px; margin: 0 auto; }
.frbg-card {
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb),.10);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 28px rgba(var(--accent-rgb),.13);
  backdrop-filter: none;
}
.fragebogen-section.frbg-glass:not(.section-light) .frbg-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Typography ── */
.frbg-headline {
  font-size: clamp(20px,3vw,26px);
  font-weight: 800;
  margin: 4px 0 8px;
  color: var(--accent);
}
.frbg-text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--muted);
}
.fragebogen-section.frbg-glass:not(.section-light) .frbg-headline { color: #fff; }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-text     { color: rgba(255,255,255,.72); }
.frbg-multi-hint { font-size: 12px; opacity: .65; margin: -6px 0 14px; }

/* ── Progress bar ── */
.frbg-progress {
  height: 8px;
  background: rgba(var(--accent-rgb),.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
}
.fragebogen-section.frbg-glass:not(.section-light) .frbg-progress { background: rgba(255,255,255,.15); }
.frbg-progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 350ms ease;
}

/* ── Fields ── */
.frbg-field { text-align: left; margin: 14px 0; }
.frbg-label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; color: var(--accent); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-label { color: rgba(255,255,255,.85); }

.frbg-input,
.frbg-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.frbg-input::placeholder, .frbg-textarea::placeholder { color: var(--muted); }
.frbg-input:focus, .frbg-textarea:focus {
  border-color: var(--primary);
  background: var(--bg);
}
.frbg-textarea { min-height: 100px; resize: vertical; text-align: left; }

.fragebogen-section.frbg-glass:not(.section-light) .frbg-input,
.fragebogen-section.frbg-glass:not(.section-light) .frbg-textarea {
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  color: #fff;
}
.fragebogen-section.frbg-glass:not(.section-light) .frbg-input::placeholder,
.fragebogen-section.frbg-glass:not(.section-light) .frbg-textarea::placeholder { color: rgba(255,255,255,.40); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-input:focus,
.fragebogen-section.frbg-glass:not(.section-light) .frbg-textarea:focus {
  border-color: rgba(var(--primary-rgb),.8);
  background: rgba(255,255,255,.13);
}

/* ── Consent checkbox (reuse .funnel-check, dark override) ── */
.frbg-check { margin: 14px 0 4px; }
.frbg-check.funnel-check { color: var(--muted); }
.frbg-check.funnel-check a { color: var(--primary); text-decoration: none; }
.frbg-check.funnel-check a:hover { color: var(--primary-dark); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-check.funnel-check { color: rgba(255,255,255,.80); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-check.funnel-check a { color: rgba(255,255,255,.85); text-decoration: underline; }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-check.funnel-check a:hover { color: #fff; }

/* ── Buttons ── */
.frbg-actions { display: flex; justify-content: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.frbg-btn {
  padding: 13px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  transition: background .2s, transform .15s, color .2s, border-color .2s;
  letter-spacing: .01em;
}
.frbg-btn-primary { background: var(--primary); color: #fff; }
.frbg-btn-primary:hover  { background: var(--primary-dark); transform: translateY(-1px); }
.frbg-btn-primary:active { transform: translateY(0); }
.fragebogen-section.section-bg-primary .frbg-btn-primary {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.fragebogen-section.section-bg-primary .frbg-btn-primary:hover { background: rgba(255,255,255,.25); }

.frbg-btn-secondary {
  background: rgba(var(--accent-rgb),.06);
  color: var(--accent);
  border: 1.5px solid var(--line);
}
.frbg-btn-secondary:hover { background: rgba(var(--accent-rgb),.10); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-btn-secondary {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.18);
}
.fragebogen-section.frbg-glass:not(.section-light) .frbg-btn-secondary:hover { background: rgba(255,255,255,.14); }

/* ── Preset toggle pills ── */
.frbg-toggles { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 6px 0 8px; }
.frbg-toggle {
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  border-radius: 20px;
  padding: 10px 16px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.frbg-toggle:hover { transform: translateY(-1px); border-color: var(--primary); }
.frbg-toggle.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-toggle {
  border: 1.5px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}
.fragebogen-section.frbg-glass:not(.section-light) .frbg-toggle:hover { border-color: rgba(255,255,255,.4); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-toggle.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Steps & animation ── */
.frbg-step { display: none; opacity: 0; transform: translateY(10px); }
.frbg-step.is-active { display: block; opacity: 1; transform: translateY(0); }
.frbg-step.is-anim-in  { animation: frbgFadeIn 420ms ease forwards; }
.frbg-step.is-anim-out { animation: frbgFadeOut 350ms ease forwards; }
@keyframes frbgFadeIn  { to { opacity: 1; transform: translateY(0); } }
@keyframes frbgFadeOut { to { opacity: 0; transform: translateY(-6px); } }

/* ── Status messages ── */
.frbg-status { margin-top: 14px; font-size: 14px; min-height: 1.4em; }
.frbg-status-error,
.frbg-status.is-error { color: #d9534f; }
.frbg-status.is-ok    { color: var(--primary); }
.fragebogen-section.frbg-glass:not(.section-light) .frbg-status-error,
.fragebogen-section.frbg-glass:not(.section-light) .frbg-status.is-error { color: #ffb3b3; }

/* ─── Statement Section ──────────────────────────────────── */
.statement-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--accent);
}
.statement-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.statement-img {
  position: absolute;
  inset: 0;
}
.statement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--overlay-rgb, var(--accent-rgb)), var(--overlay-opacity, .72));
}
.statement-content {
  position: relative;
  z-index: 3;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: 780px;
}
.statement-eyebrow {
  display: block;
  margin: 0 0 20px;
}
.statement-eyebrow img {
  height: 22px;
  width: auto;
  display: block;
  opacity: .85;
}
.statement-headline {
  margin: 0 0 20px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
}
.statement-text {
  margin: 0 0 32px;
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 52ch;
}
.statement-section.section-light {
  background: #fff;
}
.statement-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.statement-section.section-light::before {
  opacity: .05;
}
.statement-section.section-light .statement-headline {
  color: var(--accent);
}
.statement-section.section-light .statement-text {
  color: var(--muted);
}
.statement-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .statement-headline {
  color: var(--accent) !important;
}
.statement-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .statement-text {
  color: var(--muted) !important;
}
.statement-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .statement-eyebrow img {
  filter: none !important;
  opacity: .9;
}
.statement-section:not(.section-light) .statement-eyebrow img {
  filter: brightness(0) invert(1);
}
.statement-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .statement-eyebrow img {
  filter: none !important;
  opacity: .9;
}
.statement-section.section-light .statement-eyebrow img {
  filter: none;
  opacity: .9;
}
.statement-section.section-light .btn.ghost {
  border-color: rgba(var(--accent-rgb),.30);
  color: var(--accent);
  background: transparent;
  backdrop-filter: none;
}
.statement-section.section-light .btn.ghost:hover {
  background: rgba(var(--accent-rgb),.07);
  border-color: rgba(var(--accent-rgb),.55);
}
.statement-section.section-bg-primary .statement-headline {
  color: #fff;
}
.statement-section.section-bg-primary .statement-text {
  color: rgba(255,255,255,.78);
}

@media (min-width: 940px) {
  .statement-section { min-height: 480px }
}

/* ─── Feedback Modal ─────────────────────────────────────── */
.fb-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fb-modal[hidden] { display: none }
.fb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--accent-rgb),.70);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fb-modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 22px;
  padding: 36px 32px 30px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(var(--accent-rgb),.30);
}
.fb-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.fb-modal-close:hover { background: var(--line) }
.fb-modal-stars {
  font-size: 22px;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.fb-modal-area {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.fb-modal-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.fb-modal-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  margin: 12px 12px 0;
  border-radius: 24px;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px clamp(24px, 5%, 80px);
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.page-hero-content h1 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
}

/* page-hero variants */
.page-hero.page-hero--full { margin: 0; border-radius: 0; }
.page-hero.page-hero-primary {
  background: var(--primary);
}
.page-hero.page-hero-light {
  background: #fff;
  min-height: 0;
}
.page-hero.page-hero-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.page-hero.page-hero-light .page-hero-content h1 { color: var(--accent); }
.page-hero.page-hero-light .hero-label {
  color: var(--primary);
  background: rgba(var(--primary-rgb),.12);
  border-color: rgba(var(--primary-rgb),.25);
}
.page-hero.page-hero-light .hero-lead { color: var(--muted); }
.page-hero.page-hero-light .pod-platform-btn {
  color: var(--primary);
  background: none;
}
.page-hero.page-hero-light .pod-platform-btn:hover {
  color: var(--accent);
}

/* ─── About Split ────────────────────────────────────────── */
.about-split-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0;
  background: var(--bg);
}
.about-split-section::before,
.text-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .08;
  pointer-events: none;
}
.about-split-section > .container,
.text-section > .container {
  position: relative;
  z-index: 2;
}
.about-split-section:not(.section-light) { background: var(--accent); }
.about-split-section:not(.section-light) .section-label,
.text-section:not(.section-light) .section-label { color: rgba(255,255,255,.62); }
.about-split-section:not(.section-light) .about-split-text h2,
.about-split-section:not(.section-light) .about-split-header h2,
.text-section:not(.section-light) .section-title { color: #fff; }
.about-split-section:not(.section-light) .about-split-paras p,
.text-section:not(.section-light) .text-section-content { color: rgba(255,255,255,.78) !important; }
.text-section:not(.section-light) .text-section-content h2,
.text-section:not(.section-light) .text-section-content h3 { color: #fff; }
.text-section:not(.section-light) .text-section-content strong { color: var(--primary); }
.text-section:not(.section-light) .text-section-content a { color: rgba(255,255,255,.88); }
.about-split-section:not(.section-light) .about-split-text .btn { color: #fff; }

/* Text-Section: heller Hintergrund (Overlay aus, ohne Glas) → Inhalt dunkel lesbar */
.text-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .text-section-content { color: var(--muted) !important; }
.text-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .text-section-content h2,
.text-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .text-section-content h3 { color: var(--accent) !important; }
.text-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .text-section-content strong { color: var(--primary) !important; }
.text-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .text-section-content a { color: var(--primary) !important; }
/* Glas-Panel + Overlay aus (glass-bright): fett bleibt primary */
.text-section.section-glass-bright .text-section-content strong { color: var(--primary) !important; }

/* Overlay ausblenden: Texte dunkel NUR bei heller Hintergrundfarbe (weiß/soft).
   Bei dunkler/Primary-Hintergrundfarbe bleibt die Schrift weiß. */
.about-split-section.section-no-overlay.about-split-lightbg .section-label { color: var(--primary) !important; }
.about-split-section.section-no-overlay.about-split-lightbg .about-split-text h2,
.about-split-section.section-no-overlay.about-split-lightbg .about-split-header h2 { color: var(--accent) !important; }
.about-split-section.section-no-overlay.about-split-lightbg .about-split-paras p { color: var(--muted) !important; }
.about-split {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-split--title-top { align-items: start; }
.about-split-text p.section-label { margin-bottom: 10px }
.about-split-text h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: var(--accent);
}
.about-split-paras p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}
.about-split-paras p:last-child { margin-bottom: 0 }
/* Rich-Text-Elemente (wie Split Block): Überschriften, Listen, fett, kursiv, Links */
.about-split-paras h2, .about-split-paras h3 { color: var(--accent); font-weight: 800; line-height: 1.25; margin: 26px 0 12px; }
.about-split-paras h2 { font-size: clamp(20px, 2.6vw, 26px); }
.about-split-paras h3 { font-size: clamp(17px, 2vw, 21px); }
.about-split-paras > :first-child { margin-top: 0; }
.about-split-paras ul, .about-split-paras ol { list-style: none; padding-left: 0; margin: 0 0 16px; }
.about-split-paras li { position: relative; padding: 4px 0 4px 24px; line-height: 1.7; color: var(--muted); }
.about-split-paras ul > li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
/* Pro Liste wählbarer Marker (Pfeil / Punkt / Haken) */
.about-split-paras ul.sb-list--arrow > li::before { content: '→'; width: auto; height: auto; background: none; border-radius: 0; top: auto; }
.about-split-paras ul.sb-list--check > li::before { content: '✓'; width: auto; height: auto; background: none; border-radius: 0; top: auto; }
.about-split-paras ul.sb-list--dot > li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); top: .62em; }
.about-split-section.section-bg-primary .about-split-paras ul > li::before,
.about-split-section.section-bg-primary .about-split-paras ol > li::before { color: #fff; }
.about-split-section.section-bg-primary .about-split-paras ul.sb-list--dot > li::before { background: #fff; }
.about-split-paras ol { counter-reset: as-ol; }
.about-split-paras ol > li { counter-increment: as-ol; }
.about-split-paras ol > li::before { content: counter(as-ol) '.'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.about-split-paras strong { color: var(--primary); font-weight: 800; }
.about-split-paras em { color: var(--primary); font-style: italic; }
.about-split-paras a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.about-split-section.section-bg-primary .about-split-paras strong { color: #fff; }
/* Dunkler Hintergrund */
.about-split-section:not(.section-light) .about-split-paras h2,
.about-split-section:not(.section-light) .about-split-paras h3 { color: #fff; }
.about-split-section:not(.section-light) .about-split-paras li { color: rgba(255,255,255,.78); }
.about-split-section:not(.section-light) .about-split-paras a { color: rgba(255,255,255,.88); }
/* Overlay aus (heller Hintergrund) */
.about-split-section.section-no-overlay.about-split-lightbg .about-split-paras h2,
.about-split-section.section-no-overlay.about-split-lightbg .about-split-paras h3 { color: var(--accent) !important; }
/* H3-Überschriften in Primärfarbe (hell, dunkel, Overlay-aus); auf Türkis weiß */
.about-split-paras h3 { color: var(--primary); }
.about-split-section:not(.section-light) .about-split-paras h3 { color: var(--primary); }
.about-split-section.section-no-overlay.about-split-lightbg .about-split-paras h3 { color: var(--primary) !important; }
.about-split-section.section-bg-primary .about-split-paras h3 { color: #fff; }
.about-split-section.section-no-overlay.about-split-lightbg .about-split-paras li { color: var(--muted) !important; }
.about-split-section.section-no-overlay.about-split-lightbg .about-split-paras a { color: var(--primary) !important; }

/* Intro-Textblock im Haltung-Grid (nutzt RTE-Styles von .about-split-paras,
   eigene Farb-Overrides je Hintergrund, da diese an .about-split-section gebunden sind) */
.haltung-intro { margin: 0 0 34px; max-width: 820px; }
.haltung-section:not(.section-light) .haltung-intro p,
.haltung-section:not(.section-light) .haltung-intro li { color: rgba(255,255,255,.80); }
.haltung-section:not(.section-light) .haltung-intro h2 { color: #fff; }
.haltung-section.section-bg-primary .haltung-intro h3,
.haltung-section.section-bg-primary .haltung-intro strong { color: #fff; }
.haltung-section.section-bg-primary .haltung-intro ul > li::before,
.haltung-section.section-bg-primary .haltung-intro ol > li::before { color: #fff; }
.haltung-section.section-bg-primary .haltung-intro ul.sb-list--dot > li::before { background: #fff; }
/* Heller Glas-/Overlay-aus-Hintergrund: dunkler Fließtext */
.haltung-section.section-no-overlay:not(.section-light) .haltung-intro p,
.haltung-section.section-no-overlay:not(.section-light) .haltung-intro li { color: var(--muted) !important; }

/* Intro-Textblock im Karten-Grid (gleiche RTE-Styles wie Text + Bild) */
.cg-intro { margin: 0 0 30px; max-width: 820px; }
.cg-section:not(.section-light) .cg-intro p,
.cg-section:not(.section-light) .cg-intro li { color: rgba(255,255,255,.80); }
.cg-section:not(.section-light) .cg-intro h2 { color: #fff; }
.cg-section.section-bg-primary .cg-intro h3,
.cg-section.section-bg-primary .cg-intro strong { color: #fff; }
.cg-section.section-bg-primary .cg-intro ul > li::before,
.cg-section.section-bg-primary .cg-intro ol > li::before { color: #fff; }
.cg-section.section-bg-primary .cg-intro ul.sb-list--dot > li::before { background: #fff; }
.cg-section.section-no-overlay:not(.section-light) .cg-intro p,
.cg-section.section-no-overlay:not(.section-light) .cg-intro li { color: var(--muted) !important; }

/* RTE-Text in Intro & Statement (gleiche Einstellungen wie Text + Bild) */
.intro-text.about-split-paras { margin-bottom: 32px; }
.intro-section:not(.section-light) .intro-text.about-split-paras li { color: rgba(255,255,255,.78); }
.intro-section:not(.section-light) .intro-text.about-split-paras h2,
.intro-section:not(.section-light) .intro-text.about-split-paras h3 { color: #fff; }
.intro-section.section-bg-primary .intro-text.about-split-paras strong { color: #fff; }
.intro-section.section-bg-primary .intro-text.about-split-paras ul > li::before,
.intro-section.section-bg-primary .intro-text.about-split-paras ol > li::before { color: #fff; }
.intro-section.section-bg-primary .intro-text.about-split-paras ul.sb-list--dot > li::before { background: #fff; }

.statement-text.about-split-paras { max-width: 52ch; }
.statement-section:not(.section-light) .statement-text.about-split-paras p,
.statement-section:not(.section-light) .statement-text.about-split-paras li { color: rgba(255,255,255,.78); }
.statement-section:not(.section-light) .statement-text.about-split-paras h2,
.statement-section:not(.section-light) .statement-text.about-split-paras h3 { color: #fff; }
.statement-section.section-light .statement-text.about-split-paras p,
.statement-section.section-light .statement-text.about-split-paras li { color: var(--muted); }
.statement-section.section-bg-primary .statement-text.about-split-paras p { color: rgba(255,255,255,.85); }
.statement-section.section-bg-primary .statement-text.about-split-paras strong { color: #fff; }
.statement-section.section-bg-primary .statement-text.about-split-paras ul > li::before,
.statement-section.section-bg-primary .statement-text.about-split-paras ol > li::before { color: #fff; }
.statement-section.section-bg-primary .statement-text.about-split-paras ul.sb-list--dot > li::before { background: #fff; }
.statement-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .statement-text.about-split-paras p,
.statement-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .statement-text.about-split-paras li { color: var(--muted) !important; }

/* Rich-Text in einzelnen Karten (gleiche RTE-Styles wie Text + Bild) */
.cg-card .about-split-paras { max-width: none; flex: 1; }
.cg-card .about-split-paras p { font-size: 14px; color: #555; margin: 0 0 12px; line-height: 1.65; }
.cg-card .about-split-paras p:last-child { margin-bottom: 0; }
.cg-card .about-split-paras li { font-size: 14px; }
.cg-card .about-split-paras h2 { font-size: 18px; margin: 14px 0 8px; }
.cg-card .about-split-paras h3 { font-size: 16px; margin: 14px 0 8px; }
.cg-glass:not(.section-light) .cg-card .about-split-paras p,
.cg-glass:not(.section-light) .cg-card .about-split-paras li { color: rgba(255,255,255,.80); }
.cg-glass:not(.section-light) .cg-card .about-split-paras h2,
.cg-glass:not(.section-light) .cg-card .about-split-paras h3 { color: #fff; }

.about-split-text .btn { display: inline-flex; margin-top: 32px; }
.about-split-text .about-split-btn--funnel { margin-top: 32px; }
.about-split-img { width: 100% }
.about-split-video { display: block; width: 100%; height: auto; border-radius: 16px; box-shadow: var(--shadow); }
.about-split-video--free { border-radius: 0; box-shadow: none; }
/* Freies Bild/Video optional mit abgerundeten Ecken */
.about-split-img-free.is-rounded,
.about-split-video--free.is-rounded { border-radius: 16px; overflow: hidden; }

/* Kein Bild: wie Intro/Text */
.about-split-text--solo {
  max-width: 720px;
  margin: 0 auto;
}

/* Layout: Überschrift oben, dann Text + Bild */
.about-split-header {
  margin-bottom: 32px;
}
.about-split-header h2 {
  margin: 0 0 0;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: var(--accent);
}

@media (min-width: 760px) {
  .about-split { grid-template-columns: 1fr 1fr }
}

/* ─── Team Photo ──────────────────────────────────────────── */
.team-photo-section {
  padding: 0 0 64px;
  background: var(--bg);
}
.team-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.team-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.about-split-img-free {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.team-img-caption-free {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 8px 0 0;
}
.team-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: linear-gradient(to top, rgba(var(--accent-rgb),.65), transparent);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
}

/* ─── Qualification Cards ────────────────────────────────── */
.qual-name {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.2px;
}
.qual-list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qual-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid var(--line);
}
.qual-list li:last-child { border-bottom: none; }
.qual-list li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}
.sp-list--arrow .qual-list li::before { content: '→'; font-size: 14px; }
.sp-list--dot .qual-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.sp-section.section-bg-primary.sp-list--dot .qual-list li::before {
  background: #fff;
}
.qual-list li strong {
  font-weight: 600;
  color: var(--accent);
}
.qual-list li span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.qual-sub {
  margin: 20px 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Bio Grid ────────────────────────────────────────────── */
.bio-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

/* ─── Haltung ─────────────────────────────────────────────── */
.haltung-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
.haltung-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
}
.haltung-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}
.haltung-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.haltung-note {
  background: rgba(var(--primary-rgb),.10);
  border: 1px solid rgba(var(--primary-rgb),.22);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.haltung-note--center { text-align: center; }
.haltung-note strong { color: var(--accent) }

/* ─── CTA Section ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0;
  background: var(--accent);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .20;
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}
.cta-inner p {
  margin: 0 0 28px;
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.cta-text-html {
  margin: 0 0 28px;
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.cta-text-html > :first-child { margin-top: 0; }
.cta-text-html > :last-child { margin-bottom: 0; }
.cta-section.section-light {
  background: #fff;
}
.cta-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.cta-section.section-light::before {
  opacity: .05;
}
.cta-section.section-light .cta-inner h2 {
  color: var(--accent);
}
.cta-section.section-light .cta-inner p {
  color: var(--muted);
}
.cta-section.section-light .cta-text-html {
  color: var(--muted);
}
.cta-text-html a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-section.section-bg-primary .btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb),.18);
}
.cta-section.section-bg-primary .btn.primary:hover {
  background: var(--accent-dark);
}
.cta-section.section-bg-primary .funnel-cta-btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.cta-section.section-bg-primary .funnel-cta-btn--primary:hover {
  background: rgba(255,255,255,.9);
  color: var(--accent);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.cta-actions--row {
  flex-direction: row;
  flex-wrap: nowrap;
}
.cta-actions--row .funnel-cta-btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 340px;
  padding: 17px 26px;
  font-size: 17px;
  white-space: normal;
}
.cta-actions--stack {
  flex-direction: column;
}
.cta-actions--stack .funnel-cta-btn {
  width: 100%;
  max-width: 420px;
}
.cta-actions .btn.funnel-cta-btn--pulse {
  animation: funnelPulse 1.7s ease-in-out infinite;
}
.cta-actions .btn.funnel-cta-btn--pulse:hover {
  animation: none;
}
@media (max-width: 560px) {
  .cta-actions--row {
    flex-direction: column;
  }
  .cta-actions--row .funnel-cta-btn {
    width: 100%;
    max-width: 100%;
  }
}

/* ─── Popup Overlay ──────────────────────────────────────── */
.site-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(var(--accent-rgb),.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  animation: popupFadeIn .35s ease forwards;
}
.site-popup-backdrop.popup-hidden { display: none }
@keyframes popupFadeIn {
  to { opacity: 1 }
}
.site-popup-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  border-radius: 22px;
  /* horizontal beschneiden (runde Ecken + Hintergrundbild), aber bei zu hohem
     Inhalt vertikal SCROLLEN statt abschneiden – sonst werden die Buttons unten
     in kleinen Vorschau-Fenstern unsichtbar abgeschnitten. */
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--accent);
  isolation: isolate;
  box-shadow: 0 32px 80px rgba(0,10,20,.55);
  transform: translateY(20px);
  animation: popupSlideIn .38s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes popupSlideIn {
  to { transform: translateY(0) }
}
.site-popup-box::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .15;
  pointer-events: none;
}
.site-popup-box.section-no-watermark::before { display: none }
.site-popup-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.site-popup-bg img,
.site-popup-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.site-popup-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--overlay-rgb, var(--accent-rgb)), var(--overlay-opacity, .80));
}
.site-popup-inner {
  position: relative;
  z-index: 2;
  padding: 52px 36px 40px;
  text-align: center;
}
.site-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background .15s;
}
.site-popup-close:hover { background: rgba(255,255,255,.28) }
.site-popup-logo {
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}
.site-popup-logo img {
  height: 22px;
  width: auto;
  opacity: .85;
}
.site-popup-box:not(.section-light) .site-popup-logo img {
  filter: brightness(0) invert(1);
}
.site-popup-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 10px;
}
.site-popup-title {
  margin: 0 0 14px;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: -.3px;
  color: #fff;
  line-height: 1.2;
}
.site-popup-text {
  margin: 0 0 28px;
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
/* Wählbare Textfarbe (aus Markenfarben) – überschreibt hell/dunkel-Automatik */
.popup-txt--white   .site-popup-label, .popup-txt--white   .site-popup-title, .popup-txt--white   .site-popup-text { color: #fff !important; }
.popup-txt--primary .site-popup-label, .popup-txt--primary .site-popup-title, .popup-txt--primary .site-popup-text { color: var(--primary) !important; }
.popup-txt--accent  .site-popup-label, .popup-txt--accent  .site-popup-title, .popup-txt--accent  .site-popup-text { color: var(--accent) !important; }
.popup-txt--muted   .site-popup-label, .popup-txt--muted   .site-popup-title, .popup-txt--muted   .site-popup-text { color: var(--muted) !important; }
/* Textkontur (Umriss) – Dicke (--po-w) & Farbe (--po-c) werden inline gesetzt.
   paint-order: Kontur liegt hinter der Füllung → saubere Kontur, Buchstaben bleiben voll. */
.popup-has-outline .site-popup-title,
.popup-has-outline .site-popup-text,
.popup-has-outline .site-popup-label {
  -webkit-text-stroke: var(--po-w, 0) var(--po-c, #000);
  text-stroke: var(--po-w, 0) var(--po-c, #000);
  paint-order: stroke fill;
}
.site-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
/* Funnel-Stil-Button im Popup an die Box-Breite anpassen */
.site-popup-actions .site-popup-btn--funnel { min-width: 0; max-width: 100%; }
/* Großer Funnel-Button: mehr Abstand zur unteren Kante (Schatten + Pulsieren) */
.site-popup-inner.site-popup-inner--funnelbtn { padding-bottom: 56px; }
@media (max-width: 480px) {
  .site-popup-inner { padding: 48px 22px 32px }
  .site-popup-inner.site-popup-inner--funnelbtn { padding-bottom: 42px }
  .site-popup-actions { flex-direction: column; align-items: stretch }
  .site-popup-actions .btn { text-align: center }
}
/* ─── Popup embedded section ─────────────────────────────── */
.site-popup-box--embed { max-width: 640px; }
.popup-embed { position: relative; z-index: 2; }
.popup-embed > section {
  background: transparent !important;
  min-height: 0 !important;
  padding: 32px 0 28px !important;
  isolation: auto !important;
  overflow: visible !important;
}
.popup-embed > section::before { display: none !important; }
.popup-embed .dark-section-bg,
.popup-embed .freebies-section-overlay { display: none !important; }
.popup-embed .container { padding: 0 28px !important; max-width: none !important; }
/* Newsletter embed */
.popup-embed .nl-signup-card { max-width: none; }
/* Audio embed */
.popup-embed .audio-section-content { padding-top: 32px; padding-bottom: 32px; }
.popup-embed .audio-section-label,
.popup-embed .audio-section-title { text-align: center; max-width: none; }
.popup-embed .audio-section-text  { text-align: left; max-width: none; }
/* Freebies embed */
.popup-embed .freebies-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

/* Contact form dark-mode overrides inside popup */
.popup-embed .contact-section { text-align: center; }
.popup-embed .contact-info { display: none !important; }
.popup-embed .contact-wrap { grid-template-columns: 1fr !important; }
.popup-embed .section-label { color: rgba(255,255,255,.55) !important; }
.popup-embed .section-title { color: #fff !important; text-align: center; }
.popup-embed .section-sub   { color: rgba(255,255,255,.70) !important; text-align: center; margin: 0 auto 28px !important; }
.popup-embed form {
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.15) !important;
  box-shadow: none !important;
  text-align: left;
}
.popup-embed label { color: rgba(255,255,255,.85) !important; }
.popup-embed input:not([type=checkbox]),
.popup-embed textarea {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.20) !important;
  color: #fff !important;
}
.popup-embed input:not([type=checkbox]):focus,
.popup-embed textarea:focus {
  border-color: var(--primary) !important;
  background: rgba(255,255,255,.18) !important;
}
.popup-embed input::placeholder,
.popup-embed textarea::placeholder { color: rgba(255,255,255,.40) !important; }
.popup-embed .consent-label,
.popup-embed .consent-label .small { color: rgba(255,255,255,.65) !important; }
.popup-embed .consent-label a { color: var(--primary) !important; }
.popup-embed .form-actions .small { color: rgba(255,255,255,.55) !important; }
.popup-embed .success { color: #7fffcc !important; }
.popup-embed .error   { color: #ff9898 !important; }

@media (max-width: 480px) {
  .popup-embed .container { padding: 0 16px !important; }
}

/* ─── Desktop ─────────────────────────────────────────────── */
@media (min-width: 768px) {
  .row { grid-template-columns: 1fr 1fr }
}

@media (min-width: 940px) {
  .container { padding: 0 32px }
  .hero-banner { margin: 16px 16px 0; border-radius: 28px }
  .hero-banner.hero-banner--full { margin: 0; border-radius: 0; }

  nav.desktop {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .hamburger { display: none }
  .drawer { display: none !important }

  .sp-grid { grid-template-columns: repeat(3, 1fr) }
  .sp-grid.sp-grid--4 { grid-template-columns: repeat(4, 1fr) }
  .bio-grid { grid-template-columns: repeat(2, 1fr) }
  .haltung-grid { grid-template-columns: repeat(3, 1fr) }
  .fb-grid { grid-template-columns: repeat(3, 1fr) }
  .page-hero { margin: 16px 16px 0; border-radius: 28px }
  .page-hero.page-hero--full { margin: 0; border-radius: 0; }

  .contact-wrap { grid-template-columns: 1fr 1.6fr }
  .contact-section--no-steps .contact-wrap { grid-template-columns: 1fr !important; }

  .foot-links { justify-content: flex-end }
}

/* ─── Podcast ─────────────────────────────────────────────── */

/* ─── Podcast ─────────────────────────────────────────────── */

/* Platform badges in hero */
.pod-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pod-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  border: none;
  background: none;
  color: rgba(255,255,255,.80);
  font-weight: 600;
  font-size: 14px;
  transition: color .15s;
  text-decoration: none;
}
.pod-platform-btn:hover { color: #fff; }
.pod-platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .85 }
.pod-platform-btn:hover svg { opacity: 1 }

/* Platforms bar (used by core-podcast section, below the hero) */
.pod-platforms-bar {
  background: var(--accent);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pod-platforms-bar .pod-platforms { margin-top: 0; }

/* Featured episode */
.pod-featured-section {
  padding: 64px 0;
  background: var(--bg-soft);
}
.pod-featured-card {
  display: flex;
  gap: 36px;
  align-items: stretch;
  margin-top: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.pod-featured-cover {
  flex-shrink: 0;
  width: 240px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  align-self: flex-start;
  background: var(--bg-soft);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),.12);
}
.pod-featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pod-featured-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Episode meta line */
.pod-ep-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}

/* Episode title */
.pod-ep-title {
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -.3px;
}

/* Description */
.pod-desc-wrap { margin: 0 0 8px; flex: 1; }
.pod-ep-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.pod-ep-desc--list { font-size: 14px; }
.pod-ep-desc.pod-ep-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.pod-ep-desc p { margin: 0 0 .5em; }
.pod-ep-desc p:last-child { margin-bottom: 0; }
.pod-ep-desc a { color: var(--primary); text-decoration: none; }
.pod-ep-desc a:hover { text-decoration: underline; }
.pod-desc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(var(--primary-rgb),.10);
  border: 1.5px solid rgba(var(--primary-rgb),.28);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  line-height: 1;
  transition: background .15s, border-color .15s;
}
.pod-desc-toggle:hover {
  background: rgba(var(--primary-rgb),.18);
  border-color: rgba(var(--primary-rgb),.45);
}

/* Episode list */
.pod-list-section {
  padding: 64px 0;
  background: var(--bg);
}
.pod-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.pod-ep-card {
  display: flex;
  gap: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  align-items: stretch;
  transition: box-shadow .2s, transform .2s;
}
.pod-ep-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pod-ep-thumb {
  flex-shrink: 0;
  align-self: flex-start;
  width: 220px;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),.12);
}
.pod-ep-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.pod-ep-body h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 6px;
  line-height: 1.3;
}
.pod-ep-body .pod-desc-wrap { margin-bottom: 8px; }

/* Audio player */
.ep-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(var(--primary-rgb),.09);
  border: 1px solid rgba(var(--primary-rgb),.18);
  border-radius: 12px;
}
.ep-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
}
.ep-play-btn:hover { background: var(--accent) }
.ep-play-btn:active { transform: scale(.95) }
.ep-play-btn svg { width: 16px; height: 16px }
.ep-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ep-progress {
  flex: 1;
  height: 4px;
  background: rgba(var(--primary-rgb),.22);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.ep-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}
.ep-time, .ep-duration {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  min-width: 32px;
}

/* Responsive */
@media (max-width: 640px) {
  .pod-featured-card { flex-direction: column; padding: 20px; gap: 20px }
  .pod-featured-cover { width: 100%; max-width: 240px }
  .pod-ep-card { flex-direction: column; gap: 14px }
  .pod-ep-thumb { width: 100%; height: auto; aspect-ratio: 1/1 }
}

/* ─── Podcast on Index ───────────────────────────────────── */
.pod-index-section {
  padding: 64px 0;
  background: var(--bg-soft);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pod-index-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
  display: none;
}
.pod-index-section .container { position: relative; z-index: 2; }
.pod-index-section.pod-index-dark {
  background: var(--accent);
}
.pod-index-section.pod-index-dark::before { display: block; }
.pod-index-section.pod-index-dark .section-label { color: rgba(255,255,255,.55); }
.pod-index-section.pod-index-dark .section-title { color: #fff; }
.pod-index-section.pod-index-dark .pod-index-title { color: #fff; }
.pod-index-section.pod-index-dark .pod-ep-meta  { color: rgba(255,255,255,.55); }
.pod-index-section.pod-index-dark .pod-ep-desc  { color: rgba(255,255,255,.72); }
.pod-index-section.section-light {
  background: #fff;
}
.pod-index-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.pod-index-section.section-bg-primary::before   { display: block; }
.pod-index-section.section-bg-primary .section-label { color: rgba(255,255,255,.65); }
.pod-index-section.section-bg-primary .section-title { color: #fff; }
.pod-index-section.section-bg-primary .pod-index-title { color: #fff; }
.pod-index-section.section-bg-primary .pod-ep-meta  { color: rgba(255,255,255,.65); }
.pod-index-section.section-bg-primary .pod-ep-desc  { color: rgba(255,255,255,.80); }
.pod-index-section.section-bg-primary .pod-platform-btn       { color: rgba(255,255,255,.80); }
.pod-index-section.section-bg-primary .pod-platform-btn:hover { color: #fff; }
.pod-index-section.section-light .pod-platform-btn            { color: var(--primary); }
.pod-index-section.section-light .pod-platform-btn:hover      { color: var(--accent); }
.pod-index-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pod-index-card {
  display: flex;
  gap: 36px;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
/* Dark/image/primary bg → glassmorphism card */
.pod-index-dark .pod-index-card,
.section-bg-primary .pod-index-card {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Player elements adapt on dark bg */
.pod-index-dark .ep-player,
.section-bg-primary .ep-player {
  background: rgba(255,255,255,.08);
}
.pod-index-dark .ep-time,
.pod-index-dark .ep-duration,
.section-bg-primary .ep-time,
.section-bg-primary .ep-duration {
  color: rgba(255,255,255,.60);
}
.pod-index-dark .ep-progress,
.section-bg-primary .ep-progress {
  background: rgba(255,255,255,.20);
}
.pod-index-cover {
  flex-shrink: 0;
  width: 240px;
  aspect-ratio: 1 / 1;
  align-self: flex-start;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),.12);
}
.pod-index-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pod-index-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.pod-index-title {
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--accent);
  margin: 4px 0 8px;
  line-height: 1.2;
  letter-spacing: -.3px;
}
@media (max-width: 599px) {
  .pod-index-card { flex-direction: column; gap: 20px; padding: 20px }
  .pod-index-cover { width: 100%; max-width: 240px }
}

/* ─── Logos Section ──────────────────────────────────────── */
.logos-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0;
  background: var(--accent);
}
.logos-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
}
.logos-section .container { position: relative; z-index: 2 }
.logos-section-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -.3px;
  color: #fff;
  margin: 0 0 32px;
}
.logos-carousel { overflow: hidden; position: relative }
.logos-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  align-items: center;
}
.logos-item {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}
.logos-item img {
  height: var(--logo-h, 72px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  display: block;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.logos-section.logos-invert .logos-item img { filter: brightness(0) invert(1); }
.logos-section.section-light.logos-invert .logos-item img { filter: none; }
.logos-item:hover img { transform: scale(1.12) }
.logos-item a { display: flex; align-items: center; justify-content: center }
.logos-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 599px) {
  .logos-item { flex: 0 0 100% }
}

/* ─── Blog ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 48px 0;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.blog-card-cover {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .blog-card-cover img { transform: scale(1.04) }
.blog-card-cover-ph { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) }
.blog-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column }
.blog-card-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}
.blog-card-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -.2px;
}
.blog-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.blog-card-desc em {
  color: var(--primary);
}
.blog-card-read {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

/* Article detail */
.blog-article-body { max-width: 760px; margin: 0 auto; padding: 8px 0 40px }
.blog-back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 28px;
  transition: opacity .15s;
}
.blog-back-link:hover { opacity: .7 }
.blog-article-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.blog-article-content h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--accent);
  margin: 36px 0 14px;
  letter-spacing: -.2px;
}
.blog-article-content h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--accent);
  margin: 28px 0 12px;
}
.blog-article-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 18px;
}
.blog-article-content ul, .blog-article-content li {
  padding-left: 0;
  list-style: none;
}
.blog-article-content li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  padding: 6px 0 6px 22px;
  position: relative;
}
.blog-article-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.blog-article-content a { color: var(--primary); }
.blog-article-content strong { color: var(--primary) }
.blog-article-content em { color: var(--primary); }

/* ── Text section (RTE output) ──────────────────────────────── */
.text-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0;
  background: var(--accent);
}
.text-section.section-light { background: #fff; }
.text-section.section-bg-soft { background: var(--bg-soft) !important; }
.text-section-inner { margin: 0; }
/* Glas-Panel um den Inhalt */
.text-glass:not(.section-light) .text-section-inner {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 40px rgba(0,0,0,.16);
}
.text-glass.section-light .text-section-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(var(--accent-rgb),.08);
}
@media (max-width: 600px) {
  .text-glass:not(.section-light) .text-section-inner,
  .text-glass.section-light .text-section-inner { padding: 26px 20px; }
}
.text-section-content p  { margin: 0 0 18px; }
.text-section-content h2 { font-size: clamp(20px, 2.8vw, 28px); font-weight: 800; color: var(--accent); margin: 32px 0 14px; letter-spacing: -.2px; }
.text-section-content h3 { font-size: clamp(17px, 2.2vw, 22px); font-weight: 800; color: var(--accent); margin: 24px 0 10px; }
.text-section-content ul,
.text-section-content ol  { padding-left: 0; margin: 0 0 18px; list-style: none; }
.text-section-content li  { padding: 5px 0 5px 24px; position: relative; line-height: 1.65; }
.text-section-content ul > li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.text-section-content ol  { counter-reset: rte-ol; }
.text-section-content ol > li { counter-increment: rte-ol; }
.text-section-content ol > li::before { content: counter(rte-ol) '.'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.text-section-content a   { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.text-section-content strong { font-weight: 800; color: var(--primary); }
.text-section.section-bg-primary .text-section-content strong { color: #fff; }
.text-section-content em     { color: var(--primary); font-style: italic; }
.text-section.section-bg-primary .text-section-content em { color: var(--accent); }
.text-section-content p:last-child,
.text-section-content ul:last-child,
.text-section-content ol:last-child { margin-bottom: 0; }

/* ── Split Block section ────────────────────────────────────── */
.split-block-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0;
  background: var(--accent);
}
.split-block-section.section-light { background: #fff; }
.split-block-section.section-bg-soft { background: var(--bg-soft) !important; }
.split-block-section.split-block-square {
  border-radius: 0;
  padding: 0;
}
.split-block-section.split-block-square > .container {
  max-width: none;
  padding: 0;
}
.split-block-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .08;
  pointer-events: none;
}
.split-block-section > .container { position: relative; z-index: 2; }
.split-block-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.split-block-section--single .split-block-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.split-block-style--joined .split-block-grid {
  gap: 0;
}
.split-block-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.split-block-card::before {
  content: '';
  position: absolute;
  inset: -22% -18%;
  z-index: 0;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .065;
  pointer-events: none;
}
.split-block-card--no-watermark::before {
  display: none;
}
.split-block-card-bg--white { background: #fff; }
.split-block-card-bg--soft { background: var(--bg-soft); }
.split-block-card-bg--glass {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.split-block-card-bg--primary { background: var(--primary); }
.split-block-card-bg--dark { background: var(--accent); }
.split-block-square .split-block-card {
  border-radius: 0;
  border: 0;
}
.split-block-rounded.split-block-style--separate .split-block-card {
  border-radius: 18px;
}
.split-block-style--joined .split-block-card {
  border-radius: 0;
  box-shadow: none;
}
.split-block-style--joined .split-block-card + .split-block-card {
  border-left: 0;
}
.split-block-rounded.split-block-style--joined .split-block-card:first-child {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}
.split-block-rounded.split-block-style--joined .split-block-card:last-child {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
.split-block-rounded.split-block-style--joined.split-block-section--single .split-block-card {
  border-radius: 18px;
}
.split-block-section.section-light .split-block-card {
  border-color: rgba(var(--accent-rgb),.10);
  box-shadow: none;
}
.split-block-media {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: rgba(var(--accent-rgb),.08);
}
.split-block-card--media-only .split-block-media {
  flex: 1;
  aspect-ratio: auto;
  min-height: 320px;
}
.split-block-media img,
.split-block-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.split-block-copy {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  align-items: flex-start;
  gap: 16px;
  padding: 30px;
}
.split-block-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}
.split-block-card--dark .split-block-title { color: #fff; }
.split-block-card--light .split-block-title { color: var(--accent); }
.split-block-card--dark .section-label { color: rgba(255,255,255,.62); }
.split-block-card--light .section-label { color: var(--primary); }
.split-block-content {
  line-height: 1.75;
}
/* Funnel-Stil-Button im Split-Block: an schmale Karten anpassbar */
.split-block-copy .split-block-btn--funnel { min-width: 0; max-width: 100%; }

/* Kopfbereich über den Boxen (Label/Überschrift/Text – wie Text + Bild) */
.split-block-header { margin: 0 0 32px; max-width: 880px; }
.split-block-header .section-title { margin: 0 0 14px; }
.split-block-section.section-light .split-block-header .section-label { color: var(--primary); }
.split-block-section.section-light .split-block-header .section-title { color: var(--accent); }
.split-block-section:not(.section-light) .split-block-header .section-label { color: rgba(255,255,255,.62); }
.split-block-section:not(.section-light) .split-block-header .section-title { color: #fff; }
.split-block-section:not(.section-light) .split-block-intro p,
.split-block-section:not(.section-light) .split-block-intro li { color: rgba(255,255,255,.80); }
.split-block-section:not(.section-light) .split-block-intro h2 { color: #fff; }
.split-block-section.section-bg-primary .split-block-intro h3,
.split-block-section.section-bg-primary .split-block-intro strong { color: #fff; }
.split-block-section.section-bg-primary .split-block-intro ul > li::before,
.split-block-section.section-bg-primary .split-block-intro ol > li::before { color: #fff; }
.split-block-section.section-bg-primary .split-block-intro ul.sb-list--dot > li::before { background: #fff; }
.split-block-section.section-no-overlay:not(.section-light) .split-block-intro p,
.split-block-section.section-no-overlay:not(.section-light) .split-block-intro li { color: var(--muted) !important; }
.split-block-card--dark .split-block-content { color: rgba(255,255,255,.78); }
.split-block-card--light .split-block-content { color: var(--muted); }
.split-block-content p { margin: 0 0 18px; }
.split-block-content h2,
.split-block-content h3 {
  margin: 22px 0 10px;
  color: inherit;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}
.split-block-content ul,
.split-block-content ol {
  padding-left: 0;
  margin: 0 0 18px;
  list-style: none;
}
.split-block-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
}
.split-block-content ul > li::before {
  content: '→';
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.75;
}
.split-block-list--dot .split-block-content ul > li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: .68em;
  border-radius: 50%;
  background: var(--primary);
}
.split-block-list--check .split-block-content ul > li::before {
  content: '✓';
  font-size: 15px;
  line-height: 1.75;
}
.split-block-card-bg--primary .split-block-content ul > li::before,
.split-block-card-bg--primary .split-block-content ol > li::before {
  color: #fff;
}
.split-block-list--dot .split-block-card-bg--primary .split-block-content ul > li::before {
  background: #fff;
}

/* Per-Liste wählbarer Marker (überschreibt den Section-Standard) */
.split-block-content ul.sb-list--arrow > li::before {
  content: '→'; width: auto; height: auto; margin-top: 0; border-radius: 0; background: none; color: var(--primary); font-weight: 800; line-height: 1.75;
}
.split-block-content ul.sb-list--dot > li::before {
  content: ''; width: 6px; height: 6px; margin-top: .68em; border-radius: 50%; background: var(--primary);
}
.split-block-content ul.sb-list--check > li::before {
  content: '✓'; width: auto; height: auto; margin-top: 0; border-radius: 0; background: none; color: var(--primary); font-weight: 800; font-size: 15px; line-height: 1.75;
}
.split-block-card-bg--primary .split-block-content ul.sb-list--arrow > li::before,
.split-block-card-bg--primary .split-block-content ul.sb-list--check > li::before { color: #fff; }
.split-block-card-bg--primary .split-block-content ul.sb-list--dot > li::before { background: #fff; }

/* Adressliste (Split-Block / Textblock) */
.sb-address-list { display: flex; flex-direction: column; gap: 18px; margin: 14px 0; }
.sb-address { display: flex; flex-direction: column; gap: 6px; line-height: 1.5; }
.sb-addr-row { display: flex; align-items: flex-start; gap: 9px; }
.sb-addr-lines { display: flex; flex-direction: column; gap: 2px; }
.sb-addr-name { font-weight: 700; }
.sb-address a { text-decoration: none; color: var(--primary); }
.sb-address a:hover { text-decoration: underline; }
.sb-addr-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.split-block-card--dark .sb-addr-name { color: #fff; }
.split-block-card--light .sb-addr-name { color: var(--accent); }
.split-block-content ol { counter-reset: split-block-ol; }
.split-block-content ol > li { counter-increment: split-block-ol; }
.split-block-content ol > li::before {
  content: counter(split-block-ol) '.';
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.75;
}
.split-block-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.split-block-content strong { color: var(--primary); font-weight: 800; }
.split-block-card-bg--primary .split-block-content strong { color: #fff; }
.split-block-content em { color: inherit; font-style: italic; }
.split-block-content p:last-child,
.split-block-content ul:last-child,
.split-block-content ol:last-child { margin-bottom: 0; }
/* Button an die KARTEN-Farbe koppeln (nicht an die Section):
   auf dunklen Karten weiß, auf hellen Karten die Primärfarbe (sonst weiß auf weiß). */
.split-block-card--dark .btn.primary {
  background: #fff;
  color: var(--accent);
}
.split-block-card--dark .btn.primary:hover {
  background: rgba(255,255,255,.88);
  color: var(--accent);
}

/* ── Bildleiste (Badge-Icons / Zertifikate / Logos) ─── */
.split-block-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.split-block-badge-img {
  display: inline-block !important; /* global img { display:block } überschreiben */
  width: auto !important;           /* kein 100%-Füllverhalten */
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
  vertical-align: middle;
}
/* Stufe 1 – Klein */
.split-block-badges--s1 .split-block-badge-img { height: 60px;  }
/* Stufe 2 – Mittel */
.split-block-badges--s2 .split-block-badge-img { height: 100px; }
/* Stufe 3 – Groß */
.split-block-badges--s3 .split-block-badge-img { height: 200px; }

/* ── Bildleiste: Hintergrund-Design-Varianten ──────────────── */

/* ── Glaseffekt: direkt auf jeder Karte (gesetzt via PHP wenn glass_inner) ── */
/* Blur über ::after-Pseudo-Element — robuster als backdrop-filter auf dem Element selbst */
.split-block-card--glass {
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: none !important;
}
.split-block-card--glass::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: inherit;
  pointer-events: none;
}
.split-block-card--glass:hover {
  background: rgba(255,255,255,.16) !important;
  box-shadow: none !important;
}
/* Texte */
.split-block-card--glass .split-block-title   { color: #fff; }
.split-block-card--glass .section-label       { color: rgba(255,255,255,.62); }
.split-block-card--glass .split-block-content { color: rgba(255,255,255,.80); }
.split-block-card--glass .split-block-content strong { color: var(--primary); }
/* Listen-Marker */
.split-block-card--glass .split-block-content ul > li::before,
.split-block-card--glass .split-block-content ol > li::before { color: rgba(255,255,255,.90); }
.split-block-list--dot .split-block-card--glass .split-block-content ul > li::before {
  background: rgba(255,255,255,.90);
  color: transparent;
}
/* Button */
.split-block-card--glass .btn.primary {
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.split-block-card--glass .btn.primary:hover {
  background: rgba(255,255,255,.28);
  color: #fff;
}
/* Hell (weiß / soft) → weiße Box mit Schatten, kein Blur */
.split-block-glass.section-light .split-block-card--glass {
  background: #fff !important;
  border: 1px solid rgba(var(--accent-rgb), .07) !important;
  box-shadow: none !important;
  color: inherit;
}
.split-block-glass.section-light .split-block-card--glass::after {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.split-block-glass.section-light .split-block-card--glass .split-block-title   { color: var(--accent); }
.split-block-glass.section-light .split-block-card--glass .section-label       { color: var(--primary); }
.split-block-glass.section-light .split-block-card--glass .split-block-content { color: var(--muted); }
/* Türkis (primary) Hintergrund */
.split-block-glass.section-bg-primary .split-block-card--glass {
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  box-shadow: none !important;
}

@media (max-width: 820px) {
  .split-block-grid { grid-template-columns: 1fr; }
  .split-block-copy { padding: 24px; }
  .split-block-rounded.split-block-style--joined .split-block-card:first-child {
    border-radius: 18px 18px 0 0;
  }
  .split-block-rounded.split-block-style--joined .split-block-card:last-child {
    border-radius: 0 0 18px 18px;
  }
  .split-block-style--joined .split-block-card + .split-block-card {
    border-left: 1px solid rgba(255,255,255,.18);
    border-top: 0;
  }
  .split-block-style--joined.section-light .split-block-card + .split-block-card {
    border-left-color: rgba(var(--accent-rgb),.10);
  }
}

/* ─── Full Video Section ───────────────────────────────────── */
.full-video-section {
  padding: 100px 0;
  background: var(--accent);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.full-video-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
}
.full-video-section.section-light {
  background: #fff;
}
.full-video-section.section-light.section-bg-soft {
  background: var(--bg-soft) !important;
}
.video-section-player-wrap {
  margin-top: 32px;
}
.video-player-section .audio-section-content + .video-section-player-wrap {
  margin-top: 0;
}
/* Vollflächige (randlose) Darstellung: Player nutzt die volle Breite, keine Seitenränder */
.full-video-section--full .audio-section-player-wrap { padding: 0; }
.full-video-wrap--full { max-width: none; border-radius: 0; }
.full-video-wrap--full .full-video { border-radius: 0; }
.full-video-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  z-index: 2;
}
.full-video,
.full-video-poster {
  width: 100%;
  display: block;
  /* Kein object-fit:cover und kein erzwungenes aspect-ratio –
     das Video zeigt sich in seinem natürlichen Seitenverhältnis ohne Beschnitt */
}

/* ── Video-Untertitel (SRT) ──────────────────────────────── */
.full-video-subs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6%;
  display: flex;
  justify-content: center;
  padding: 0 6%;
  pointer-events: none;
  z-index: 3;
  transition: bottom .2s ease;
}
/* Nur auf Geräten mit echtem Zeiger (Desktop): beim Hover erscheinen die nativen
   Steuerelemente unten – Untertitel anheben, damit sie nicht überlappen (wie YouTube).
   Auf Touch-Geräten bleiben die Untertitel unten (kein Anheben beim Antippen). */
@media (hover: hover) {
  .full-video-wrap:hover .full-video-subs:not(.full-video-subs--below) {
    bottom: calc(6% + 52px);
  }
}
/* Untertitel unterhalb des Videos (statt im Bild).
   Feste Höhe (Platz für 2 Zeilen) → die Sektion springt nicht, wenn Untertitel
   ein-/ausgeblendet werden oder zwischen ein- und zweizeilig wechseln. */
.full-video-subs--below {
  position: static;
  margin: 12px auto 0;
  padding: 0 6%;
  /* Feste Höhe für bis zu 3 Zeilen → kein Springen; oben ausgerichtet →
     der Abstand zum Video bleibt konstant, auch bei 1, 2 oder 3 Zeilen. */
  height: calc(clamp(14px, 2.4vw, 20px) * 4.05 + 16px);
  align-items: flex-start;
  transition: none;
}
.full-video-subs--below .full-video-sub-cue { box-shadow: none; }
.full-video-sub-cue {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: clamp(14px, 2.4vw, 20px);
  line-height: 1.35;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  text-align: center;
  max-width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.full-video-caption {
  max-width: 980px;
  margin: 14px auto 0;
  padding: 0 4px;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  text-align: center;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
.full-video-section.section-light .full-video-caption {
  color: var(--muted);
}

/* Zentrierte Texte im Videoplayer */
.video-player-section--centered .audio-section-content {
  text-align: center;
}
.video-player-section--centered .audio-section-label,
.video-player-section--centered .audio-section-title,
.video-player-section--centered .audio-section-text {
  margin-left: auto;
  margin-right: auto;
}

/* Portrait / 9:16 Hochformat-Modus */
.full-video-wrap--portrait {
  max-width: 400px;
}
/* Kein aspect-ratio-Override nötig – das Video zeigt sein natives 9:16 ohne Beschnitt */
.full-video-section--portrait .full-video-caption {
  max-width: 400px;
}
@media (max-width: 480px) {
  .full-video-wrap--portrait {
    max-width: 100%;
  }
}

/* Blog index section */
.blog-index-section { padding: 64px 0; background: var(--bg-soft); position: relative; isolation: isolate; overflow: hidden; }
.blog-index-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
  display: none;
}
.blog-index-section .container { position: relative; z-index: 2; }
.blog-index-section.section-light { background: #fff; }
.blog-index-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.blog-index-section.section-light .btn.ghost {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  backdrop-filter: none;
}
.blog-index-section.section-light .btn.ghost:hover { background: var(--bg-soft); }
.blog-index-section.blog-index-dark { background: var(--accent); }
.blog-index-section.blog-index-dark::before { display: block; }
.blog-index-section.blog-index-dark .section-label { color: rgba(255,255,255,.55); }
.blog-index-section.blog-index-dark .section-title { color: #fff; }
.blog-index-section.blog-index-dark .btn.ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.blog-index-section.section-bg-primary::before { display: block; }
.blog-index-section.section-bg-primary .section-label { color: rgba(255,255,255,.55); }
.blog-index-section.section-bg-primary .section-title { color: #fff; }
.blog-index-section.section-bg-primary .btn.ghost { border-color: rgba(255,255,255,.4); color: #fff; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr) } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; gap:18px } }

/* ── News ──────────────────────────────────────────────────── */
.news-article {
  padding: 48px 0;
  scroll-margin-top: 96px;
}
.news-article-sep {
  border-top: 1px solid var(--line);
}
.news-article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  max-height: 420px;
}
.news-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-article-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}
.news-article-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 20px;
  letter-spacing: -.3px;
  line-height: 1.25;
}
.news-article-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 16px;
}
.news-article-content a { color: var(--primary); text-decoration: underline; }
.news-article-content strong { color: var(--primary); font-weight: 700; }
.news-article-content em { color: var(--primary); font-style: italic; }

/* News index section on home — carousel */
.news-index-section { padding: 64px 0; background: var(--bg-soft); position: relative; isolation: isolate; overflow: hidden; }
.news-index-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .10;
  pointer-events: none;
  display: none;
}
.news-index-section.news-index-dark { background: var(--accent); }
.news-index-section.news-index-dark::before { display: block; }
.news-index-section.news-index-dark .section-label { color: rgba(255,255,255,.55); }
.news-index-section.news-index-dark .section-title { color: #fff; }
.news-index-section.news-index-dark .btn.ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.news-index-section.section-bg-primary::before { display: block; }
.news-index-section.section-bg-primary .section-label { color: rgba(255,255,255,.55); }
.news-index-section.section-bg-primary .section-title { color: #fff; }
.news-index-section.section-bg-primary .btn.ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.news-index-section .container { position: relative; z-index: 2; }
.news-index-section.section-light { background: #fff; }
.news-index-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.news-index-section.section-light .btn.ghost {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  backdrop-filter: none;
}
.news-index-section.section-light .btn.ghost:hover { background: var(--bg-soft); }
.news-carousel {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  padding: 8px 0 18px;
  margin: -8px 0 -18px;
}
.news-track {
  display: flex;
  gap: 14px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.news-card {
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-card-cover {
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  overflow: hidden;
}
.news-card-cover-ph { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.news-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.news-card:hover .news-card-cover img { transform: scale(1.04); }
.news-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px;
}
.news-card-title {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -.1px;
}
.news-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-desc em {
  color: var(--primary);
}
.news-card-read {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}
.news-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .news-card { flex: 0 0 calc((100% - 14px) / 2); }
}
@media (max-width: 600px) {
  .news-card { flex: 0 0 100%; }
}

/* ─── Glaseffekt News-/Blog-Vorschau (auf dunklem/Bild-/Primary-Hintergrund) ── */
.news-index-glass.news-index-dark .news-card,
.blog-index-glass.blog-index-dark .blog-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.news-index-glass.news-index-dark .news-card-title,
.blog-index-glass.blog-index-dark .blog-card-title { color: #fff; }
.news-index-glass.news-index-dark .news-card-desc,
.blog-index-glass.blog-index-dark .blog-card-desc { color: rgba(255,255,255,.82); }
.news-index-glass.news-index-dark .news-card-date,
.blog-index-glass.blog-index-dark .blog-card-meta { color: rgba(255,255,255,.62); }
.news-index-glass.news-index-dark .news-card-read,
.blog-index-glass.blog-index-dark .blog-card-read { color: #fff; }

/* Blog-Vorschau: dunkle / Primary / Bild-Hintergründe (Kopfbereich lesbar) */
.blog-index-section.section-bg-primary { background: var(--primary); }
.blog-index-section.section-bg-primary::before { display: block; }
.blog-index-dark .section-label { color: rgba(255,255,255,.55); }
.blog-index-dark .section-title { color: #fff; }
.blog-index-dark .section-sub   { color: rgba(255,255,255,.72); }
.blog-index-dark .btn.ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.blog-index-dark .btn.ghost:hover { background: rgba(255,255,255,.12); }

/* ─── Freebies Section ───────────────────────────────────── */
.freebies-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--accent);
  padding: 80px 0;
}
.freebies-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.freebies-section .container { text-align: center; }
.freebies-section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
  text-align: center;
}
.freebies-carousel {
  overflow: hidden;
  position: relative;
}
.freebies-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: flex-start;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  align-items: stretch;
}
.freebies-grid .freebie-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 240px;
  max-width: 360px;
}
.freebies-grid .freebie-card--video {
  flex-basis: min(640px, calc(100% - 20px));
  max-width: 640px;
}
@media (max-width: 768px) {
  .freebies-grid .freebie-card { flex: 0 0 100%; max-width: 100%; }
  .freebies-grid .freebie-card--video { flex-basis: 100%; max-width: 100%; }
}
@media (min-width: 769px) and (max-width: 939px) {
  .freebies-grid .freebie-card { flex: 0 0 calc(50% - 10px); }
  .freebies-grid .freebie-card--video { flex-basis: min(640px, 100%); max-width: 640px; }
}
.freebie-card {
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb),.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background .2s, transform .2s, opacity .18s;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(var(--accent-rgb),.08);
}
.freebie-card--clipped { opacity: 0; pointer-events: none; }
.freebie-card:hover {
  background: #f7fafa;
  transform: none;
}
.freebies-glass:not(.section-light) .freebie-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.freebies-glass:not(.section-light) .freebie-card:hover {
  background: rgba(255,255,255,.11);
}
.freebie-icon {
  font-size: 36px;
  line-height: 1;
}
.freebie-title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--accent);
}
.freebie-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.freebies-glass:not(.section-light) .freebie-title { color: #fff; }
.freebies-glass:not(.section-light) .freebie-text  { color: rgba(255,255,255,.70); }
.freebie-btn {
  display: inline-block;
  align-self: center;
  margin-top: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background .2s;
}
.freebie-btn:hover { background: #fff; color: var(--accent); }

/* ─── Freebie card cover ──────────────────────────────────── */
.freebie-card-cover-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb),.08);
}
.freebie-card-cover-frame--video {
  aspect-ratio: 16 / 9;
}
.freebie-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.freebie-card-cover-frame--video .freebie-card-cover {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.freebie-card-cover--video {
  aspect-ratio: 16 / 9;
}

/* ─── Funnel Page ─────────────────────────────────────────── */
.funnel-cover-top {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 20px;
}
.funnel-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(var(--accent-rgb),.10);
  padding: 36px 32px 32px;
}
.funnel-icon { font-size: 48px; text-align: center; margin-bottom: 8px; }
.funnel-title { font-size: 22px; font-weight: 800; color: var(--accent); text-align: center; margin: 0 0 8px; }
.funnel-text { font-size: 14px; color: var(--muted); text-align: center; margin: 0 0 24px; line-height: 1.65; }
.funnel-form { display: flex; flex-direction: column; gap: 12px; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.funnel-form input[type=text],
.funnel-form input[type=email] {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}
.funnel-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.14); }
.funnel-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; text-align: left; }
.funnel-check input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--primary); cursor: pointer; }
.funnel-check a { color: var(--primary); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-check a { color: var(--primary); }
.funnel-btn {
  padding: 14px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .15s;
  margin-top: 4px;
}
.funnel-btn:hover { background: var(--accent); }
.funnel-error { background: #fde8e8; color: #b80000; padding: 12px 16px; border-radius: 10px; font-size: 13px; text-align: center; }
.funnel-section { background: linear-gradient(160deg, var(--bg-soft) 0%, #e8f4f4 100%); padding: 64px 0; min-height: 70vh; display: flex; align-items: center; }
.funnel-success-section { padding: 48px 0 72px; background: linear-gradient(160deg, var(--bg-soft) 0%, #e8f4f4 100%); min-height: 70vh; display: flex; align-items: center; }
.funnel-success-card { max-width: 560px; margin: 0 auto; background: #fff; border-radius: 24px; box-shadow: 0 16px 56px rgba(var(--accent-rgb),.13); overflow: hidden; }

/* Card header */
.fsc-header { background: var(--accent); padding: 36px 32px 28px; text-align: center; color: #fff; }
.fsc-check { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.fsc-check svg { width: 26px; height: 26px; stroke: #fff; }
.fsc-cover-img { width: 120px; height: 120px; border-radius: 14px; object-fit: cover; border: 3px solid rgba(255,255,255,.25); display: block; margin: 0 auto 16px; box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.fsc-cover-img--video { width: 213px; max-width: 100%; height: 120px; aspect-ratio: 16 / 9; object-fit: contain; }
.fsc-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .75; margin: 0 0 6px; }
.fsc-title { font-size: clamp(20px, 4vw, 26px); font-weight: 800; margin: 0 0 6px; }
.fsc-sub { font-size: 14px; opacity: .78; margin: 0; font-weight: 400; line-height: 1.55; }

/* Card body */
.fsc-body { padding: 28px 32px 32px; text-align: center; }
.funnel-cover { width: 100%; max-width: 340px; border-radius: 14px; margin: 0 auto 24px; display: block; object-fit: cover; box-shadow: 0 6px 24px rgba(var(--accent-rgb),.12); }
.fsc-file-icon { width: 72px; height: 72px; border-radius: 18px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; margin: 4px auto 20px; }
.fsc-file-icon svg { width: 36px; height: 36px; stroke: var(--primary); }
.funnel-audio-wrap { background: var(--bg-soft); border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.funnel-audio-wrap audio { width: 100%; }
.funnel-video-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 20px; background: #000; }
.funnel-download-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 28px; border-radius: 14px;
  background: var(--primary); color: #fff;
  font-size: 16px; font-weight: 800; text-decoration: none;
  transition: background .15s, transform .15s; margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb),.35);
}
.funnel-download-btn:hover { background: var(--accent); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(var(--primary-rgb),.4); }
.fsc-footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.funnel-back-link { font-size: 14px; color: var(--muted); text-decoration: none; }
.funnel-back-link:hover { color: var(--accent); }

/* ─── Live email preview ─────────────────────────────────── */
.email-live-preview {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 0;
  border: 1.5px solid rgba(var(--primary-rgb),.38);
  border-radius: 14px;
  margin-top: 10px;
  background: transparent;
  display: block;
  overflow: hidden;
  transition: height .15s ease;
}

/* ─── Kurstermine Section ────────────────────────────────── */
.kt-section {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 80px 0; background: var(--accent);
}
.kt-section::before {
  content: ''; position: absolute; inset: -20% -12%; z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18; pointer-events: none;
}
.kt-section .container { position: relative; z-index: 2; }
.kt-section.section-no-watermark::before { display: none; }
.kt-section .section-title,
.kt-section .section-label,
.kt-section .section-sub { color: #fff; }
.kt-section.section-light .section-title { color: var(--accent); }
.kt-section.section-light .section-label { color: var(--primary); }
.kt-section.section-light .section-sub   { color: rgba(var(--accent-rgb),.65); }
.kt-section.section-light { background: #fff; }
.kt-section.section-bg-soft { background: var(--bg-soft); }
.kt-section.section-bg-primary { background: var(--primary); }
.kt-section.section-bg-primary .section-title,
.kt-section.section-bg-primary .section-sub,
.kt-section.section-bg-primary .section-label { color: #fff; }
/* grid */
.kt-grid { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.kt-cta-wrap { text-align: center; margin-top: 36px; }
.kt-cta-btn { display: inline-block; padding: 14px 34px; font-size: 16px; font-weight: 800; }
/* card — default: white card (dark bg, primary bg, light bg all get white cards) */
.kt-card {
  background: #fff;
  border: 1.5px solid rgba(var(--accent-rgb),.12);
  border-radius: 18px;
  display: flex; align-items: center; gap: 20px;
  padding: 22px 26px;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb),.07);
  transition: transform .18s, box-shadow .18s;
  position: relative; z-index: 1;
}
.kt-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(var(--accent-rgb),.14); }
.kt-card--warn { border-color: rgba(var(--primary-rgb),.4); }
.kt-card--out  { opacity: .72; }
/* glass effect (dark / primary / image / video): semi-transparent + blur, white text */
.kt-section--glass:not(.section-light) .kt-card {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.kt-section--glass:not(.section-light) .kt-card:hover {
  background: rgba(255,255,255,.14);
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
}
.kt-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.kt-ort-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--primary); background: rgba(var(--primary-rgb),.12);
  border-radius: 999px; padding: 3px 10px; align-self: flex-start;
}
.kt-section--glass:not(.section-light) .kt-ort-badge {
  color: var(--primary); background: rgba(var(--primary-rgb),.22);
}
.kt-card-title { margin: 0; font-size: 17px; font-weight: 800; color: var(--accent); line-height: 1.3; }
.kt-section--glass:not(.section-light) .kt-card-title { color: #fff; }
.kt-card-location, .kt-card-date {
  margin: 0; font-size: 13px; color: rgba(var(--accent-rgb),.65);
  display: flex; align-items: center; gap: 6px; line-height: 1.4;
}
.kt-section--glass:not(.section-light) .kt-card-location,
.kt-section--glass:not(.section-light) .kt-card-date { color: rgba(255,255,255,.72); }
.kt-card-footer {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
  flex-wrap: wrap; justify-content: flex-end;
}
.kt-card-price-col { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.kt-card-strike { font-size: 13px; color: rgba(var(--accent-rgb),.4); text-decoration: line-through; line-height: 1.2; }
.kt-card-price  { font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1.2; }
.kt-card-price-note { font-size: 11px; font-weight: 400; color: rgba(var(--accent-rgb),.55); line-height: 1.3; text-align: right; margin-top: 2px; }
.kt-section--glass:not(.section-light) .kt-card-strike { color: rgba(255,255,255,.5); }
.kt-section--glass:not(.section-light) .kt-card-price  { color: #fff; }
.kt-section--glass:not(.section-light) .kt-card-price-note { color: rgba(255,255,255,.55); }
.kt-card-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.kt-btn-outline {
  display: inline-block; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid rgba(var(--accent-rgb),.35); color: var(--accent) !important;
  background: transparent; font-size: 13px; font-weight: 600;
  text-decoration: none; white-space: nowrap; transition: border-color .15s, background .15s;
}
.kt-btn-outline:hover { border-color: var(--primary); background: rgba(var(--accent-rgb),.05); }
.kt-section--glass:not(.section-light) .kt-btn-outline {
  border-color: rgba(255,255,255,.55); color: rgba(255,255,255,.9) !important;
}
.kt-section--glass:not(.section-light) .kt-btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,.08);
}
.kt-btn {
  display: inline-block; padding: 10px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: #fff !important;
  text-decoration: none; white-space: nowrap; transition: opacity .15s, transform .1s;
}
.kt-btn:hover { opacity: .88; transform: translateY(-1px); }
.kt-btn--seminar, .kt-btn--fast_ausgebucht { background: var(--primary); }
.kt-btn--fast_ausgebucht { background: var(--primary); opacity: .82; }
.kt-btn--warteliste { background: rgba(var(--accent-rgb),.12); color: var(--accent) !important; }
.kt-btn--info { background: var(--bg-soft); border: 1.5px solid rgba(var(--accent-rgb),.2); color: var(--accent) !important; }
.kt-section--glass:not(.section-light) .kt-btn--warteliste { background: rgba(255,255,255,.2); color: rgba(255,255,255,.85) !important; }
.kt-section--glass:not(.section-light) .kt-btn--info { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.9) !important; }
@media (max-width: 640px) {
  .kt-card { flex-direction: column; align-items: stretch; padding: 18px 20px; gap: 14px; }
  .kt-card-footer { justify-content: flex-start; }
  .kt-card-price-col { align-items: flex-start; }
  .kt-card-actions { justify-content: flex-start; }
  .kt-btn, .kt-btn-outline { width: 100%; text-align: center; }
}

/* ─── Products Section ───────────────────────────────────── */
.products-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.products-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.products-section .container { position: relative; z-index: 2; }
.products-section.section-light { background: var(--bg); }
.products-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.products-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.products-section:not(.section-light) .section-title { color: #fff; }
.products-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.products-section.section-light .section-label { color: var(--primary); }
.products-section.section-light .section-title { color: var(--accent); }
.products-section.section-light .section-sub   { color: var(--muted); }
.products-section.section-bg-primary:not(.section-light) .section-label { color: rgba(255,255,255,.65); }
.products-section.section-bg-primary:not(.section-light) .section-title { color: #fff; }

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(var(--accent-rgb),.13);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(var(--accent-rgb),.18); }
.product-card--voucher { border: 2px solid var(--primary); }
.product-card--no-img .product-card-body { padding-top: 22px; }
/* Product image */
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; background: linear-gradient(135deg, rgba(var(--primary-rgb),.12), rgba(var(--accent-rgb),.08)); }
.product-card-badge-wrap { position: absolute; top: 10px; left: 10px; z-index: 2; }
.product-card-badge {
  display: inline-block;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .02em;
  /* Default: on white card body → primary outline */
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
/* Badge over image → white outline */
.product-card-img-wrap .product-card-badge {
  color: #fff;
  border-color: rgba(255,255,255,.85);
}
/* Card body */
.product-card-body { padding: 20px 22px 14px; flex: 1; display: flex; flex-direction: column; }
.product-card-name { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--accent); line-height: 1.3; }
.product-card-desc { margin: 0 0 12px; font-size: 13px; color: #555; line-height: 1.6; }
.product-card-list { margin: 0 0 14px; padding: 0; list-style: none; flex: 1; }
.product-card-list li { font-size: 13px; color: #444; padding: 5px 0 5px 20px; position: relative; border-bottom: 1px solid rgba(var(--accent-rgb),.05); }
.product-card-list li:last-child { border-bottom: none; }
.product-card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
/* Stock badge */
/* .product-card-stock legacy removed – availability now shown above button */
/* Price + button row */
.product-card-footer { padding: 0 22px 22px; display: flex; align-items: flex-end; gap: 12px; }
.product-card-price-col { flex: 1; min-width: 0; }
/* Button column: availability text above button */
.product-card-btn-col { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.product-card-availability {
  font-size: 11px; font-weight: 600; line-height: 1.3;
  text-align: center; opacity: .75;
}
.product-card-availability.pca--low  { color: var(--muted); }
.product-card-availability.pca--out  { color: #a33; }
/* Glass mode: cards are semi-transparent on dark bg */
.products-section--glass:not(.section-light) .product-card-availability.pca--low { color: rgba(255,255,255,.7); opacity: .9; }
.products-section--glass:not(.section-light) .product-card-availability.pca--out { color: #ff9999; opacity: .9; }
.product-card-strike { font-size: 11px; color: #aaa; text-decoration: line-through; display: block; line-height: 1.2; margin-bottom: 2px; }
.product-card-price { font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1; }
.product-card-btn {
  flex-shrink: 0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.product-card-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.product-card-btn:disabled { background: #ccc; color: #999; cursor: not-allowed; transform: none; }
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card-footer { flex-direction: column; align-items: stretch; }
  .product-card-btn { text-align: center; }
}

/* ─── Events / Tickets Section ──────────────────────────── */
.events-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.events-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.events-section.section-no-watermark::before { display: none; }
.events-section .container { position: relative; z-index: 2; }
.events-section.section-light { background: var(--bg); }
.events-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.events-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.events-section:not(.section-light) .section-title { color: #fff; }
.events-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.events-section.section-light .section-label { color: var(--primary); }
.events-section.section-light .section-title { color: var(--accent); }
.events-section.section-light .section-sub   { color: var(--muted); }

/* Grid: mehrere Spalten */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
/* Liste: untereinander, zentriert */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 44px auto 0;
}

/* Ticket-Karte (nur Bild) */
.ev-ticket-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb),.18);
  transition: transform .2s, box-shadow .2s;
}
a.ev-ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(var(--accent-rgb),.28);
}
.ev-ticket-card img { width: 100%; height: auto; display: block; }
.ev-ticket-card--soon { opacity: .82; filter: grayscale(18%); cursor: default; }
.ev-ticket-soon-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 11px; font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  border: 1.5px solid rgba(255,255,255,.4);
  pointer-events: none;
}

@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* ─── Event Info-Card (wie Produkt-Karten) ──────────────────────── */
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.event-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 44px auto 0;
}
.event-info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(var(--accent-rgb),.13);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.event-info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(var(--accent-rgb),.18); }
.event-info-card--soon { opacity: .82; cursor: default; }
.event-info-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
  padding: 16px;
}
.event-info-card-img-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 12px; }
.event-info-card-body { padding: 20px 22px 14px; flex: 1; display: flex; flex-direction: column; }
.event-info-card-name { margin: 0 0 10px; font-size: 18px; font-weight: 800; color: var(--accent); line-height: 1.3; }
.event-info-card-list { margin: 0; padding: 0; list-style: none; flex: 1; }
.event-info-card-list li { font-size: 13px; color: #555; padding: 5px 0; line-height: 1.5; }
.event-info-card-footer {
  padding: 14px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.event-info-card-price { font-size: 18px; font-weight: 800; color: var(--accent); }
.event-info-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.event-info-card:hover .event-info-card-btn { background: var(--primary-dark, var(--accent)); transform: translateX(2px); }

@media (max-width: 600px) {
  .event-cards-grid { grid-template-columns: 1fr; }
  .event-info-card-footer { flex-direction: column; align-items: stretch; }
  .event-info-card-btn { text-align: center; justify-content: center; }
}

/* Glas-Effekt auf dunklem Hintergrund / Bild / Video */
.events-section--glass:not(.section-light) .event-info-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.events-section--glass:not(.section-light) .event-info-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.events-section--glass:not(.section-light) .event-info-card-name  { color: #fff; }
.events-section--glass:not(.section-light) .event-info-card-list li { color: rgba(255,255,255,.8); }
.events-section--glass:not(.section-light) .event-info-card-price { color: #fff; }
.events-section--glass:not(.section-light) .event-info-card-img-wrap { background: rgba(255,255,255,.08); }
.events-section--glass:not(.section-light) .event-info-card-btn {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.events-section--glass:not(.section-light) .event-info-card:hover .event-info-card-btn {
  background: rgba(255,255,255,.25);
}

/* ─── Order Form Section ─────────────────────────────────── */
.order-form-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
  text-align: center;
}
.order-form-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.order-form-section .container { position: relative; z-index: 2; }
.order-form-section.section-light { background: var(--bg); }
/* Heading wrapper */
.order-form-heading { margin-bottom: 0; }
.order-form-heading--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* text lines stay left-aligned within the centered block */
}
/* Preview placeholder (page builder only) */
.order-form-preview-hint {
  text-align: center; padding: 20px; margin-top: 16px;
  border: 1.5px dashed rgba(255,255,255,.3); border-radius: 12px;
  color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5;
}
.order-form-section.section-light .order-form-preview-hint {
  border-color: rgba(var(--accent-rgb),.2); color: var(--muted);
}
.order-form-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.order-form-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.order-form-section:not(.section-light) .section-title { color: #fff; }
.order-form-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.order-form-section.section-light .section-label { color: var(--primary); }
.order-form-section.section-light .section-title { color: var(--accent); }
.order-form-section.section-light .section-sub   { color: var(--muted); }

/* Order form inner – always glass card on dark, white card on light (like nl-signup-card) */
.order-form-inner {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: left;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 32px 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.order-form-section.section-light .order-form-inner {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.12);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.order-form-section.section-light.section-bg-soft .order-form-inner {
  box-shadow: 0 4px 22px rgba(var(--accent-rgb),.08);
}
/* ── Product mini-card selector (sits above the glass card) ─────── */
.order-product-card-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  max-width: 640px; margin: 28px auto 20px;
}
.order-mini-card {
  flex: 0 0 auto; width: 148px;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15);
  border-radius: 14px; cursor: pointer; text-align: left;
  transition: border-color .15s, background .15s, transform .15s;
  overflow: hidden; padding: 0;
  font: inherit; color: inherit;
}
.order-mini-card:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.order-mini-card.active {
  border-color: #fff; background: rgba(255,255,255,.18);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.order-mini-card__img {
  width: 100%; aspect-ratio: 3/2; overflow: hidden;
}
.order-mini-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.order-mini-card__body {
  padding: 9px 11px 10px;
}
.order-mini-card__body--no-img {
  padding: 14px 13px 13px;
}
.order-mini-card__name {
  font-size: 12px; font-weight: 700; line-height: 1.35;
  color: rgba(255,255,255,.9); margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.order-mini-card__price {
  font-size: 13px; font-weight: 800; color: #fff;
}
.order-mini-card__stock {
  font-size: 10px; font-weight: 700; margin-top: 4px; opacity: .85;
}
.order-mini-card__stock--out { color: rgba(255,255,255,.75); }
.order-mini-card__stock--low { color: rgba(255,255,255,.75); }
.order-mini-card__stock--ok  { color: rgba(255,255,255,.75); }
.order-form-section.section-light .order-mini-card__stock--out { color: var(--muted); }
.order-form-section.section-light .order-mini-card__stock--low { color: var(--muted); }
.order-form-section.section-light .order-mini-card__stock--ok  { color: var(--muted); }
.order-mini-card--sold-out { opacity: .45; cursor: not-allowed; }
.order-mini-card--sold-out:hover { transform: none; }
/* Light mode overrides */
.order-form-section.section-light .order-mini-card {
  background: #fff; border-color: rgba(var(--accent-rgb),.12);
  box-shadow: 0 2px 10px rgba(var(--accent-rgb),.07);
}
.order-form-section.section-light .order-mini-card:hover { background: #f7fcfc; border-color: rgba(var(--accent-rgb),.2); }
.order-form-section.section-light .order-mini-card.active {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 4px 18px rgba(var(--primary-rgb),.18);
}
.order-form-section.section-light .order-mini-card__name { color: var(--accent); }
.order-form-section.section-light .order-mini-card__price { color: var(--primary); }
/* Legacy pill bar (kept for compatibility) */
.order-product-pill-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.order-pill {
  padding: 8px 16px; border-radius: 999px; font: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .15s; border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
}
.order-pill.active { background: #fff; color: var(--accent); border-color: #fff; }
.order-form-section.section-light .order-pill { border-color: rgba(var(--accent-rgb),.2); background: #fff; color: var(--accent); }
.order-form-section.section-light .order-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }
/* Summary box */
.order-summary-box {
  border-radius: 14px; padding: 18px 20px; margin-bottom: 20px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.order-form-section.section-light .order-summary-box { background: #fff; border-color: rgba(var(--accent-rgb),.1); box-shadow: 0 2px 20px rgba(var(--accent-rgb),.07); }
.order-summary-name { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.order-form-section.section-light .order-summary-name { color: var(--accent); }
.order-summary-desc { font-size: 13px; color: rgba(255,255,255,.75); margin: 0 0 12px; line-height: 1.55; }
.order-form-section.section-light .order-summary-desc { color: var(--muted); }
.order-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; font-size: 14px; color: rgba(255,255,255,.85); }
.order-form-section.section-light .order-summary-row { color: var(--text); }
.order-summary-total { border-top: 1px solid rgba(255,255,255,.2); margin-top: 8px; padding-top: 10px; font-weight: 700; font-size: 16px; }
.order-form-section.section-light .order-summary-total { border-top-color: rgba(var(--accent-rgb),.1); }
.order-summary-discount { color: #7de8a6 !important; }
.order-form-section.section-light .order-summary-discount { color: #1a7a5a !important; }
/* Form fields */
.order-form-body { display: flex; flex-direction: column; gap: 0; }
.order-form-body label { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
.order-form-section.section-light .order-form-body label { color: var(--accent); }
.order-form-body input[type=text], .order-form-body input[type=email], .order-form-body input[type=tel], .order-form-body textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px; font: inherit; font-size: 14px;
  background: rgba(255,255,255,.13); color: #fff; border: 1.5px solid rgba(255,255,255,.22);
  outline: none; transition: border-color .15s, background .15s; box-sizing: border-box; margin-bottom: 14px;
}
.order-form-body input::placeholder, .order-form-body textarea::placeholder { color: rgba(255,255,255,.38); }
.order-form-body input:focus, .order-form-body textarea:focus { border-color: rgba(var(--primary-rgb),.8); background: rgba(255,255,255,.15); outline: none; }
.order-form-section.section-light .order-form-body input,
.order-form-section.section-light .order-form-body textarea { background: #fff; color: var(--text); border-color: rgba(var(--accent-rgb),.18); }
.order-form-section.section-light .order-form-body input::placeholder,
.order-form-section.section-light .order-form-body textarea::placeholder { color: rgba(var(--accent-rgb),.38); }
.order-form-section.section-light .order-form-body input:focus,
.order-form-section.section-light .order-form-body textarea:focus { border-color: var(--primary); }
.order-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Coupon row */
.order-coupon-wrap { margin-bottom: 14px; }
.order-coupon-wrap label { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
.order-form-section.section-light .order-coupon-wrap label { color: var(--accent); }
.order-coupon-input-row { display: flex; gap: 8px; align-items: center; }
.order-coupon-input-row input { flex: 1; margin-bottom: 0 !important; text-transform: uppercase; font-family: monospace; letter-spacing: .06em; }
.order-coupon-btn { flex-shrink: 0; padding: 11px 18px; border-radius: 10px; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; border: 1.5px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); color: #fff; transition: background .15s; white-space: nowrap; }
.order-coupon-btn:hover { background: rgba(255,255,255,.22); }
.order-form-section.section-light .order-coupon-btn { border-color: rgba(var(--accent-rgb),.2); background: var(--bg-soft); color: var(--accent); }
.order-form-section.section-light .order-coupon-btn:hover { background: var(--bg); border-color: var(--primary); }
.order-coupon-msg { font-size: 12px; margin-top: 5px; min-height: 16px; }
/* Produkt- oder Gutschein-Kauf */
.order-purchase-as-wrap { margin-bottom: 14px; }
.order-purchase-as-wrap > label { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.order-form-section.section-light .order-purchase-as-wrap > label { color: var(--accent); }
.order-purchase-as-options { display: flex; gap: 10px; align-items: stretch; }
.order-form-body label.order-purchase-as-opt {
  display: flex; align-items: center; gap: 9px; flex: 1 1 0; align-self: stretch; min-width: 0; box-sizing: border-box;
  border: 1.5px solid rgba(255,255,255,.18); border-radius: 12px;
  padding: 12px 14px; font-size: 13px; font-weight: 400; line-height: 1.3;
  text-transform: none; letter-spacing: normal; margin: 0;
  color: rgba(255,255,255,.85); cursor: pointer; transition: border-color .15s, background .15s;
}
.order-purchase-as-opt:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.order-purchase-as-opt input[type=radio] { flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.order-purchase-as-opt span { display: block; }
.order-purchase-as-opt small { display: block; font-weight: 400; text-transform: none; letter-spacing: normal; opacity: .65; font-size: 11px; margin-top: 2px; }
.order-purchase-as-opt:has(input:checked) { border-color: var(--primary); background: rgba(255,255,255,.08); }
.order-form-section.section-light .order-purchase-as-opt { border-color: rgba(var(--accent-rgb),.18); color: var(--text); }
.order-form-section.section-light .order-purchase-as-opt:hover { border-color: var(--primary); background: var(--bg-soft); }
.order-form-section.section-light .order-purchase-as-opt:has(input:checked) { border-color: var(--primary); background: var(--bg-soft); }
@media (max-width: 540px) { .order-purchase-as-options { flex-direction: column; } }
/* Terms */
.order-term-check { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.4; margin-bottom: 1px; color: rgba(255,255,255,.8); cursor: pointer; }
.order-form-section.section-light .order-term-check { color: var(--text); }
.order-term-check input[type=checkbox] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--primary); cursor: pointer; }
.order-term-link { color: var(--primary); text-decoration: underline; }
.order-form-section:not(.section-light) .order-term-link { color: #fff; }
.order-form-section.section-bg-primary .order-term-check { color: rgba(255,255,255,.85); }
.order-form-section.section-bg-primary .order-term-check input[type=checkbox] { accent-color: #fff; }
/* Submit */
.order-submit-btn { width: 100%; margin-top: 16px; padding: 16px; font-size: 15px; font-weight: 700; border-radius: 12px; border: none; background: var(--primary); color: #fff; cursor: pointer; transition: background .15s; }
.order-submit-btn:hover { background: var(--primary-dark); }
.order-submit-btn:disabled { background: rgba(255,255,255,.2); cursor: not-allowed; }
/* Success state (replaces form after submit) */
.order-success-state {
  text-align: center;
  padding: 16px 8px 8px;
}
.order-success-icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 16px;
}
.order-success-title {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.order-success-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.order-form-section.section-light .order-success-title { color: var(--accent); }
.order-form-section.section-light .order-success-text  { color: var(--muted); }
.order-error-msg { background: rgba(220,50,50,.12); border: 1px solid rgba(220,50,50,.3); color: #ff9999; border-radius: 12px; padding: 14px 18px; font-size: 14px; margin-top: 12px; display: none; }
.order-form-section.section-light .order-error-msg { color: #c0392b; }
/* Notice box */
.order-notice-box {
  border-radius: 12px; padding: 14px 18px; margin-top: 24px; margin-bottom: 20px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.85);
}
.order-form-section.section-light .order-notice-box {
  background: rgba(var(--primary-rgb),.08); border-color: rgba(var(--primary-rgb),.25); color: var(--accent);
}
/* Collapsed state */
.order-form-collapsed { display: none; }
/* Sold-out pill */
.order-pill--sold-out { opacity: .45; cursor: not-allowed; }
/* ── Bestellformular ohne Glaseffekt → deckende weiße Box + heller Inhalt (wie Produkte).
   Überschrift, Vorschau-Hinweis und Mini-Cards liegen auf dem Section-Grund und bleiben. ── */
.order-form-section.order-form--solid .order-form-inner {
  background: #fff;
  border-color: rgba(var(--accent-rgb),.12);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),.10);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  color: var(--text);   /* Grundfarbe der Box-Texte dunkel */
}
/* Sicherheitsnetz: JEDER Text in der weißen Box wird dunkel (überschreibt alle evtl.
   übersehenen Weiß-Regeln). Buttons/Links behalten ihre eigene Farbe. */
.order-form-section.order-form--solid .order-form-inner :is(p, span, div, label, li, strong, b, em, small, h2, h3, h4, td, th) {
  color: var(--text);
}
.order-form-section.order-form--solid .order-summary-name  { color: var(--accent); }
.order-form-section.order-form--solid .order-summary-desc  { color: var(--muted); }
.order-form-section.order-form--solid .order-summary-total { color: var(--text); }
.order-form-section.order-form--solid .order-form-body label,
.order-form-section.order-form--solid .order-coupon-wrap label,
.order-form-section.order-form--solid .order-purchase-as-wrap > label { color: var(--accent); }
.order-form-section.order-form--solid .order-form-body input,
.order-form-section.order-form--solid .order-form-body textarea { background: #fff; color: var(--text); border-color: rgba(var(--accent-rgb),.18); }
.order-form-section.order-form--solid .order-form-body input::placeholder,
.order-form-section.order-form--solid .order-form-body textarea::placeholder { color: rgba(var(--accent-rgb),.38); }
.order-form-section.order-form--solid .order-form-body input:focus,
.order-form-section.order-form--solid .order-form-body textarea:focus { border-color: var(--primary); }
.order-form-section.order-form--solid .order-summary-row { color: var(--text); }
.order-form-section.order-form--solid .order-summary-total { border-top-color: rgba(var(--accent-rgb),.1); }
.order-form-section.order-form--solid .order-summary-discount { color: #1a7a5a !important; }
.order-form-section.order-form--solid .order-coupon-btn { border-color: rgba(var(--accent-rgb),.2); background: var(--bg-soft); color: var(--accent); }
.order-form-section.order-form--solid .order-coupon-btn:hover { background: var(--bg); border-color: var(--primary); }
.order-form-section.order-form--solid .order-purchase-as-opt { border-color: rgba(var(--accent-rgb),.18); color: var(--text); }
.order-form-section.order-form--solid .order-purchase-as-opt:hover { border-color: var(--primary); background: var(--bg-soft); }
.order-form-section.order-form--solid .order-purchase-as-opt:has(input:checked) { border-color: var(--primary); background: var(--bg-soft); }
.order-form-section.order-form--solid .order-term-check { color: var(--text); }
.order-form-section.order-form--solid .order-term-link { color: var(--primary); }
.order-form-section.order-form--solid .order-success-title { color: var(--accent); }
.order-form-section.order-form--solid .order-success-text { color: var(--muted); }
.order-form-section.order-form--solid .order-error-msg { color: #c0392b; }
.order-form-section.order-form--solid .order-notice-box { background: rgba(var(--primary-rgb),.08); border-color: rgba(var(--primary-rgb),.25); color: var(--accent); }
.order-form-section.order-form--solid .order-submit-btn:disabled { background: rgba(var(--accent-rgb),.18); }

/* Glass effect on individual product cards */
.products-section--glass:not(.section-light) .product-card {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.products-section--glass:not(.section-light) .product-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.products-section--glass:not(.section-light) .product-card-name  { color: #fff; }
.products-section--glass:not(.section-light) .product-card-desc  { color: rgba(255,255,255,.72); }
.products-section--glass:not(.section-light) .product-card-list li { color: rgba(255,255,255,.82); border-bottom-color: rgba(255,255,255,.08); }
.products-section--glass:not(.section-light) .product-card-list li::before { color: #fff; }
.products-section--glass:not(.section-light) .product-card-price { color: #fff; }
.products-section--glass:not(.section-light) .product-card-strike { color: rgba(255,255,255,.45); }
.products-section--glass:not(.section-light) .product-card-img-placeholder { background: rgba(255,255,255,.08); }
/* Badge (no-image variant) → white outline on dark/glass bg */
.products-section--glass:not(.section-light) .product-card-badge {
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
/* Button → ghost style on dark/glass bg */
.products-section--glass:not(.section-light) .product-card-btn {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.products-section--glass:not(.section-light) .product-card-btn:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-1px);
}
/* Plain turquoise bg without glass – keep checkmarks white */
.products-section.section-bg-primary .product-card-list li::before { color: #fff; }
@media (max-width: 580px) { .order-form-row { grid-template-columns: 1fr; } }

/* ── Feedback-Formular Section ─────────────────────────────────────── */
.fbf-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.fbf-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.fbf-section.section-no-watermark::before { display: none; }
.fbf-section .container { position: relative; z-index: 2; }
.fbf-section.section-light { background: var(--bg); }
.fbf-section.section-bg-soft { background: var(--bg-soft) !important; }

/* Section text colors */
.fbf-section:not(.section-light) .fbf-label  { color: rgba(255,255,255,.55); }
.fbf-section:not(.section-light) .fbf-title  { color: #fff; }
.fbf-section:not(.section-light) .fbf-sub    { color: rgba(255,255,255,.72); }
.fbf-section.section-light .fbf-label  { color: var(--primary); }
.fbf-section.section-light .fbf-title  { color: var(--accent); }
.fbf-section.section-light .fbf-sub    { color: var(--muted); }
.fbf-section .fbf-title { font-size: clamp(20px,3vw,28px); margin-bottom: 28px; }
.fbf-section .fbf-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.fbf-section .fbf-sub   { max-width: 640px; margin-bottom: 32px; line-height: 1.6; }

/* Wrap + form */
.fbf-wrap { max-width: 100%; }
.fbf-form {
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb),.10);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(var(--accent-rgb),.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fbf-form label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  margin: 14px 0 5px;
}
.fbf-form label:first-child { margin-top: 0; }
.fbf-form input,
.fbf-form textarea,
.fbf-form select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.fbf-form input:focus,
.fbf-form textarea:focus,
.fbf-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.12);
  background: var(--bg);
}
.fbf-form textarea { min-height: 110px; resize: vertical; }
.fbf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 580px) { .fbf-row { grid-template-columns: 1fr; } }

/* Consent checkboxes */
.fbf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
  font-weight: 400 !important;
  color: var(--text) !important;
}
.fbf-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 15px; height: 15px; accent-color: var(--primary); }
.fbf-consent .small { font-size: 12px; color: var(--muted); line-height: 1.5; }
.fbf-consent a { color: var(--primary); }

.fbf-actions { margin-top: 20px; }

/* Success / error messages */
/* Solider weißer Hintergrund → auch auf dunklem Section-Hintergrund gut lesbar (wie das Formular) */
.fbf-success {
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb),.28);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 20px 24px;
  color: var(--accent);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.fbf-error {
  background: #fff;
  border: 1px solid rgba(220,53,69,.3);
  border-left: 4px solid #d9534f;
  border-radius: 12px;
  padding: 16px 20px;
  color: #c0392b;
  font-size: 14px;
  margin-top: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

/* Star rating */
.fbf-star-row { display: flex; gap: 4px; margin: 4px 0 2px; }
.fbf-star {
  background: none; border: none; padding: 0 2px;
  font-size: 30px; cursor: pointer;
  color: rgba(var(--accent-rgb),.18);
  transition: color .1s, transform .1s;
  line-height: 1;
}
.fbf-star.active { color: #f5a623; }
.fbf-star:hover  { color: #f5a623; transform: scale(1.15); }

/* ── Glass effect (dark bg / image / video + glass toggle) ── */
.fbf-glass .fbf-form {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.fbf-glass .fbf-form label            { color: rgba(255,255,255,.85); }
.fbf-glass .fbf-form label .small    { color: rgba(255,255,255,.60); }
.fbf-glass .fbf-form input,
.fbf-glass .fbf-form textarea,
.fbf-glass .fbf-form select {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.fbf-glass .fbf-form input::placeholder,
.fbf-glass .fbf-form textarea::placeholder { color: rgba(255,255,255,.40); }
.fbf-glass .fbf-form select option       { background: var(--accent); color: #fff; }
.fbf-glass .fbf-consent .small           { color: rgba(255,255,255,.65); }
.fbf-glass .fbf-consent a                { color: rgba(255,255,255,.9); }
.fbf-glass .fbf-star                     { color: rgba(255,255,255,.22); }
.fbf-glass .fbf-star.active              { color: #f5c842; }

/* ─── Team Section ───────────────────────────────────────── */
.team-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.team-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.team-section.section-no-watermark::before { display: none; }
.team-section .container { position: relative; z-index: 2; }

/* Hintergründe */
.team-section.section-light                     { background: var(--bg); }
.team-section.section-light.section-bg-soft     { background: var(--bg-soft) !important; }
.team-section.section-bg-primary                { background: var(--primary); }

/* Überschriften dunkel / primary */
.team-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.team-section:not(.section-light) .section-title { color: #fff; }
.team-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.team-section.section-bg-primary .section-label  { color: rgba(255,255,255,.65); }
.team-section.section-bg-primary .section-title  { color: #fff; }
.team-section.section-bg-primary .section-sub    { color: rgba(255,255,255,.80); }

/* Überschriften hell */
.team-section.section-light .section-label { color: var(--primary); }
.team-section.section-light .section-title { color: var(--accent); }
.team-section.section-light .section-sub   { color: var(--muted); }

/* ── Grid (zentriert, gleiche Logik wie cg-grid) ─── */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}
.team-grid .team-card            { flex: 0 1 calc(33.333% - 19px); min-width: 200px; }
.team-grid.team-cols-2 .team-card { flex: 0 1 calc(50%    - 14px); min-width: 220px; max-width: 480px; }
.team-grid.team-cols-3 .team-card { flex: 0 1 calc(33.333% - 19px); min-width: 200px; max-width: 360px; }
.team-grid.team-cols-4 .team-card { flex: 0 1 calc(25%    - 21px); min-width: 180px; max-width: 300px; }

/* ── Karte ─── */
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(var(--accent-rgb), .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 24px;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 52px rgba(var(--accent-rgb), .18);
}

/* ── Foto (rund) ─── */
.team-card-photo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.18), rgba(var(--accent-rgb),.10));
  border: 3px solid rgba(var(--primary-rgb), .15);
}
.team-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Initials-Fallback */
.team-card-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .02em;
}

/* ── Text ─── */
.team-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card-name {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
}
.team-card-role {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── E-Mail-Button ─── */
.team-card-footer {
  margin-top: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.team-card-btn {
  display: inline-block;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.team-card-btn:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }

/* ── Glas-Effekt dunkel / Bild / Video ─── */
.team-glass:not(.section-light) .team-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.team-glass:not(.section-light) .team-card:hover {
  background: rgba(255,255,255,.16);
  box-shadow: 0 14px 44px rgba(0,0,0,.32);
}
.team-glass:not(.section-light) .team-card-name { color: #fff; }
.team-glass:not(.section-light) .team-card-role { color: rgba(255,255,255,.70); }
.team-glass:not(.section-light) .team-card-photo-wrap {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
}
.team-glass:not(.section-light) .team-card-initials { color: #fff; }
.team-glass:not(.section-light) .team-card-btn {
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.50);
  color: #fff;
}
.team-glass:not(.section-light) .team-card-btn:hover {
  background: rgba(255,255,255,.28);
  color: #fff;
}

/* Türkis (primary) Hintergrund */
.team-glass.section-bg-primary .team-card {
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Hell (weiß / soft) → weiße Box mit Schatten */
.team-glass.section-light .team-card {
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb), .07);
  box-shadow: 0 6px 36px rgba(var(--accent-rgb), .10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── Responsive ─── */
@media (max-width: 1024px) {
  .team-grid.team-cols-4 .team-card { flex-basis: calc(50% - 14px); }
}
@media (max-width: 768px) {
  .team-grid.team-cols-3 .team-card { flex-basis: calc(50% - 14px); }
}
@media (max-width: 520px) {
  .team-grid .team-card,
  .team-grid.team-cols-2 .team-card,
  .team-grid.team-cols-3 .team-card,
  .team-grid.team-cols-4 .team-card { flex-basis: 100%; max-width: 340px; }
}

/* ─── FAQ Section ────────────────────────────────────────── */
.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.faq-section.section-no-watermark::before { display: none; }
.faq-section .container { position: relative; z-index: 2; }

/* ── Hintergrundfarben ─── */
.faq-section.section-light                      { background: var(--bg); }
.faq-section.section-light.section-bg-soft      { background: var(--bg-soft) !important; }
.faq-section.section-bg-primary                 { background: var(--primary); }

/* Überschriften dunkel / primary */
.faq-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.faq-section:not(.section-light) .section-title { color: #fff; }
.faq-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.faq-section.section-bg-primary .section-label  { color: rgba(255,255,255,.65); }
.faq-section.section-bg-primary .section-title  { color: #fff; }
.faq-section.section-bg-primary .section-sub    { color: rgba(255,255,255,.80); }

/* Überschriften hell */
.faq-section.section-light .section-label { color: var(--primary); }
.faq-section.section-light .section-title { color: var(--accent); }
.faq-section.section-light .section-sub   { color: var(--muted); }

/* ── FAQ Liste ─── */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  border-radius: 16px;          /* für Glas-Modus */
  overflow: hidden;             /* clippt abgerundete Ecken im Glas-Modus */
}

/* ── Einzelner Eintrag ─── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.faq-item:last-child { border-bottom: none; }
.faq-section.section-light .faq-item {
  border-bottom-color: rgba(var(--accent-rgb), .09);
}

/* ── Frage-Button ─── */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  transition: color .15s;
}
.faq-section.section-light .faq-question { color: var(--accent); }
.faq-question:hover { color: var(--primary); }

/* ── + / × Icon ─── */
/* Schlichter Pfeil (Chevron) – signalisiert Aufklappen */
.faq-icon {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin: 0 5px 4px 0;
  border-right: 2px solid rgba(255,255,255,.55);
  border-bottom: 2px solid rgba(255,255,255,.55);
  border-radius: 0 0 2px 0;
  transform: rotate(45deg);
  transition: transform .28s ease, border-color .15s;
}
.faq-section.section-light .faq-icon { border-color: var(--accent); }
.faq-item--open .faq-icon {
  transform: rotate(-135deg);
  border-color: var(--primary);
}
.faq-section.section-light .faq-item--open .faq-icon { border-color: var(--primary); }

/* ── Antwort (max-height via JS) ─── */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease;
}
.faq-answer-inner {
  padding: 4px 24px 24px;
  font-size: clamp(14px, 1.8vw, 15px);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
}
.faq-section.section-light .faq-answer-inner { color: var(--muted); }
.faq-section.section-bg-primary .faq-answer-inner { color: rgba(255,255,255,.85); }

/* ── Kein Glas: weiße Box auf dunklem Hintergrund ────────── */
.faq-section:not(.section-light):not(.faq-glass):not(.section-bg-primary) .faq-list {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(var(--accent-rgb),.13);
}
.faq-section:not(.section-light):not(.faq-glass):not(.section-bg-primary) .faq-item {
  border-bottom-color: rgba(var(--accent-rgb),.09);
}
.faq-section:not(.section-light):not(.faq-glass):not(.section-bg-primary) .faq-question { color: var(--accent); }
.faq-section:not(.section-light):not(.faq-glass):not(.section-bg-primary) .faq-question:hover { color: var(--primary); }
.faq-section:not(.section-light):not(.faq-glass):not(.section-bg-primary) .faq-icon {
  border-color: var(--accent);
}
.faq-section:not(.section-light):not(.faq-glass):not(.section-bg-primary) .faq-item--open .faq-icon {
  border-color: var(--primary);
}
.faq-section:not(.section-light):not(.faq-glass):not(.section-bg-primary) .faq-answer-inner { color: var(--muted); }

/* ── Glas-Effekt ─────────────────────────────────────────── */

/* Dunkel / Bild / Video → semitransparente Liste mit Blur */
.faq-glass:not(.section-light) .faq-list {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
}
.faq-glass:not(.section-light) .faq-item {
  border-bottom-color: rgba(255,255,255,.10);
}
.faq-glass:not(.section-light) .faq-question { color: #fff; }
.faq-glass:not(.section-light) .faq-answer-inner { color: rgba(255,255,255,.80); }

/* Türkis (primary) Hintergrund → gleicher Glas-Look */
.faq-glass.section-bg-primary .faq-list {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

/* Hell (weiß / soft) → weiße Box mit Schatten statt Blur */
.faq-glass.section-light .faq-list {
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb), .07);
  box-shadow: 0 4px 32px rgba(var(--accent-rgb), .08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.faq-glass.section-light .faq-item {
  border-bottom-color: rgba(var(--accent-rgb), .07);
}

/* ─── Card-Grid Section ──────────────────────────────────── */
.cg-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.cg-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.cg-section.section-no-watermark::before { display: none; }
.cg-section .container { position: relative; z-index: 2; }
.cg-section.section-light { background: var(--bg); }
.cg-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.cg-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.cg-section:not(.section-light) .section-title { color: #fff; }
.cg-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.cg-section.section-light .section-label { color: var(--primary); }
.cg-section.section-light .section-title { color: var(--accent); }
.cg-section.section-light .section-sub   { color: var(--muted); }
.cg-section.section-bg-primary:not(.section-light) .section-label { color: rgba(255,255,255,.65); }
.cg-section.section-bg-primary:not(.section-light) .section-title { color: #fff; }

/* ── Grid: Flexbox für zentrierte Anordnung ─────────────── */
.cg-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}

/* Kartenbreite je nach Spaltenanzahl */
.cg-grid .cg-card          { flex: 0 1 calc(33.333% - 19px); min-width: 220px; }
.cg-grid.cg-cols-2 .cg-card { flex: 0 1 calc(50%    - 14px); min-width: 240px; max-width: 480px; }
.cg-grid.cg-cols-3 .cg-card { flex: 0 1 calc(33.333% - 19px); min-width: 220px; max-width: 400px; }
.cg-grid.cg-cols-4 .cg-card { flex: 0 1 calc(25%    - 21px); min-width: 190px; max-width: 320px; }

/* ── Karte: weiße Box ────────────────────────────────────── */
.cg-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;            /* clippt Bild an den abgerundeten Ecken */
  box-shadow: 0 4px 28px rgba(var(--accent-rgb), .13);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.cg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 52px rgba(var(--accent-rgb), .20);
}

/* ── Bild: randlos, obere Ecken abgerundet ────────────────── */
.cg-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  /* obere Ecken explizit für alle Browser */
  border-radius: 20px 20px 0 0;
  margin: 0;                   /* kein Abstand zum Kartenrand */
}
.cg-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

/* ── Karteninhalt ─────────────────────────────────────────── */
.cg-card-body {
  padding: 22px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cg-card-title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
}
.cg-card-text {
  margin: 0 0 14px;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  flex: 1;
}

/* Liste */
.cg-card-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.cg-card-list li {
  font-size: 13px;
  color: #444;
  padding: 5px 0 5px 22px;
  position: relative;
  border-bottom: 1px solid rgba(var(--accent-rgb), .05);
  line-height: 1.5;
}
.cg-card-list li:last-child { border-bottom: none; }
.cg-list--check li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.cg-list--arrow li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.cg-list--dot   li::before { content: '•'; position: absolute; left: 2px; color: var(--primary); font-weight: 700; }

/* Footer: Button zentriert */
.cg-card-footer {
  padding: 0 24px 24px;
  display: flex;
  justify-content: center;
}
.cg-card-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.cg-card-btn:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }

/* ── Glas-Effekt (dunkler/Bild/Video-Hintergrund) ─────────── */
.cg-glass:not(.section-light) .cg-card {
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}
.cg-glass:not(.section-light) .cg-card:hover {
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .35);
}
.cg-glass:not(.section-light) .cg-card-title { color: #fff; }
.cg-glass:not(.section-light) .cg-card-text  { color: rgba(255, 255, 255, .80); }
.cg-glass:not(.section-light) .cg-card-list li {
  color: rgba(255, 255, 255, .80);
  border-color: rgba(255, 255, 255, .10);
}
.cg-glass:not(.section-light) .cg-list--check li::before,
.cg-glass:not(.section-light) .cg-list--arrow li::before,
.cg-glass:not(.section-light) .cg-list--dot   li::before { color: rgba(255, 255, 255, .90); }
.cg-glass:not(.section-light) .cg-card-btn {
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
}
.cg-glass:not(.section-light) .cg-card-btn:hover {
  background: rgba(255, 255, 255, .28);
  color: #fff;
}
/* Karten-Buttons auf primary-Hintergrund ohne Glass: primärfarben, nicht ghost-weiß */
.section-bg-primary:not(.cg-glass) .cg-card-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
}

/* ── Overlay ausblenden ───────────────────────────────────── */
.section-no-overlay .dark-section-bg-overlay { display: none !important; }
.section-no-overlay .hero-overlay { display: none !important; }

/* Section-Texte dunkel wenn kein Overlay (ungedämmtes Bild) */
.section-no-overlay:not(.section-light) .section-label { color: var(--primary) !important; }
.section-no-overlay:not(.section-light) .section-title { color: var(--accent)  !important; }
.section-no-overlay:not(.section-light) .section-sub   { color: var(--muted)   !important; }

/* Buttons: bei section-no-overlay (helles Bild ohne Overlay) weiße/ghost Buttons sichtbar machen */
.section-no-overlay:not(.section-light):not(.section-glass-bright) .btn.primary {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
}
.section-no-overlay:not(.section-light):not(.section-glass-bright) .btn.ghost {
  background: transparent !important;
  border: 2px solid rgba(var(--accent-rgb),.30) !important;
  color: var(--accent) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Glaseffekt + kein Overlay: alle Texte dunkel (gilt für alle Section-Typen) */
.section-glass-bright h1, .section-glass-bright h2,
.section-glass-bright h3, .section-glass-bright h4,
.section-glass-bright h5, .section-glass-bright h6 { color: var(--accent) !important; }
.section-glass-bright p,
.section-glass-bright li,
.section-glass-bright span:not(.btn *):not(button *) { color: var(--accent) !important; }
.section-glass-bright label { color: var(--accent) !important; }
.section-glass-bright .section-label { color: var(--primary) !important; }
.section-glass-bright input:not([type=hidden]):not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]),
.section-glass-bright textarea,
.section-glass-bright select { color: var(--accent) !important; background: rgba(255,255,255,.55) !important; border-color: rgba(var(--accent-rgb),.18) !important; }
.section-glass-bright input::placeholder,
.section-glass-bright textarea::placeholder { color: var(--muted) !important; }
.section-glass-bright input:focus,
.section-glass-bright textarea:focus,
.section-glass-bright select:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.15) !important; }

/* Buttons: bei glass-bright (helles Bild, kein Overlay + Glass) ghost-weiße Buttons sichtbar machen */
.section-glass-bright .btn.primary,
.section-glass-bright .cg-card-btn,
.section-glass-bright .event-info-card-btn,
.section-glass-bright .product-card-btn,
.section-glass-bright .team-card-btn,
.section-glass-bright .freebie-btn,
.section-glass-bright .split-block-card--glass .btn.primary {
  background: var(--primary) !important;
  border: none !important;
  color: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.section-glass-bright .btn.ghost {
  background: transparent !important;
  border: 2px solid rgba(var(--accent-rgb),.30) !important;
  color: var(--accent) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.section-glass-bright .kt-btn--warteliste {
  background: rgba(var(--accent-rgb),.12) !important;
  color: var(--accent) !important;
  border-color: rgba(var(--accent-rgb),.2) !important;
}
.section-glass-bright .kt-btn--info {
  background: var(--bg-soft) !important;
  border-color: rgba(var(--accent-rgb),.2) !important;
  color: var(--accent) !important;
}
.section-glass-bright .kt-btn-outline {
  border-color: rgba(var(--accent-rgb),.4) !important;
  color: var(--accent) !important;
}
.section-glass-bright .frbg-btn-secondary {
  background: rgba(var(--accent-rgb),.06) !important;
  color: var(--accent) !important;
  border-color: var(--line) !important;
}

/* HTML-Code Section ────────────────────────────────────── */
.hc-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.hc-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.hc-section.section-no-watermark::before { display: none; }
.hc-section .container { position: relative; z-index: 2; }
.hc-section.section-light { background: var(--bg); }
.hc-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.hc-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.hc-section:not(.section-light) .section-title { color: #fff; }
.hc-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.hc-section.section-light .section-label { color: var(--primary); }
.hc-section.section-light .section-title { color: var(--accent); }
.hc-section.section-light .section-sub   { color: var(--muted); }
.hc-section.section-bg-primary:not(.section-light) .section-label { color: rgba(255,255,255,.65); }
.hc-section.section-bg-primary:not(.section-light) .section-title { color: #fff; }

/* White card on all backgrounds */
.hc-content-wrap {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb),.10);
}

/* Kopfbereich (Label/Überschrift/Unterzeile) zentriert (optional) */
.hc-section--text-center .section-label,
.hc-section--text-center .section-title,
.hc-section--text-center .section-sub { text-align: center; }
.hc-section--text-center .section-label { display: block; }
.hc-section--text-center .section-sub { margin-left: auto; margin-right: auto; }

/* Full-Section-Modus: HTML füllt die gesamte Section (kein Box-Rahmen, kein Padding) */
.hc-section--full { padding: 0; }
.hc-section--full > .container { padding-top: 56px; padding-bottom: 0; position: relative; z-index: 2; }
.hc-content-full { position: relative; z-index: 2; width: 100%; }

/* Glass overrides white card on dark/primary backgrounds */
.hc-glass:not(.section-light) .hc-content-wrap {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  padding: 36px 40px;
}
/* Glass wrap on light backgrounds */
.hc-glass.section-light .hc-content-wrap {
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--accent-rgb),.08);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb),.08);
  padding: 36px 40px;
}
@media (max-width: 600px) {
  .hc-content-wrap { padding: 24px 20px; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cg-grid.cg-cols-4 .cg-card { flex-basis: calc(50% - 14px); }
}
@media (max-width: 768px) {
  .cg-grid.cg-cols-3 .cg-card { flex-basis: calc(50% - 14px); }
}
@media (max-width: 560px) {
  .cg-grid .cg-card,
  .cg-grid.cg-cols-2 .cg-card,
  .cg-grid.cg-cols-3 .cg-card,
  .cg-grid.cg-cols-4 .cg-card { flex-basis: 100%; max-width: 100%; }
}
.fbf-glass .fbf-star:hover               { color: #f5c842; }

/* ═══════════════════════════════════════════════════════════
   KOOPERATIONSPARTNER SECTION
═══════════════════════════════════════════════════════════ */
.partners-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.partners-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.partners-section.section-no-watermark::before { display: none; }
.partners-section .container { position: relative; z-index: 2; }

/* ── Hintergründe ─── */
.partners-section.section-light                 { background: var(--bg); }
.partners-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.partners-section.section-bg-primary            { background: var(--primary); }

/* ── Überschriften dunkel / primary ─── */
.partners-section:not(.section-light) .section-label { color: rgba(255,255,255,.50); }
.partners-section:not(.section-light) .section-title { color: #fff; }
.partners-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.72); }
.partners-section.section-bg-primary .section-label  { color: rgba(255,255,255,.65); }
.partners-section.section-bg-primary .section-title  { color: #fff; }
.partners-section.section-bg-primary .section-sub    { color: rgba(255,255,255,.80); }

/* ── Überschriften hell ─── */
.partners-section.section-light .section-label { color: var(--primary); }
.partners-section.section-light .section-title { color: var(--accent); }
.partners-section.section-light .section-sub   { color: var(--muted); }

/* ── Grid ─── */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 40px;
}
.partners-cols-3 .partners-card { flex: 0 1 calc(33.333% - 12px); min-width: 150px; max-width: 300px; }
.partners-cols-4 .partners-card { flex: 0 1 calc(25%     - 14px); min-width: 130px; max-width: 240px; }

/* ── Slider ─── */
.partners-slider-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
.partners-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ── Karte (Basis: immer weiß – sichtbar auf allen Hintergründen) ─── */
.partners-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), .10);
  transition: transform .2s, box-shadow .2s;
  box-sizing: border-box;
}
.partners-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(var(--accent-rgb), .16);
}
.partners-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.partners-card-link:hover .partners-logo { opacity: .80; transform: scale(1.05); }
.partners-logo {
  max-height: 68px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity .2s, transform .2s;
}
.partners-name {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--accent);
  letter-spacing: .02em;
}
.partners-more { display: none !important; }
.partners-load-more-wrap { text-align: center; margin-top: 36px; }
/* „Mehr laden": immer Primärfarbe mit weißem Text (auf jedem Section-Hintergrund) */
.partners-load-more-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
}
.partners-load-more-btn:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

/* ── Hell (kein Glas) – weißer Schatten-Stil bleibt ─── */
.partners-section.section-light .partners-card {
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.partners-section.section-light .partners-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
}

/* ── Glas-Effekt: dunkel / Bild / Video ─── */
.partners-glass:not(.section-light) .partners-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.partners-glass:not(.section-light) .partners-card:hover {
  background: rgba(255,255,255,.16);
  box-shadow: 0 12px 40px rgba(0,0,0,.30);
}
.partners-glass:not(.section-light) .partners-name { color: rgba(255,255,255,.90); }

/* ── Glas-Effekt: Türkis (primary) ─── */
.partners-glass.section-bg-primary .partners-card {
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.partners-glass.section-bg-primary .partners-card:hover {
  background: rgba(255,255,255,.24);
}
.partners-glass.section-bg-primary .partners-name { color: #fff; }

/* ── Glas-Effekt: hell / soft ─── */
.partners-glass.section-light .partners-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.90);
  box-shadow: 0 4px 24px rgba(var(--accent-rgb),.08);
}
.partners-glass.section-light .partners-card:hover {
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 36px rgba(var(--accent-rgb),.13);
}

/* ── Responsive ─── */
/* ── Keine Boxen – Logos frei stehend ─── */
.partners-no-boxes .partners-card,
.partners-no-boxes .partners-card:hover {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.partners-no-boxes .partners-card { padding: 12px 10px; }
.partners-no-boxes .partners-card:hover { transform: translateY(-2px); }

@media (max-width: 1024px) {
  .partners-cols-4 .partners-card { flex-basis: calc(50% - 9px); }
}
@media (max-width: 768px) {
  .partners-cols-3 .partners-card { flex-basis: calc(50% - 9px); }
}
@media (max-width: 420px) {
  .partners-cols-4 .partners-card,
  .partners-cols-3 .partners-card { flex-basis: calc(50% - 9px); min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════
   MODAL-EMBED SECTION
═══════════════════════════════════════════════════════════ */
.me-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.me-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.me-section.section-no-watermark::before { display: none; }
.me-section .container { position: relative; z-index: 2; }
.me-section.section-light { background: var(--bg); }
.me-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }

/* Text-Farben: Karte ist standardmäßig weiß → dunkler Text (außer Glas-Karte) */
.me-section .section-label { color: var(--primary); }
.me-title                  { color: var(--accent); }
.me-sub                    { color: var(--muted); }
/* Button auf der weißen Karte immer primärfarben (auch auf türkisem Section-Hintergrund) */
.me-section.section-bg-primary:not(.me-glass) .me-card .btn.primary {
  background: var(--primary); color: #fff; border: none; backdrop-filter: none; -webkit-backdrop-filter: none;
}
.me-section.section-bg-primary:not(.me-glass) .me-card .btn.primary:hover { background: var(--accent); color: #fff; }

/* Karte */
.me-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 4px 40px rgba(var(--accent-rgb), .13);
}
.me-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 8px 0 12px;
  line-height: 1.25;
}
.me-sub {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 8px;
}
.me-card .btn { margin-top: 24px; }

/* Glas-Effekt auf dunklem/farbigem Hintergrund */
.me-glass:not(.section-light) .me-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.me-glass:not(.section-light) .me-title { color: #fff; }
.me-glass:not(.section-light) .me-sub   { color: rgba(255,255,255,.80); }
.me-glass:not(.section-light) .section-label { color: rgba(255,255,255,.55); }

/* Modal Overlay */
.me-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.me-modal-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 80px rgba(0,0,0,.35);
}
.me-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.me-modal-close:hover { background: var(--bg-soft); color: var(--accent); }
.me-modal-content { margin-top: 4px; }

@media (max-width: 600px) {
  .me-card { padding: 32px 20px; }
  .me-modal-box { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   QUIZ SECTION
═══════════════════════════════════════════════════════════ */
.quiz-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: var(--accent);
}
.quiz-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.quiz-section.section-no-watermark::before { display: none; }
.quiz-section .container { position: relative; z-index: 2; }
.quiz-section.section-light              { background: var(--bg); }
.quiz-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }

/* Section-Label / -Titel */
.quiz-section:not(.section-light) .section-label { color: rgba(255, 255, 255, .50); }
.quiz-section.section-light .section-label        { color: var(--primary); }

/* Section-Überschrift */
.quiz-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 32px;
  text-align: center;
  color: var(--accent);
}
.quiz-section:not(.section-light) .quiz-section-title { color: #fff; }
.quiz-section.section-light .quiz-section-title       { color: var(--accent); }
.quiz-section:not(.section-light) .section-sub        { color: rgba(255,255,255,.72); }
.quiz-section.section-light .section-sub              { color: var(--muted); }

.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
}

/* ── Basis-Karte (hell / kein Glas) ─────────────────────── */
.quiz-step {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 6px 36px rgba(var(--accent-rgb), .10);
}

/* ── Glas-Karte: dunkler / Bild / Video / Primary-Hintergrund ── */
.quiz-glass:not(.section-light) .quiz-step {
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}
.quiz-glass:not(.section-light) .quiz-step:hover {
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .35);
}

/* ── Titel & Hint ─────────────────────────────────────────── */
.quiz-step-title {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--accent);
  text-align: center;
}
.quiz-glass:not(.section-light) .quiz-step-title { color: #fff; }

.quiz-step-hint {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}
.quiz-glass:not(.section-light) .quiz-step-hint { color: rgba(255, 255, 255, .62); }

/* Start / Disclaimer Buttons */
.quiz-start-btn,
.quiz-disclaimer-ok { display: block; margin: 8px auto 0; }

/* ── Fortschrittsbalken ───────────────────────────────────── */
.quiz-progress {
  width: 100%;
  height: 6px;
  background: rgba(var(--accent-rgb), .10);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}
.quiz-glass:not(.section-light) .quiz-progress { background: rgba(255, 255, 255, .18); }
.quiz-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}
.quiz-progress-label {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  margin: 0 0 20px;
}
.quiz-glass:not(.section-light) .quiz-progress-label { color: rgba(255, 255, 255, .55); }

/* ── Mehrfach-Hinweis ─────────────────────────────────────── */
.quiz-multi-hint {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 10px;
  text-align: center;
}
.quiz-glass:not(.section-light) .quiz-multi-hint { color: rgba(255,255,255,.65); }

/* ── Antwort-Buttons (Einzel- und Mehrfachauswahl) ────────── */
.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.quiz-answer-btn {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: rgba(var(--accent-rgb), .04);
  border: 2px solid rgba(var(--accent-rgb), .12);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  color: var(--accent);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
/* Hover nur auf Geräten mit echtem Zeiger – sonst „klebt" der Hover auf Touch
   und die erste Antwort wirkt sofort markiert. */
@media (hover: hover) {
  .quiz-answer-btn:hover:not(:disabled) {
    background: rgba(var(--primary-rgb), .12);
    border-color: var(--primary);
  }
}
.quiz-answer-btn:disabled { cursor: default; }

/* Ausgewählt — vor Auflösung */
.quiz-answer-btn.quiz-answer--selected {
  background: rgba(var(--primary-rgb), .18);
  border-color: var(--primary);
  color: var(--accent);
}

/* Auflösung: NUR der Rahmen ändert sich, Hintergrund bleibt */
.quiz-answer-btn.quiz-answer--correct {
  border-color: #22c55e !important;
  border-width: 2.5px !important;
  box-shadow: inset 0 0 0 1px #22c55e;
}
.quiz-answer-btn.quiz-answer--wrong {
  border-color: #d43333 !important;
  border-width: 2.5px !important;
  box-shadow: inset 0 0 0 1px #d43333;
}

/* ── "Antwort prüfen" Button ──────────────────────────────── */
.quiz-check-btn {
  display: block;
  margin: 20px auto 0;
}
.quiz-check-btn:disabled {
  opacity: .40;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Glas: Antwort-Buttons ────────────────────────────────── */
.quiz-glass:not(.section-light) .quiz-answer-btn {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .20);
  color: #fff;
}
@media (hover: hover) {
  .quiz-glass:not(.section-light) .quiz-answer-btn:hover:not(:disabled) {
    background: rgba(var(--primary-rgb), .25);
    border-color: var(--primary);
  }
}
.quiz-glass:not(.section-light) .quiz-answer-btn.quiz-answer--selected {
  background: rgba(var(--primary-rgb), .35);
  border-color: var(--primary);
  color: #fff;
}
.quiz-glass:not(.section-light) .quiz-answer-btn.quiz-answer--correct {
  border-color: #22c55e !important;
  border-width: 2.5px !important;
  box-shadow: inset 0 0 0 1px #22c55e;
}
.quiz-glass:not(.section-light) .quiz-answer-btn.quiz-answer--wrong {
  border-color: #d43333 !important;
  border-width: 2.5px !important;
  box-shadow: inset 0 0 0 1px #d43333;
}

/* ── Erklärung ────────────────────────────────────────────── */
.quiz-explanation {
  background: rgba(var(--primary-rgb), .08);
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.quiz-glass:not(.section-light) .quiz-explanation {
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .78);
}

/* Weiter-Button */
.quiz-next-btn { display: block; margin: 18px auto 0; }

/* ── Ergebnis-Screen ──────────────────────────────────────── */
.quiz-step--result { text-align: center; }

.quiz-result-pct-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2px;
}
.quiz-result-pct-label--sub {
  margin-top: 2px;
  margin-bottom: 18px;
}
.quiz-glass:not(.section-light) .quiz-result-pct-label { color: rgba(255,255,255,.60); }

.quiz-result-pct {
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -.02em;
}
.quiz-glass:not(.section-light) .quiz-result-pct { color: #fff; }

.quiz-result-text {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.6;
}
.quiz-glass:not(.section-light) .quiz-result-text { color: rgba(255, 255, 255, .72); }

.quiz-result-extra {
  background: rgba(var(--primary-rgb), .06);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 18px;
}
.quiz-result-extra h4 { font-size: 1rem; color: var(--accent); margin: 0 0 6px; }
.quiz-result-extra p  { font-size: 14px; color: var(--muted); margin: 0 0 12px; }
.quiz-glass:not(.section-light) .quiz-result-extra {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .15);
}
.quiz-glass:not(.section-light) .quiz-result-extra h4 { color: #fff; }
.quiz-glass:not(.section-light) .quiz-result-extra p  { color: rgba(255, 255, 255, .65); }

/* ── Haftungsausschluss ───────────────────────────────────── */
.quiz-disclaimer-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.quiz-disclaimer-text p { margin: 0 0 12px; }
.quiz-disclaimer-text p:last-child { margin-bottom: 0; }
.quiz-glass:not(.section-light) .quiz-disclaimer-text { color: rgba(255, 255, 255, .70); }

.quiz-disclaimer-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--accent);
  cursor: pointer;
  margin: 18px 0 20px;
  line-height: 1.5;
}
.quiz-disclaimer-check input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  cursor: pointer;
}
.quiz-glass:not(.section-light) .quiz-disclaimer-check { color: #fff; }

/* Disabled-State des Buttons */
.quiz-disclaimer-ok:disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 600px) {
  .quiz-step { padding: 24px 20px; }
  .quiz-answer-btn { font-size: 14px; }
}

/* ─── Funnel / Sales-CTA Section ──────────────────────────── */
.funnel-cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0;
  background: var(--accent);
}
.funnel-cta-section::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 1;
  background: var(--wm-img) center / cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.funnel-cta-section.section-no-watermark::before { display: none; }
.funnel-cta-section .container { position: relative; z-index: 2; }
.funnel-cta-section.section-light { background: var(--bg); }
.funnel-cta-section.section-light.section-bg-soft { background: var(--bg-soft) !important; }
.funnel-cta-section.section-bg-primary { background: var(--primary); }

.funnel-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}
/* Text-Ausrichtung (zentriert / linksbündig) */
.funnel-align--center .funnel-cta-inner,
.funnel-align--center .funnel-cta-content { text-align: center; }
.funnel-align--center .funnel-cta-inner .section-sub { margin-left: auto; margin-right: auto; }
.funnel-align--center .funnel-list { align-items: center; }
.funnel-align--left .funnel-cta-inner,
.funnel-align--left .funnel-cta-content { text-align: left; }
.funnel-align--left .funnel-list { align-items: flex-start; }
/* Glas-Panel um den gesamten Inhalt */
.funnel-glass:not(.section-light) .funnel-cta-inner {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.funnel-glass.section-light .funnel-cta-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(var(--accent-rgb),.10);
}

/* Header-Farben */
.funnel-cta-section:not(.section-light) .section-label { color: rgba(255,255,255,.55); }
.funnel-cta-section:not(.section-light) .section-title { color: #fff; }
.funnel-cta-section:not(.section-light) .section-sub   { color: rgba(255,255,255,.74); }
.funnel-cta-section.section-light .section-label { color: var(--primary); }
.funnel-cta-section.section-light .section-title { color: var(--accent); }
.funnel-cta-section.section-light .section-sub   { color: var(--muted); }

/* Inhaltsblöcke */
.funnel-cta-content { margin-top: 28px; }
.funnel-cta-content > *:last-child { margin-bottom: 0; }
.funnel-cta-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
}
.funnel-cta-section.section-light .funnel-cta-text { color: var(--muted); }

/* Liste mit wählbarem Marker (Punkt / Pfeil / Haken) */
.funnel-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.funnel-list li {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.funnel-cta-section.section-light .funnel-list li { color: var(--muted); }
.funnel-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}
.funnel-list--arrow .funnel-list li::before,
.funnel-list--check .funnel-list li::before {
  margin-top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--primary);
  font-weight: 800;
}
.funnel-list--arrow .funnel-list li::before { content: '→'; }
.funnel-list--check .funnel-list li::before { content: '✓'; }

/* Bild zwischen den Absätzen – kompakt */
.funnel-cta-img {
  margin: 4px 0 22px;
  max-width: 280px;
}
/* Bildgröße */
.funnel-cta-img--s    { max-width: 180px; }
.funnel-cta-img--m    { max-width: 280px; }
.funnel-cta-img--l    { max-width: 440px; }
.funnel-cta-img--full { max-width: 100%; }
.funnel-align--center .funnel-cta-img { margin-left: auto; margin-right: auto; }
.funnel-cta-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.20);
}
/* Freies Bild: kein Beschnitt, kein Schatten, keine Rundung (transparente PNGs/WEBPs) */
.funnel-cta-img--free img {
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
.funnel-cta-img figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
}
.funnel-cta-section.section-light .funnel-cta-img figcaption { color: var(--muted); }

/* CTA-Buttons – groß & zentriert */
.funnel-cta-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
/* Buttons nebeneinander (Umbruch auf kleinen Screens) */
.funnel-cta-actions--row {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.funnel-cta-actions--row .funnel-cta-btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 340px;
  padding: 17px 26px;
  font-size: 17px;
  white-space: normal;
}
.funnel-align--left .funnel-cta-actions { align-items: flex-start; }
.funnel-align--left .funnel-cta-actions--row {
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 560px) {
  .funnel-cta-actions--row { flex-direction: column; align-items: center; }
  .funnel-cta-actions--row .funnel-cta-btn { width: 100%; max-width: 100%; }
}
.funnel-cta-btn {
  display: inline-block;
  min-width: 280px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  padding: 20px 48px;
  font-family: inherit;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .01em;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}
.funnel-cta-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(var(--primary-rgb),.45);
}
.funnel-cta-btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(var(--primary-rgb),.55);
  color: #fff;
}
.funnel-cta-btn--ghost {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.funnel-cta-btn--ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-1px);
}
/* Ghost auf hellem Hintergrund / ungedimmt → dunkle Umrandung */
.funnel-cta-section.section-light .funnel-cta-btn--ghost,
.funnel-cta-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .funnel-cta-btn--ghost,
.section-glass-bright .funnel-cta-btn--ghost {
  background: transparent;
  border-color: rgba(var(--accent-rgb),.30);
  color: var(--accent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.funnel-cta-section.section-light .funnel-cta-btn--ghost:hover,
.funnel-cta-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .funnel-cta-btn--ghost:hover,
.section-glass-bright .funnel-cta-btn--ghost:hover {
  background: rgba(var(--accent-rgb),.07);
  border-color: rgba(var(--accent-rgb),.55);
  color: var(--accent);
}
/* Primär-Button auf Türkis-Hintergrund */
.funnel-cta-section.section-bg-primary .funnel-cta-btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.funnel-cta-section.section-bg-primary .funnel-cta-btn--primary:hover {
  background: rgba(255,255,255,.9);
  color: var(--accent);
}

/* Pulsieren (Call-to-Action) */
.funnel-cta-btn--pulse { animation: funnelPulse 1.7s ease-in-out infinite; }
.funnel-cta-btn--pulse:hover { animation: none; }
@keyframes funnelPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.055); }
}
@media (prefers-reduced-motion: reduce) {
  .funnel-cta-btn--pulse { animation: none; }
}

/* Button-Beschreibung darunter */
.funnel-cta-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
  text-align: center;
}
.funnel-cta-section.section-light .funnel-cta-note { color: var(--muted); }

/* No-Overlay (ungedimmtes Bild, ohne Glas): Body-Text dunkel lesbar */
.funnel-cta-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .funnel-cta-text,
.funnel-cta-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .funnel-list li {
  color: var(--accent) !important;
}
.funnel-cta-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .funnel-cta-note,
.funnel-cta-section.section-no-overlay:not(.section-light):not(.section-glass-bright) .funnel-cta-img figcaption {
  color: var(--muted) !important;
}

@media (max-width: 640px) {
  .funnel-cta-btn { min-width: 0; width: 100%; padding: 18px 28px; font-size: 17px; }
  .funnel-cta-actions--row .funnel-cta-btn {
    width: auto;
    max-width: 340px;
    padding: 16px 22px;
    font-size: 16px;
  }
  .funnel-glass:not(.section-light) .funnel-cta-inner,
  .funnel-glass.section-light .funnel-cta-inner { padding: 32px 22px; }
}

/* Pagebuilder-style check markers across all frontend sections */
:root {
  --pb-checkmark-width: 12px;
  --pb-checkmark-height: 12px;
  --pb-arrow-marker-size: 12px;
  --pb-dot-marker-size: 6px;
}
.about-split-paras ul.sb-list--check > li::before,
.haltung-intro ul.sb-list--check > li::before,
.cg-intro ul.sb-list--check > li::before,
.cg-card .about-split-paras ul.sb-list--check > li::before,
.text-section-content ul.sb-list--check > li::before,
.split-block-list--check .split-block-content ul > li::before,
.split-block-content ul.sb-list--check > li::before,
.sp-list--check .qual-list li::before,
.contact-list--check .contact-list li::before,
.product-card-list li::before,
.cg-list--check li::before,
.funnel-list--check .funnel-list li::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: var(--pb-checkmark-width);
  height: var(--pb-checkmark-height);
  border: 0;
  border-radius: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206.25%204.85%208.9%209.8%203.35%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272.15%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206.25%204.85%208.9%209.8%203.35%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272.15%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
  text-decoration: none;
}
.about-split-paras ul.sb-list--check > li::before,
.haltung-intro ul.sb-list--check > li::before,
.cg-intro ul.sb-list--check > li::before,
.cg-card .about-split-paras ul.sb-list--check > li::before,
.text-section-content ul.sb-list--check > li::before,
.product-card-list li::before,
.cg-list--check li::before {
  top: .62em;
}
.split-block-list--check .split-block-content ul > li::before,
.split-block-content ul.sb-list--check > li::before,
.sp-list--check .qual-list li::before,
.contact-list--check .contact-list li::before,
.funnel-list--check .funnel-list li::before {
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: .32em;
}

/* Font-independent arrow markers with rounded strokes */
.inline-arrow,
.about-split-paras ul:not(.sb-list--dot):not(.sb-list--check) > li::before,
.text-section-content ul:not(.sb-list--dot):not(.sb-list--check) > li::before,
.blog-article-content li::before,
.split-block-list--arrow .split-block-content ul > li::before,
.split-block-content ul.sb-list--arrow > li::before,
.sp-list--arrow .qual-list li::before,
.contact-list--arrow .contact-list li::before,
.cg-list--arrow li::before,
.funnel-list--arrow .funnel-list li::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: var(--pb-arrow-marker-size);
  height: var(--pb-arrow-marker-size);
  border: 0;
  border-radius: 0;
  color: var(--primary);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206h7.1M6.15%202.85L9.3%206%206.15%209.15%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206h7.1M6.15%202.85L9.3%206%206.15%209.15%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
  text-decoration: none;
}
.inline-arrow {
  vertical-align: -1px;
  margin-left: 3px;
}
.about-split-paras ul:not(.sb-list--dot):not(.sb-list--check) > li::before,
.text-section-content ul:not(.sb-list--dot):not(.sb-list--check) > li::before,
.blog-article-content li::before,
.cg-list--arrow li::before {
  top: .62em;
}
.split-block-list--arrow .split-block-content ul > li::before,
.split-block-content ul.sb-list--arrow > li::before,
.sp-list--arrow .qual-list li::before,
.contact-list--arrow .contact-list li::before,
.funnel-list--arrow .funnel-list li::before {
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: .32em;
}

/* Clean dot markers centered on the first text line */
.about-split-paras ul.sb-list--dot > li::before,
.text-section-content ul.sb-list--dot > li::before,
.split-block-list--dot .split-block-content ul > li::before,
.split-block-content ul.sb-list--dot > li::before,
.sp-list--dot .qual-list li::before,
.contact-list--dot .contact-list li::before,
.cg-list--dot li::before,
.funnel-list--dot .funnel-list li::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: var(--pb-dot-marker-size);
  height: var(--pb-dot-marker-size);
  border: 0;
  border-radius: 50%;
  color: var(--primary);
  background: currentColor;
  transform: none;
  text-decoration: none;
}
.about-split-paras ul.sb-list--dot > li::before,
.text-section-content ul.sb-list--dot > li::before,
.cg-list--dot li::before {
  left: 1px;
  top: .82em;
  transform: translateY(-50%);
}
.split-block-list--dot .split-block-content ul > li::before,
.split-block-content ul.sb-list--dot > li::before,
.sp-list--dot .qual-list li::before,
.contact-list--dot .contact-list li::before,
.funnel-list--dot .funnel-list li::before {
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: .62em;
}

/* Keep marker colors correct on primary/glass backgrounds after marker normalization */
.about-split-section.section-bg-primary .about-split-paras ul > li::before,
.haltung-section.section-bg-primary .haltung-intro ul > li::before,
.cg-section.section-bg-primary .cg-intro ul > li::before,
.split-block-section.section-bg-primary .split-block-intro ul > li::before,
.split-block-card-bg--primary .split-block-content ul > li::before,
.sp-section.section-bg-primary .qual-list li::before,
.contact-section.section-bg-primary .contact-list li::before,
.products-section.section-bg-primary .product-card-list li::before {
  color: #fff;
}
.split-block-card--glass .split-block-content ul > li::before,
.products-section--glass:not(.section-light) .product-card-list li::before,
.cg-glass:not(.section-light) .cg-list--check li::before,
.cg-glass:not(.section-light) .cg-list--arrow li::before,
.cg-glass:not(.section-light) .cg-list--dot li::before {
  color: rgba(255,255,255,.90);
}

/* Per-list rich-text marker overrides inside split blocks */
.split-block-content ul.sb-list--check > li::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: var(--pb-checkmark-width);
  height: var(--pb-checkmark-height);
  border: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206.25%204.85%208.9%209.8%203.35%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272.15%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206.25%204.85%208.9%209.8%203.35%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272.15%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: .32em;
}
.split-block-content ul.sb-list--arrow > li::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: var(--pb-arrow-marker-size);
  height: var(--pb-arrow-marker-size);
  border: 0;
  color: var(--primary);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206h7.1M6.15%202.85L9.3%206%206.15%209.15%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2012%2012%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2.2%206h7.1M6.15%202.85L9.3%206%206.15%209.15%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: .32em;
}
.split-block-content ul.sb-list--dot > li::before {
  content: '';
  display: inline-block;
  box-sizing: border-box;
  width: var(--pb-dot-marker-size);
  height: var(--pb-dot-marker-size);
  border: 0;
  border-radius: 50%;
  color: var(--primary);
  background: currentColor;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: .62em;
}
.split-block-card-bg--primary .split-block-content ul.sb-list--check > li::before,
.split-block-card-bg--primary .split-block-content ul.sb-list--arrow > li::before,
.split-block-card-bg--primary .split-block-content ul.sb-list--dot > li::before {
  color: #fff;
}

@media (max-width: 560px) {
  .funnel-cta-actions--row {
    flex-direction: column;
    align-items: center;
  }
  .funnel-cta-actions--row .funnel-cta-btn {
    width: 100%;
    max-width: 100%;
  }
}
