/*
Theme Name:   MPU Point Child
Theme URI:    https://mpu-point-direkt.de
Description:  Child-Theme für MPU Point Direkt. Brand-Tokens, Canvas-Templates, Editorial-Architecture-CSS.
Author:       22W Agency
Author URI:   https://22w-agency.com
Template:     extendable
Version:      1.0.6
Text Domain:  mpu-point-child
*/

/* === BRAND TOKENS ============================================ */
:root {
  --ink:        #0E2A1F;
  --ink-soft:   #16382A;
  --forest:     #1F5A3D;
  --forest-bright: #2E8055;
  --lime:       #C5DC5C;
  --lime-hi:    #DCEC8E;
  --lime-glow:  rgba(197, 220, 92, 0.32);
  --sand:       #F2EFE7;
  --paper:      #FAFAF7;
  --rule:       rgba(15, 17, 21, 0.08);
  --rule-light: rgba(255, 255, 255, 0.12);
  --muted:      #52565E;
  --muted-light: rgba(255, 255, 255, 0.62);

  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'DM Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;

  --container: 1200px;
  --container-narrow: 880px;
  --container-wide: 1400px;

  --rad-sm: 8px;
  --rad-md: 12px;
  --rad-lg: 24px;
  --rad-pill: 999px;

  --t-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-mid: 320ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-lg: 0 24px 60px -16px rgba(14, 42, 31, 0.35);
  --shadow-md: 0 8px 24px -8px rgba(14, 42, 31, 0.22);
}

/* === RESET + SAFETY NET ====================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
/* SVGs explicitly sized by class — never use global svg{width:100%}, breaks inline marks */

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Selection — Pattern 6 aus System-Prompt */
::selection { background: var(--lime); color: var(--ink); }
::-moz-selection { background: var(--lime); color: var(--ink); }

/* === TYPOGRAPHIC SCALE — Editorial Hierarchy ================= */
.h-display {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.h-1 {
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h-2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.h-3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.h-4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.body-lg {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  font-weight: 400;
}
.body { font-size: 15px; line-height: 1.6; }
.body-sm { font-size: 13px; line-height: 1.5; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-bright);
}
.eyebrow--light { color: var(--lime); }

.italic-accent {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* === LAYOUT PRIMITIVES ======================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section { padding-block: clamp(72px, 9vw, 140px); }
.section--tight { padding-block: clamp(48px, 6vw, 96px); }
.section--ink { background: var(--ink); color: #fff; }
.section--forest { background: var(--forest); color: #fff; }
.section--sand { background: var(--sand); color: var(--ink); }
.section--paper { background: var(--paper); color: var(--ink); }

/* === BUTTONS — sharp, geometric, brand-loyal ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 0;
  border-radius: var(--rad-pill);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.btn--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 0 var(--lime-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px var(--lime-glow), 0 0 0 4px var(--lime-glow);
}
.btn--ghost {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.btn--ghost:hover {
  background: currentColor;
  color: var(--ink);
}
.btn--xl {
  padding: 22px 36px;
  font-size: 18px;
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* === LINKS =================================================== */
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a.text-link {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--lime);
}
a.text-link:hover { color: var(--ink); text-decoration-color: var(--forest-bright); }

/* === HERO — asymmetric, dramatic ============================= */
.hero {
  position: relative;
  padding-block: clamp(96px, 12vw, 180px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* subtle noise + radial gradient atmosphere */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(197, 220, 92, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(46, 128, 85, 0.18) 0%, transparent 50%);
  z-index: -2;
}
.hero__watermark {
  position: absolute;
  right: -8%;
  bottom: -15%;
  width: 60vw;
  max-width: 700px;
  opacity: 0.08;
  z-index: -1;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.4fr 1fr; }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(197, 220, 92, 0.12);
  border: 1px solid rgba(197, 220, 92, 0.32);
  border-radius: var(--rad-pill);
  margin-bottom: 28px;
}
.hero__title {
  margin: 0 0 24px;
}
.hero__title em {
  color: var(--lime);
  font-style: italic;
  font-weight: 400;
}
.hero__sub {
  color: var(--muted-light);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero__meta {
  color: var(--muted-light);
  font-size: 13px;
}

/* Hero trust strip below CTA */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-light);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__trust-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lime);
}
.hero__trust-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-light);
}

/* === ANLASS CARDS — large clickable directional ============== */
.anlass-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .anlass-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .anlass-grid { grid-template-columns: repeat(4, 1fr); } }

.anlass-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 28px 28px;
  background: var(--paper);
  border-radius: var(--rad-md);
  box-shadow: inset 0 0 0 1px var(--rule);
  min-height: 280px;
  position: relative;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  overflow: hidden;
}
.anlass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), inset 0 0 0 1px var(--rule);
}
.anlass-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity var(--t-mid);
  z-index: 0;
}
.anlass-card:hover::after { opacity: 0.35; }
.anlass-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.anlass-card__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.anlass-card__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.anlass-card__arrow {
  align-self: flex-start;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  transition: background var(--t-fast), transform var(--t-fast);
  position: relative;
  z-index: 1;
}
.anlass-card:hover .anlass-card__arrow {
  background: var(--lime);
  transform: scale(1.1);
}
.anlass-card__arrow svg { width: 20px; height: 20px; color: var(--lime); transition: color var(--t-fast); }
.anlass-card:hover .anlass-card__arrow svg { color: var(--ink); }
.anlass-card__share {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* === SECTION-HEADERS ========================================= */
.sec-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
}
.sec-head__eyebrow {
  margin-bottom: 16px;
}
.sec-head__title {
  margin: 0 0 16px;
}
.sec-head__lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--muted);
  line-height: 1.55;
}
.section--ink .sec-head__lead { color: var(--muted-light); }
.section--ink .sec-head__eyebrow { color: var(--lime); }

/* === TRUST PROOFS — split layout ============================= */
.trust-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 960px) {
  .trust-split { grid-template-columns: 1fr 1.1fr; }
}
.trust-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border-radius: var(--rad-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.trust-img img { width: 100%; height: 100%; object-fit: cover; }
.trust-img__sticker {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 14px;
  background: var(--lime);
  color: var(--ink);
  border-radius: var(--rad-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-content > * + * { margin-top: 24px; }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.trust-stat__num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--forest);
  line-height: 1;
}
.trust-stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* === PROCESS — steps with vertical line ====================== */
.process {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 720px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule-light);
  border-radius: var(--rad-md);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: '0' counter(step);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--lime);
}
.process-step__title {
  margin: 16px 0 12px;
}
.process-step__desc {
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.55;
}

/* === FINAL CTA STRIP ========================================= */
.cta-strip {
  background: var(--lime);
  color: var(--ink);
  padding-block: clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 720px) {
  .cta-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; }
}
.cta-strip__title {
  margin: 0;
  flex: 1;
}
.cta-strip__btn {
  background: var(--ink);
  color: #fff;
  flex-shrink: 0;
}
.cta-strip__btn:hover {
  background: var(--ink);
  color: var(--lime);
}

/* === FOOTER ================================================== */
.site-footer {
  background: var(--ink);
  color: var(--muted-light);
  padding-block: clamp(48px, 6vw, 80px);
  font-size: 14px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.site-footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--lime); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === MOBILE BREAKPOINTS ====================================== */
@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .hero { padding-block: 80px; }
  .hero__trust { gap: 20px; }
  .trust-stats { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
}
@media (max-width: 480px) {
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn--xl { padding: 18px 28px; font-size: 16px; }
  .hero__trust { flex-direction: column; align-items: flex-start; }
}

/* === REVEAL ANIMATION (CSS-only, scroll-triggered via intersection) === */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-delay="100"] { transition-delay: 100ms; }
  .reveal[data-delay="200"] { transition-delay: 200ms; }
  .reveal[data-delay="300"] { transition-delay: 300ms; }
  .reveal[data-delay="400"] { transition-delay: 400ms; }
}

/* === HEADER NAV ============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 42, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule-light);
  color: #fff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.site-logo svg { width: 36px; height: 36px; }
.site-logo__wordmark { line-height: 0.95; }
.site-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 960px) { .site-nav { display: flex; } }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-light);
  transition: color var(--t-fast);
}
.site-nav a:hover { color: #fff; }
.site-header__cta {
  padding: 10px 18px;
  font-size: 14px;
}

/* === ARROW MARK COMPONENT (reusable SVG inline-style) ======== */
.arrow-mark {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

/* === CANVAS PAGE OVERRIDE ==================================== */
body.page-template-fullscreen .site-header,
body.page-template-fullscreen .site-footer { display: none; }
body.page-template-fullscreen { background: var(--paper); }

/* =================================================================
 * MP-DESIGN-SYSTEM (reusable across all pages)
 * ================================================================= */

/* Site-Header (sticky) */
.mp-header { position: sticky; top: 0; z-index: 100; background: rgba(14,42,31,0.92); backdrop-filter: saturate(140%) blur(16px); -webkit-backdrop-filter: saturate(140%) blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); color: #fff; }
.mp-header__inner { max-width: 1640px; margin: 0 auto; padding: 14px clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mp-logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.mp-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.mp-logo__word { display: flex; flex-direction: column; gap: 1px; }
.mp-logo__top, .mp-logo__bot { font-size: 16px; }
.mp-logo__img { height: 36px; width: auto; display: block; }
.mp-nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 900px) { .mp-nav { display: flex; } }
.mp-nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 160ms; }
.mp-nav a:hover { color: #fff; }
.mp-header__cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #C5DC5C; color: #0E2A1F; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; letter-spacing: -0.005em; transition: transform 160ms; }
.mp-header__cta:hover { transform: translateY(-1px); }
.mp-header__cta svg { width: 12px; height: 12px; }

/* Section System */
.mp-section { padding-block: clamp(72px, 9vw, 120px); }
.mp-section--paper { background: #FAFAF7; color: #0E2A1F; }
.mp-section--sand { background: #F2EFE7; color: #0E2A1F; }
.mp-section--ink { background: #0E2A1F; color: #fff; }
.mp-section--ink-soft { background: #16382A; color: #fff; }
.mp-section--lime { background: #C5DC5C; color: #0E2A1F; }
.mp-container { max-width: 1640px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 80px); }
.mp-container--narrow { max-width: 1080px; }

/* Eyebrow + Headlines (global) */
.mp-eyebrow { display: block; font-family: 'DM Mono', ui-monospace, monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #2E8055; margin-bottom: 14px; }
.mp-section--ink .mp-eyebrow, .mp-section--ink-soft .mp-eyebrow { color: #C5DC5C; }
.mp-h2 { font-family: 'DM Sans', sans-serif; font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; margin: 0; }
.mp-h2 em { font-style: italic; font-weight: 400; color: #1F5A3D; }
.mp-section--ink .mp-h2 em, .mp-section--ink-soft .mp-h2 em { color: #C5DC5C; }
.mp-lead { font-size: 17px; line-height: 1.6; color: #52565E; max-width: 56ch; }
.mp-section--ink .mp-lead, .mp-section--ink-soft .mp-lead { color: rgba(255,255,255,0.7); }

/* Buttons */
.mp-btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 28px; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.005em; text-decoration: none; border: 0; border-radius: 999px; cursor: pointer; transition: all 180ms cubic-bezier(0.2,0.8,0.2,1); white-space: nowrap; }
.mp-btn--primary { background: #C5DC5C; color: #0E2A1F; }
.mp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(197,220,92,0.45); }
.mp-btn--ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1.5px currentColor; }
.mp-btn--ghost:hover { background: rgba(255,255,255,0.06); }
.mp-btn--dark { background: #0E2A1F; color: #C5DC5C; }
.mp-btn--dark:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(14,42,31,0.4); }
.mp-btn svg { width: 16px; height: 16px; transition: transform 180ms; }
.mp-btn:hover svg { transform: translate(2px, -2px); }
.mp-btn--lg { padding: 20px 32px; font-size: 17px; }

/* Hero (Page-Hero, reusable on persona pages too) */
.mp-hero { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(125deg, #0A2217 0%, #123A2C 52%, #0C2519 100%); color: #fff; padding: clamp(72px, 9vw, 140px) 0 clamp(64px, 8vw, 120px); }
.mp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 85% 15%, rgba(197,220,92,0.14) 0%, transparent 60%), radial-gradient(ellipse 80% 70% at 10% 95%, rgba(46,128,85,0.20) 0%, transparent 55%); z-index: -2; }
.mp-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.035) 1px, transparent 0); background-size: 36px 36px; opacity: 0.7; z-index: -1; }
.mp-hero__inner { max-width: 1640px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 80px); position: relative; }
.mp-hero__watermark { position: absolute; right: -6%; top: -8%; width: 36vw; max-width: 460px; opacity: 0.07; pointer-events: none; transform: rotate(-10deg); color: #C5DC5C; }
.mp-hero__watermark svg { width: 100%; height: auto; }
.mp-hero__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 960px) { .mp-hero__grid { grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr); gap: clamp(40px, 5vw, 80px); } }
.mp-hero__main { min-width: 0; }
.mp-hero__pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(197,220,92,0.08); border: 1px solid rgba(197,220,92,0.32); border-radius: 999px; font-family: 'DM Mono', ui-monospace, monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #DCEC8E; margin-bottom: 32px; }
.mp-hero__pill svg { width: 12px; height: 12px; }
.mp-hero__title { font-family: 'DM Sans', sans-serif; font-size: clamp(40px, 5.6vw, 80px); font-weight: 700; letter-spacing: -0.035em; line-height: 0.98; margin: 0 0 24px; max-width: 14ch; }
.mp-hero__title em { font-style: italic; font-weight: 400; color: #C5DC5C; }
.mp-hero__sub { font-size: clamp(16px, 1.3vw, 19px); color: rgba(255,255,255,0.7); max-width: 50ch; line-height: 1.55; margin: 0 0 36px; }
.mp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.mp-hero__meta { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-top: 20px; }
.mp-hero__reviews { display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; padding: 9px 16px 9px 13px; background: #fff; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.mp-hero__reviews-g { flex: none; display: block; }
.mp-hero__reviews-body { display: flex; flex-direction: column; gap: 3px; }
.mp-hero__reviews-row { display: flex; align-items: center; gap: 8px; }
.mp-hero__reviews-score { font-size: 18px; font-weight: 700; color: #1f2328; letter-spacing: -0.01em; line-height: 1; }
.mp-hero__reviews-stars { display: inline-flex; gap: 1px; }
.mp-hero__reviews-stars svg { display: block; }
.mp-hero__reviews-sub { font-size: 12px; line-height: 1; color: #5f6368; }
.mp-hero__side { display: flex; flex-direction: column; gap: 16px; }

/* ---- Centered hero (Facebook-cover style) ---- */
.mp-hero__accent { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, transparent, #C5DC5C 28%, #C5DC5C 72%, transparent); opacity: 0.85; z-index: 3; }
.mp-hero--center .mp-hero__grid { grid-template-columns: 1fr; justify-items: center; }
.mp-hero--center .mp-hero__watermark { right: -7%; top: 50%; left: auto; max-width: 600px; width: 40vw; transform: translateY(-50%) rotate(0deg); opacity: 0.06; }
.mp-hero--center .mp-hero__main { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 960px; }
.mp-hero--center .mp-hero__title { max-width: none; margin-bottom: 22px; }
.mp-hero--center .mp-hero__sub { max-width: 56ch; margin-left: auto; margin-right: auto; margin-bottom: 4px; }
.mp-hero--center .mp-hero__actions { justify-content: center; }
.mp-hero__stats { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; margin: 30px 0 38px; }
.mp-hero__stat { padding: 0 30px; text-align: center; }
.mp-hero__stat .v { display: block; font-family: 'DM Sans', sans-serif; font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: #C5DC5C; line-height: 1; }
.mp-hero__stat .l { display: block; margin-top: 8px; font-family: 'DM Mono', ui-monospace, monospace; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.mp-hero__stat-div { width: 1px; height: 44px; background: rgba(255,255,255,0.16); }

/* Stat-Card (in Hero side panel) */
.mp-stat { padding: 24px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; backdrop-filter: blur(10px); }
.mp-stat__num { font-size: clamp(36px, 4vw, 54px); font-weight: 700; letter-spacing: -0.03em; color: #C5DC5C; line-height: 1; }
.mp-stat__lbl { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 10px; }
.mp-stat__txt { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 10px; line-height: 1.5; }

/* Trust-Bar im Hero (6 Punkte mit Check-Icons) */
.mp-hero__trust-bar { margin-top: clamp(48px, 6vw, 80px); padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
@media (min-width: 720px) { .mp-hero__trust-bar { grid-template-columns: repeat(3, 1fr); gap: 20px 32px; } }
@media (min-width: 1280px) { .mp-hero__trust-bar { grid-template-columns: repeat(6, 1fr); gap: 16px 24px; } }
.mp-hero__trust-item { display: flex; align-items: center; gap: 10px; min-width: 0; }
.mp-hero__trust-check { width: 28px; height: 28px; border-radius: 50%; background: rgba(197,220,92,0.14); border: 1px solid rgba(197,220,92,0.40); display: grid; place-items: center; color: #C5DC5C; flex-shrink: 0; transition: all 200ms cubic-bezier(0.2,0.8,0.2,1); }
.mp-hero__trust-item:hover .mp-hero__trust-check { background: #C5DC5C; color: #0E2A1F; transform: scale(1.05); }
.mp-hero__trust-txt { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: #fff; line-height: 1.25; }
@media (max-width: 480px) { .mp-hero__trust-txt { font-size: 13px; } }

/* alte marquee-styles entfernt — durch trust-bar ersetzt */

/* Grid utility */
.mp-grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .mp-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .mp-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Final CTA strip (lime, reusable on every page) */
.mp-final { position: relative; overflow: hidden; }
.mp-final::before { content: ''; position: absolute; right: -8%; top: -25%; width: 45vw; max-width: 480px; height: 160%; opacity: 0.10; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M14 64 L64 14 L80 30 L30 80 Z' fill='%230E2A1F'/><path d='M40 14 L86 14 L86 60 Z' fill='%230E2A1F'/></svg>"); background-size: contain; background-repeat: no-repeat; transform: rotate(-16deg); pointer-events: none; }
.mp-final__inner { position: relative; display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
@media (min-width: 800px) { .mp-final__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; } }
.mp-final__title { font-family: 'DM Sans', sans-serif; font-size: clamp(32px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; margin: 0; max-width: 720px; }
.mp-final__title em { font-style: italic; font-weight: 400; }

/* Trust Card with Sascha (reusable) */
.mp-trust__inner { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
@media (min-width: 960px) { .mp-trust__inner { grid-template-columns: 0.9fr 1.1fr; } }
.mp-trust__img { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5); background: #16382A; }
.mp-trust__img img { width: 100%; height: 100%; object-fit: cover; }
.mp-trust__sticker { position: absolute; top: 18px; right: 18px; padding: 8px 14px; background: #C5DC5C; color: #0E2A1F; border-radius: 999px; font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.mp-trust__sig { position: absolute; bottom: 18px; left: 18px; right: 18px; padding: 14px 18px; background: rgba(14,42,31,0.82); backdrop-filter: blur(12px); border-radius: 10px; border: 1px solid rgba(255,255,255,0.10); }
.mp-trust__sig-name { font-weight: 700; font-size: 16px; letter-spacing: -0.015em; color: #fff; }
.mp-trust__sig-title { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #C5DC5C; margin-top: 3px; }
.mp-trust__title { font-family: 'DM Sans', sans-serif; font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; margin: 0 0 20px; }
.mp-trust__title em { font-style: italic; font-weight: 400; color: #C5DC5C; }
.mp-trust__lead { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.6; margin: 0 0 32px; }
.mp-trust__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10); }
@media (max-width: 480px) { .mp-trust__stats { grid-template-columns: 1fr; gap: 14px; } }
.mp-trust__stat-num { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.025em; color: #C5DC5C; line-height: 1; }
.mp-trust__stat-lbl { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* Footer */
.mp-footer { background: #0E2A1F; color: rgba(255,255,255,0.7); padding-block: clamp(56px, 7vw, 88px); font-size: 14px; }
.mp-footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 720px) { .mp-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.mp-footer__brand-row { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 14px; }
.mp-footer__brand-row svg { width: 32px; height: 32px; }
.mp-footer__brand-line { font-size: 17px; line-height: 1; }
.mp-footer__logo { height: 32px; width: auto; display: block; }
.mp-footer__brand-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; max-width: 28ch; }
.mp-footer h5 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 14px; font-weight: 600; }
.mp-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.mp-footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 160ms; }
.mp-footer a:hover { color: #C5DC5C; }
.mp-footer__strip { display: flex; flex-wrap: wrap; gap: 24px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.10); border-bottom: 1px solid rgba(255,255,255,0.10); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.mp-footer__strip span { display: flex; align-items: center; gap: 8px; }
.mp-footer__strip-dot { width: 5px; height: 5px; border-radius: 50%; background: #C5DC5C; }
.mp-footer__bot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Footer Social Icons */
.mp-footer__social { display: flex; gap: 12px; margin-top: 22px; }
.mp-footer__social a { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.82); transition: all 260ms cubic-bezier(0.2,0.8,0.2,1); }
.mp-footer__social a:hover { background: #C5DC5C; border-color: #C5DC5C; color: #0E2A1F; transform: translateY(-3px); box-shadow: 0 12px 28px -10px rgba(197,220,92,0.5); }
.mp-footer__social a.is-soon { opacity: 0.45; cursor: not-allowed; }
.mp-footer__social a.is-soon:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.82); transform: none; box-shadow: none; }
.mp-footer__social a svg { display: block; width: 22px; height: 22px; }

/* === PROSE STYLES (für content pages) ======================== */
.prose {
  max-width: 720px;
  margin-inline: auto;
  color: var(--ink);
}
.prose > * + * { margin-top: 24px; }
.prose h2 { font-size: 32px; letter-spacing: -0.02em; margin-top: 56px; }
.prose h3 { font-size: 22px; letter-spacing: -0.015em; margin-top: 40px; }
.prose p { line-height: 1.7; font-size: 17px; }
.prose ul, .prose ol { padding-left: 1.4em; line-height: 1.7; }
.prose li { margin-block: 6px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--lime); }

/* === SYMPTOM-ANKER IM HERO ============================= */
.mp-hero__symptom { display: inline-flex; align-items: center; gap: 12px; font-family: 'DM Mono', ui-monospace, monospace; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 20px; }
.mp-hero__symptom::before { content: ''; width: 22px; height: 1px; background: rgba(197,220,92,0.55); }

/* === HOELLE-ZU-HIMMEL PIVOT-SECTION ===================== */
.mp-pivot { background: #FAFAF7; }
.mp-pivot__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.mp-pivot__head .mp-h2 { margin-inline: auto; }
.mp-pivot__split { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; position: relative; }
@media (min-width: 880px) { .mp-pivot__split { grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; } }
.mp-pivot__col { padding: clamp(32px, 4vw, 52px); border-radius: 18px; position: relative; }
.mp-pivot__col--before { background: #0E2A1F; color: #fff; }
.mp-pivot__col--after { background: #C5DC5C; color: #0E2A1F; }
.mp-pivot__lbl { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; opacity: 0.72; display: flex; align-items: center; gap: 10px; }
.mp-pivot__lbl-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.mp-pivot__title { font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.18; margin: 0 0 24px; }
.mp-pivot__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.mp-pivot__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; }
.mp-pivot__list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.mp-pivot__col--before .mp-pivot__list li svg { color: rgba(255,255,255,0.5); }
.mp-pivot__col--after .mp-pivot__list li svg { color: #1F5A3D; }
.mp-pivot__arrow { display: none; align-self: center; padding: 0 14px; opacity: 0.55; }
@media (min-width: 880px) { .mp-pivot__arrow { display: flex; } }
.mp-pivot__arrow svg { width: 34px; height: 34px; color: #1F5A3D; }

/* === SASCHA BIO-LIST ===================================== */
.mp-trust__bio { list-style: none; padding: 0; display: grid; gap: 14px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10); margin: 0 0 28px; }
.mp-trust__bio li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.55; }
.mp-trust__bio li svg { width: 18px; height: 18px; flex-shrink: 0; color: #C5DC5C; margin-top: 2px; }
.mp-trust__bio li strong { color: #fff; font-weight: 600; }
.mp-trust__quote { font-family: 'DM Sans', sans-serif; font-size: 17px; font-style: italic; line-height: 1.5; color: rgba(255,255,255,0.88); padding: 18px 22px; border-left: 3px solid #C5DC5C; background: rgba(197,220,92,0.04); border-radius: 0 10px 10px 0; }

/* === 5-SCHRITTE-METHODIK PATH ============================ */
.mp-method__head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.mp-method__head .mp-lead { margin-inline: auto; }
.mp-method__path { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 920px; margin: 0 auto; position: relative; }
@media (min-width: 720px) { .mp-method__path::before { content: ''; position: absolute; left: 28px; top: 36px; bottom: 36px; width: 2px; background: linear-gradient(180deg, rgba(197,220,92,0.55), rgba(197,220,92,0.12)); } }
.mp-method__step { display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: flex-start; position: relative; }
.mp-method__step-num { width: 58px; height: 58px; border-radius: 50%; background: #0E2A1F; border: 2px solid rgba(197,220,92,0.5); color: #C5DC5C; display: grid; place-items: center; font-family: 'DM Mono', monospace; font-size: 15px; font-weight: 700; flex-shrink: 0; position: relative; z-index: 2; transition: all 220ms cubic-bezier(0.2,0.8,0.2,1); box-shadow: 0 0 0 6px #0E2A1F; }
.mp-method__step:hover .mp-method__step-num { background: #C5DC5C; color: #0E2A1F; border-color: #C5DC5C; transform: scale(1.06); }
.mp-method__step-body { padding-top: 6px; }
.mp-method__step-meta { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #C5DC5C; margin-bottom: 8px; }
.mp-method__step h3 { font-family: 'DM Sans', sans-serif; font-size: clamp(18px, 2vw, 22px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; color: #fff; line-height: 1.22; }
.mp-method__step p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

/* === KEIN-SALES-PROMISE-STREIFEN ========================= */
.mp-promise { background: #F2EFE7; color: #0E2A1F; padding-block: clamp(48px, 5vw, 80px); border-block: 1px solid rgba(14,42,31,0.08); }
.mp-promise__inner { max-width: 1100px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 60px); display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 820px) { .mp-promise__inner { grid-template-columns: auto 1fr; gap: 36px; } }
.mp-promise__icon { width: 64px; height: 64px; border-radius: 50%; background: #0E2A1F; display: grid; place-items: center; color: #C5DC5C; flex-shrink: 0; justify-self: start; }
.mp-promise__icon svg { width: 28px; height: 28px; }
.mp-promise__body { display: grid; gap: 8px; }
.mp-promise__lbl { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #2E8055; }
.mp-promise__txt { font-family: 'DM Sans', sans-serif; font-size: clamp(18px, 1.8vw, 24px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.4; margin: 0; color: #0E2A1F; }
.mp-promise__txt strong { color: #1F5A3D; font-weight: 700; }

/* === Hero Sub Strong Highlight =========================== */
.mp-hero__sub strong { color: #C5DC5C; font-weight: 600; }

/* ============================================================
   MOBILE-FIXES (overflow + sizing)
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100vw; }

@media (max-width: 720px) {
  /* Hero Pill: enger setzen + wrap */
  .mp-hero__pill { font-size: 10px; padding: 7px 12px; letter-spacing: 0.10em; max-width: 100%; flex-wrap: wrap; line-height: 1.4; }
  .mp-hero__pill svg { width: 11px; height: 11px; }

  /* Hero Title: enger Skalierung */
  .mp-hero__title { font-size: clamp(30px, 8vw, 44px); max-width: 100%; }

  /* Hero Sub: nicht mehr 50ch sondern container-breit */
  .mp-hero__sub { max-width: 100%; font-size: 15px; line-height: 1.55; }

  /* Hero Stat-Reihe kompakter */
  .mp-hero__stats { margin: 24px 0 30px; }
  .mp-hero__stat { padding: 0 9px; }
  .mp-hero__stat .v { font-size: 20px; }
  .mp-hero__stat .l { font-size: 8.5px; letter-spacing: 0.04em; white-space: nowrap; }
  .mp-hero__stat-div { height: 32px; }

  /* Stat-Texte nicht überlaufen lassen */
  .mp-stat__num { font-size: 36px; }
  .mp-stat__lbl, .mp-stat__txt { max-width: 100%; word-wrap: break-word; overflow-wrap: anywhere; }

  /* Hero Meta: kleinere font */
  .mp-hero__meta { font-size: 11px; letter-spacing: 0.04em; }

  /* Pivot Lists: verhindern overflow */
  .mp-pivot__title, .mp-pivot__list li, .mp-trust__quote { word-wrap: break-word; overflow-wrap: anywhere; }
}

@media (max-width: 480px) {
  /* Header: CTA kleiner + Logo kompakter */
  .mp-header__inner { padding: 12px 16px; gap: 12px; }
  .mp-header__cta { padding: 8px 12px; font-size: 11px; gap: 6px; letter-spacing: 0; }
  .mp-header__cta svg { width: 10px; height: 10px; }
  .mp-logo svg { width: 30px; height: 30px; }
  .mp-logo__top, .mp-logo__bot { font-size: 14px; }
  .mp-logo__img { height: 30px; }

  /* Hero: weniger padding */
  .mp-hero__inner { padding-inline: 18px; }
  .mp-hero { padding-top: clamp(48px, 8vw, 72px); padding-bottom: clamp(48px, 8vw, 80px); }
  .mp-hero__pill { font-size: 9.5px; }

  /* Container überall enger */
  .mp-container { padding-inline: 18px; }

  /* Promise-Icon kleiner */
  .mp-promise__icon { width: 52px; height: 52px; }
  .mp-promise__icon svg { width: 22px; height: 22px; }
  .mp-promise__txt { font-size: 16px; }

  /* 5-Schritte: numbers tighter */
  .mp-method__step { grid-template-columns: 48px 1fr; gap: 16px; }
  .mp-method__step-num { width: 48px; height: 48px; font-size: 13px; }
  .mp-method__path::before { left: 23px !important; }

  /* Diff rows */
  .home-diff__lbl { font-size: 18px; }
  .home-diff__txt { font-size: 14px; }

  /* Trust Section: image height */
  .mp-trust__img { aspect-ratio: 1/1; }

  /* Headlines: word-wrap safety auf mobile */
  .mp-hero__title, .mp-h2, .home-bonus__copy h2, .mp-pivot__title, .mp-trust__title, .mp-method__step h3, .home-card__title { overflow-wrap: anywhere; }

  /* Bonus Copy enger */
  .home-bonus__copy h2 { font-size: 28px; line-height: 1.1; }
  .home-bonus__copy p, .home-bonus__bullets li { font-size: 14px; }
  .home-bonus__inner { gap: 32px; }
  .home-bonus__mock { max-width: 260px; }

  /* Promise: word-wrap + smaller */
  .mp-promise__txt { word-wrap: break-word; overflow-wrap: anywhere; font-size: 15px; }
  .mp-promise__inner { padding-inline: 18px; }

  /* Bonus CTA full-width auf mobile */
  .home-bonus__cta { width: 100%; justify-content: center; box-sizing: border-box; }

  /* Final CTA: smaller padding + word-wrap */
  .mp-final__title { word-wrap: break-word; overflow-wrap: anywhere; }
}

/* ============================================================
   HERO COMPARISON STAT (98,8 vs 38) — Mit-Ohne-Vergleich
   ============================================================ */
.mp-stat--vs { background: rgba(197,220,92,0.05); border-color: rgba(197,220,92,0.22); position: relative; overflow: hidden; }
.mp-stat--vs::before { content: ''; position: absolute; top: -30%; right: -15%; width: 60%; height: 90%; background: radial-gradient(ellipse, rgba(197,220,92,0.20) 0%, transparent 70%); filter: blur(36px); pointer-events: none; z-index: 0; }
.mp-stat__vs-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: end; margin-bottom: 14px; position: relative; z-index: 1; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.mp-stat__vs-col { display: grid; gap: 4px; min-width: 0; }
.mp-stat__vs-col--our .mp-stat__num { color: #C5DC5C; font-size: clamp(38px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.mp-stat__vs-col--other { text-align: right; }
.mp-stat__vs-col--other .mp-stat__num { color: rgba(255,255,255,0.5); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.3); text-decoration-thickness: 2px; }
.mp-stat__vs-sublbl { font-family: 'DM Mono', monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.mp-stat__vs-col--our .mp-stat__vs-sublbl { color: rgba(197,220,92,0.78); }
.mp-stat__vs-col--other .mp-stat__vs-sublbl { color: rgba(255,255,255,0.42); }
.mp-stat__vs-divider { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: rgba(255,255,255,0.4); padding: 0 4px 6px; align-self: end; }

/* ============================================================
   ANLASS-HEAD (Lead unter H2 statt rechts)
   ============================================================ */
.home-anlass-head { display: block !important; max-width: 880px; margin-bottom: clamp(40px, 5vw, 64px); }
.home-anlass-head .mp-h2 { margin-bottom: 18px; }
.home-anlass-head .mp-lead { max-width: 60ch; }

/* ============================================================
   MANIFESTO QUOTE CENTERED
   ============================================================ */
.home-manifesto__line { margin: 0 auto 28px !important; }
.home-manifesto__quote { text-align: center; margin-inline: auto !important; }
.home-manifesto__src { justify-content: center; }

/* ============================================================
   PROCESS STEPS ON WHITE (paper section)
   ============================================================ */
.mp-section--paper .home-process__step { background: #fff; border: 1px solid rgba(15,17,21,0.08); box-shadow: 0 1px 3px rgba(15,17,21,0.04); }
.mp-section--paper .home-process__step:hover { background: rgba(197,220,92,0.06); border-color: rgba(197,220,92,0.4); transform: translateY(-3px); box-shadow: 0 14px 32px -10px rgba(14,42,31,0.14); }
.mp-section--paper .home-process__step-num { color: #2E8055; }
.mp-section--paper .home-process__step h3 { color: #0E2A1F; }
.mp-section--paper .home-process__step p { color: #52565E; }

/* ============================================================
   BONUS COVER MOBILE
   ============================================================ */
@media (max-width: 720px) {
  .home-bonus__mock { max-width: 260px; }
  .home-bonus__cover { transform: rotate(-2deg); }
}

/* ============================================================
   SOCIAL PROOF SECTION (Marquee Testimonials)
   ============================================================ */
.mp-social { background: #0E2A1F; color: #fff; padding-block: clamp(72px, 9vw, 120px); overflow: hidden; position: relative; }
.mp-social::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(197,220,92,0.10) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 50% 100%, rgba(46,128,85,0.18) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.mp-social > * { position: relative; z-index: 1; }
.mp-social__head { text-align: center; max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); padding-inline: clamp(24px, 5vw, 60px); }
.mp-social__head .mp-eyebrow { color: #C5DC5C; }
.mp-social__head .mp-h2 { color: #fff; margin-inline: auto; }
.mp-social__head .mp-h2 em { color: #C5DC5C; }
.mp-social__rating { display: inline-flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 28px; }
.mp-social__rating-row { display: flex; align-items: baseline; gap: 14px; }
.mp-social__rating-num { font-family: 'DM Sans', sans-serif; font-size: clamp(56px, 7vw, 92px); font-weight: 700; line-height: 1; letter-spacing: -0.04em; color: #C5DC5C; }
.mp-social__rating-of { font-family: 'DM Mono', monospace; font-size: 14px; letter-spacing: 0.10em; color: rgba(255,255,255,0.5); }
.mp-social__stars { display: flex; gap: 5px; }
.mp-social__stars svg { width: 28px; height: 28px; color: #C5DC5C; filter: drop-shadow(0 0 8px rgba(197,220,92,0.4)); }
.mp-social__rating-sub { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.mp-social__marquee { position: relative; overflow: hidden; padding-block: 14px; mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); }
.mp-social__track { display: flex; gap: 18px; width: max-content; animation: mp-marquee 60s linear infinite; padding-inline: 9px; }
.mp-social__track--reverse { animation-direction: reverse; animation-duration: 75s; }
.mp-social__marquee:hover .mp-social__track { animation-play-state: paused; }
@keyframes mp-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.mp-social__card { flex-shrink: 0; width: 320px; padding: 22px 22px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; display: grid; gap: 14px; transition: all 220ms; }
.mp-social__card:hover { background: rgba(197,220,92,0.05); border-color: rgba(197,220,92,0.22); transform: translateY(-3px); }
.mp-social__card-stars { display: flex; gap: 3px; color: #C5DC5C; }
.mp-social__card-stars svg { width: 14px; height: 14px; }
.mp-social__card-quote { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.86); margin: 0; }
.mp-social__card-foot { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.mp-social__card-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(197,220,92,0.14); border: 1px solid rgba(197,220,92,0.36); display: grid; place-items: center; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: #C5DC5C; flex-shrink: 0; }
.mp-social__card-info { display: grid; gap: 2px; min-width: 0; flex: 1; }
.mp-social__card-name { font-size: 13.5px; font-weight: 600; color: #fff; line-height: 1.25; }
.mp-social__card-meta { font-family: 'DM Mono', monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mp-social__card-verified { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #C5DC5C; display: inline-flex; align-items: center; gap: 4px; }
.mp-social__card-verified svg { width: 10px; height: 10px; }

@media (max-width: 480px) {
  .mp-social__card { width: 280px; }
  .mp-social__rating-num { font-size: 52px; }
  .mp-social__stars svg { width: 22px; height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .mp-social__track { animation: none; }
}

/* === BEWEISE: Image in Testimonial Card =========== */
.mp-social__card { width: 340px; }
.mp-social__card-image { position: relative; aspect-ratio: 4/5; border-radius: 10px; overflow: hidden; background: rgba(0,0,0,0.35); cursor: zoom-in; transition: transform 240ms cubic-bezier(0.2,0.8,0.2,1); margin-top: -2px; }
.mp-social__card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 320ms; }
.mp-social__card-image:hover { transform: scale(1.01); }
.mp-social__card-image:hover img { transform: scale(1.04); }
.mp-social__card-stamp { position: absolute; top: 10px; right: 10px; padding: 6px 11px; background: rgba(14,42,31,0.92); color: #C5DC5C; border-radius: 999px; font-family: 'DM Mono', monospace; font-size: 9.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: inline-flex; align-items: center; gap: 5px; border: 1px solid rgba(197,220,92,0.3); }
.mp-social__card-stamp svg { width: 11px; height: 11px; }
.mp-social__card-zoom { position: absolute; bottom: 10px; right: 10px; padding: 5px 9px; background: rgba(0,0,0,0.6); color: #fff; border-radius: 999px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: inline-flex; align-items: center; gap: 4px; opacity: 0; transition: opacity 220ms; }
.mp-social__card-image:hover .mp-social__card-zoom { opacity: 1; }
.mp-social__card-zoom svg { width: 10px; height: 10px; }
@media (max-width: 480px) {
  .mp-social__card { width: 290px; }
}

/* === LIGHTBOX (Beweise + Video) =================== */
.mp-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 99999; display: grid; place-items: center; padding: 40px 20px; opacity: 0; pointer-events: none; transition: opacity 240ms; }
.mp-lightbox.is-open { opacity: 1; pointer-events: auto; }
.mp-lightbox__inner { position: relative; max-width: 720px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mp-lightbox__img { max-width: 100%; max-height: 78vh; border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.mp-lightbox__caption { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-align: center; max-width: 540px; line-height: 1.6; }
.mp-lightbox__close { position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22); color: #fff; display: grid; place-items: center; cursor: pointer; transition: all 180ms; }
.mp-lightbox__close:hover { background: rgba(255,255,255,0.18); transform: scale(1.06); }

/* === YOUTUBE-VIDEO SECTION ======================== */
.mp-video { background: #0E2A1F; color: #fff; padding-block: clamp(72px, 9vw, 120px); position: relative; overflow: hidden; }
.mp-video::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 10% 0%, rgba(197,220,92,0.08) 0%, transparent 60%), radial-gradient(ellipse 70% 40% at 90% 100%, rgba(46,128,85,0.16) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.mp-video > * { position: relative; z-index: 1; }
.mp-video__head { text-align: center; max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); padding-inline: clamp(24px, 5vw, 60px); }
.mp-video__head .mp-eyebrow { color: #C5DC5C; }
.mp-video__head .mp-h2 { color: #fff; margin-inline: auto; }
.mp-video__head .mp-h2 em { color: #C5DC5C; }
.mp-video__grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1400px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 60px); }
@media (min-width: 720px) { .mp-video__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .mp-video__grid { grid-template-columns: repeat(3, 1fr); } }
.mp-video__card { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; cursor: pointer; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: all 280ms cubic-bezier(0.2,0.8,0.2,1); }
.mp-video__card:hover { transform: translateY(-4px); border-color: rgba(197,220,92,0.36); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.4); }
.mp-video__thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 360ms; }
.mp-video__card:hover .mp-video__thumb { transform: scale(1.05); }
.mp-video__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(14,42,31,0.88) 100%); padding: 18px 20px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; pointer-events: none; }
.mp-video__title { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: #fff; line-height: 1.3; }
.mp-video__meta { font-family: 'DM Mono', monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #C5DC5C; }
.mp-video__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: #C5DC5C; color: #0E2A1F; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(197,220,92,0.4), 0 0 0 0 rgba(197,220,92,0.5); transition: all 280ms cubic-bezier(0.2,0.8,0.2,1); animation: mp-video-pulse 2.4s ease-in-out infinite; }
.mp-video__card:hover .mp-video__play { transform: translate(-50%, -50%) scale(1.08); animation-play-state: paused; }
.mp-video__play svg { width: 26px; height: 26px; margin-left: 3px; }
@keyframes mp-video-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(197,220,92,0.4), 0 0 0 0 rgba(197,220,92,0); }
  50%      { box-shadow: 0 8px 24px rgba(197,220,92,0.4), 0 0 0 16px rgba(197,220,92,0); }
}

/* === VIDEO MODAL ================================== */
.mp-video-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 99999; display: grid; place-items: center; padding: 60px 20px 20px; opacity: 0; pointer-events: none; transition: opacity 240ms; }
.mp-video-modal.is-open { opacity: 1; pointer-events: auto; }
.mp-video-modal__inner { position: relative; width: 100%; max-width: 1000px; aspect-ratio: 16/9; }
.mp-video-modal__inner iframe { width: 100%; height: 100%; border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,0.6); border: 0; background: #000; }
.mp-video-modal__close { position: absolute; top: -52px; right: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22); color: #fff; display: grid; place-items: center; cursor: pointer; transition: all 180ms; }
.mp-video-modal__close:hover { background: rgba(255,255,255,0.18); transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .mp-video__play { animation: none; }
}

/* ============================================================
   EXPLAIN-SECTION (Video-First Erklärung nach Anlass-Cards)
   ============================================================ */
.mp-explain { background: #0E2A1F; color: #fff; padding-block: clamp(72px, 9vw, 120px); position: relative; overflow: hidden; }
.mp-explain::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 90% 20%, rgba(197,220,92,0.10) 0%, transparent 60%), radial-gradient(ellipse 70% 50% at 10% 100%, rgba(46,128,85,0.18) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.mp-explain > * { position: relative; z-index: 1; }
.mp-explain__head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; padding-inline: clamp(24px, 5vw, 60px); }
.mp-explain__head .mp-eyebrow { color: #C5DC5C; }
.mp-explain__head .mp-h2 { color: #fff; margin-inline: auto; }
.mp-explain__head .mp-h2 em { color: #C5DC5C; }
.mp-explain__head .mp-lead { color: rgba(255,255,255,0.7); margin-inline: auto; }
.mp-explain__split { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); max-width: 1280px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 60px); align-items: center; }
@media (min-width: 900px) { .mp-explain__split { grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 5vw, 72px); } }
.mp-explain__video { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; cursor: pointer; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); transition: all 280ms cubic-bezier(0.2,0.8,0.2,1); box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5); }
.mp-explain__video:hover { transform: translateY(-3px); border-color: rgba(197,220,92,0.40); box-shadow: 0 28px 60px -16px rgba(0,0,0,0.6); }
.mp-explain__video img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 360ms; }
.mp-explain__video:hover img { transform: scale(1.04); }
.mp-explain__video .mp-video__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; background: #C5DC5C; color: #0E2A1F; display: grid; place-items: center; box-shadow: 0 12px 32px rgba(197,220,92,0.5), 0 0 0 0 rgba(197,220,92,0.5); transition: all 280ms cubic-bezier(0.2,0.8,0.2,1); animation: mp-video-pulse 2.4s ease-in-out infinite; }
.mp-explain__video:hover .mp-video__play { transform: translate(-50%, -50%) scale(1.08); animation-play-state: paused; }
.mp-explain__video .mp-video__play svg { width: 32px; height: 32px; margin-left: 4px; }
.mp-explain__video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(14,42,31,0.88) 100%); padding: 22px 24px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; pointer-events: none; }
.mp-explain__video-meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #C5DC5C; }
.mp-explain__video-title { font-family: 'DM Sans', sans-serif; font-size: clamp(15px, 1.4vw, 18px); font-weight: 700; letter-spacing: -0.015em; color: #fff; line-height: 1.3; }
.mp-explain__copy { display: grid; gap: 18px; }
.mp-explain__lbl { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #C5DC5C; }
.mp-explain__title { font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.22; margin: 0; color: #fff; }
.mp-explain__title em { font-style: italic; font-weight: 400; color: #C5DC5C; }
.mp-explain__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.mp-explain__bullets li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.84); }
.mp-explain__bullets li svg { width: 18px; height: 18px; flex-shrink: 0; color: #C5DC5C; margin-top: 2px; }
.mp-explain__bullets li strong { color: #fff; font-weight: 600; }

/* ============================================================
   FAQ SECTION (mit details/summary Accordion + Schema)
   ============================================================ */
.mp-faq { background: #FAFAF7; color: #0E2A1F; padding-block: clamp(72px, 9vw, 120px); }
.mp-faq__head { max-width: 760px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; padding-inline: clamp(24px, 5vw, 60px); }
.mp-faq__head .mp-h2 { margin-inline: auto; }
.mp-faq__head .mp-lead { margin-inline: auto; }
.mp-faq__list { max-width: 880px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 40px); display: grid; gap: 12px; }
.mp-faq__item { background: #fff; border: 1px solid rgba(15,17,21,0.08); border-radius: 14px; overflow: hidden; transition: all 240ms cubic-bezier(0.2,0.8,0.2,1); box-shadow: 0 1px 2px rgba(15,17,21,0.03); }
.mp-faq__item[open] { border-color: rgba(31,90,61,0.32); box-shadow: 0 14px 32px -10px rgba(14,42,31,0.10); }
.mp-faq__item:hover:not([open]) { border-color: rgba(15,17,21,0.16); }
.mp-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; cursor: pointer; list-style: none; font-family: 'DM Sans', sans-serif; font-size: clamp(15px, 1.5vw, 18px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.32; color: #0E2A1F; user-select: none; }
.mp-faq__q::-webkit-details-marker { display: none; }
.mp-faq__q::marker { display: none; }
.mp-faq__q-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: rgba(197,220,92,0.16); border: 1px solid rgba(31,90,61,0.18); display: grid; place-items: center; transition: all 240ms cubic-bezier(0.2,0.8,0.2,1); }
.mp-faq__q-icon svg { width: 14px; height: 14px; color: #1F5A3D; transition: transform 240ms cubic-bezier(0.2,0.8,0.2,1); }
.mp-faq__item[open] .mp-faq__q-icon { background: #C5DC5C; border-color: #C5DC5C; }
.mp-faq__item[open] .mp-faq__q-icon svg { transform: rotate(45deg); color: #0E2A1F; }
.mp-faq__a { padding: 0 24px 24px; font-size: 15px; line-height: 1.65; color: #52565E; max-width: 64ch; }
.mp-faq__a > * + * { margin-top: 12px; }
.mp-faq__a strong { color: #0E2A1F; font-weight: 600; }
.mp-faq__a a { color: #1F5A3D; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(31,90,61,0.4); }
.mp-faq__a a:hover { text-decoration-color: #1F5A3D; }
.mp-faq__a ul { padding-left: 1.2em; margin: 12px 0; }
.mp-faq__a li { margin-block: 4px; }

/* ============================================================
   SEO-TEXT FOOTER (Keyword-Block über Footer)
   ============================================================ */
.mp-seo { background: #F2EFE7; color: #52565E; padding-block: clamp(56px, 6vw, 80px); border-top: 1px solid rgba(15,17,21,0.06); }
.mp-seo__inner { max-width: 880px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 60px); }
.mp-seo__title { font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.18; color: #0E2A1F; margin: 0 0 12px; max-width: 24ch; }
.mp-seo__sub { font-size: 14px; line-height: 1.6; color: #52565E; margin: 0 0 36px; max-width: 60ch; }
.mp-seo__body { font-size: 14px; line-height: 1.75; }
.mp-seo__body h3 { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #2E8055; margin: 28px 0 8px; }
.mp-seo__body h3:first-child { margin-top: 0; }
.mp-seo__body p { margin: 0 0 14px; }
.mp-seo__body p:last-child { margin-bottom: 0; }
.mp-seo__body strong { color: #0E2A1F; font-weight: 600; }
.mp-seo__body a { color: #1F5A3D; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(31,90,61,0.4); }
.mp-seo__body a:hover { text-decoration-color: #1F5A3D; }

/* ============================================================
   PREMIUM MOTION LAYER
   ============================================================ */

/* === 1. Scroll Progress Bar ============================= */
.mp-scrollbar { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #C5DC5C 0%, #DCEC8E 100%); transform-origin: 0 50%; transform: scaleX(0); z-index: 9999; pointer-events: none; box-shadow: 0 0 12px rgba(197,220,92,0.4); transition: transform 60ms linear; }

/* === 2. Reveal-on-Scroll ================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(0.2,0.8,0.2,1), transform 700ms cubic-bezier(0.2,0.8,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-child] { opacity: 0; transform: translateY(16px); transition: opacity 600ms cubic-bezier(0.2,0.8,0.2,1), transform 600ms cubic-bezier(0.2,0.8,0.2,1); }
[data-reveal-child].is-visible { opacity: 1; transform: translateY(0); }

/* === 3. Hero animated gradient mesh ====================== */
.mp-hero::before { animation: mp-mesh-drift 22s ease-in-out infinite alternate; will-change: transform; }
@keyframes mp-mesh-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.05); }
}

/* Hero Pill — Lime Pulse Glow */
.mp-hero__pill { position: relative; overflow: visible; }
.mp-hero__pill::after { content: ''; position: absolute; inset: -2px; border-radius: 999px; box-shadow: 0 0 0 0 rgba(197,220,92,0.5); animation: mp-pill-pulse 2.6s cubic-bezier(0.2,0.8,0.2,1) infinite; pointer-events: none; }
@keyframes mp-pill-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(197,220,92,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(197,220,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(197,220,92,0); }
}

/* === 4. Stat-Counter Display ============================= */
.mp-stat__num { font-variant-numeric: tabular-nums; }

/* === 5. 3D Tilt Cards ==================================== */
[data-tilt] { transform-style: preserve-3d; transition: transform 240ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 240ms; will-change: transform; }
[data-tilt]:hover { box-shadow: 0 28px 60px -20px rgba(14,42,31,0.25), inset 0 0 0 1px rgba(15,17,21,0.08); }

/* === 6. Magnetic CTA + Shine Sweep ======================= */
[data-magnetic] { position: relative; overflow: hidden; transition: transform 220ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 240ms; --shine-x: 50%; }
[data-magnetic]::before { content: ''; position: absolute; top: 0; bottom: 0; width: 60%; left: var(--shine-x); transform: translateX(-50%) skewX(-18deg); background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%); opacity: 0; transition: opacity 320ms ease; pointer-events: none; mix-blend-mode: overlay; }
[data-magnetic]:hover::before { opacity: 1; }
.mp-btn--primary[data-magnetic]::before { background: linear-gradient(90deg, transparent 0%, rgba(14,42,31,0.22) 50%, transparent 100%); mix-blend-mode: normal; }

/* === 7. Methodik — Sequential Step Activation ============ */
.mp-method__step { opacity: 0; transform: translateX(-12px); transition: opacity 600ms cubic-bezier(0.2,0.8,0.2,1), transform 600ms cubic-bezier(0.2,0.8,0.2,1); }
.mp-method__step.is-active { opacity: 1; transform: translateX(0); }
.mp-method__step.is-active .mp-method__step-num { animation: mp-step-flash 700ms cubic-bezier(0.2,0.8,0.2,1); }
@keyframes mp-step-flash {
  0%   { box-shadow: 0 0 0 0 rgba(197,220,92,0); transform: scale(1); }
  40%  { box-shadow: 0 0 0 14px rgba(197,220,92,0.18); transform: scale(1.08); }
  100% { box-shadow: 0 0 0 24px rgba(197,220,92,0); transform: scale(1); }
}

/* === Reduced Motion Override ============================== */
@media (prefers-reduced-motion: reduce) {
  .mp-hero::before { animation: none; }
  .mp-hero__pill::after { animation: none; }
  .reveal, [data-reveal-child] { opacity: 1; transform: none; transition: none; }
  .mp-method__step { opacity: 1; transform: none; transition: none; }
  .mp-scrollbar { display: none; }
}

/* ============================================================
   ARTICLE-TEMPLATE (SEO/GEO Anlass-Pages)
   ============================================================ */
.mp-article { background: #FAFAF7; color: #0E2A1F; padding-block: clamp(40px, 5vw, 64px) clamp(64px, 8vw, 100px); }
.mp-article__wrap { max-width: 1080px; margin: 0 auto; padding-inline: clamp(24px, 5vw, 60px); }

/* Breadcrumb */
.mp-article__bc { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #52565E; margin-bottom: 32px; }
.mp-article__bc a { color: #2E8055; text-decoration: none; }
.mp-article__bc a:hover { text-decoration: underline; text-underline-offset: 2px; }
.mp-article__bc span[aria-current] { color: #0E2A1F; }
.mp-article__bc-sep { opacity: 0.4; }

/* Head */
.mp-article__head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 52px); }
.mp-article__h1 { font-family: 'DM Sans', sans-serif; font-size: clamp(34px, 5vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; margin: 14px 0 20px; color: #0E2A1F; }
.mp-article__h1 em { font-style: italic; font-weight: 400; color: #1F5A3D; }
.mp-article__byline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #52565E; margin-bottom: 24px; }
.mp-article__byline strong { color: #0E2A1F; font-weight: 600; }
.mp-article__byline-dot { width: 4px; height: 4px; border-radius: 50%; background: #C5DC5C; }
.mp-article__lead { font-size: clamp(18px, 1.8vw, 21px); line-height: 1.6; color: #2A2E33; font-weight: 400; }
.mp-article__lead strong { color: #0E2A1F; font-weight: 600; }

/* Key-Facts-Box (GEO TL;DR) */
.mp-facts { background: #0E2A1F; color: #fff; border-radius: 18px; padding: clamp(28px, 3.5vw, 40px); margin: clamp(36px, 4vw, 52px) 0; position: relative; overflow: hidden; }
.mp-facts::before { content: ''; position: absolute; top: -30%; right: -10%; width: 50%; height: 120%; background: radial-gradient(ellipse, rgba(197,220,92,0.14) 0%, transparent 70%); filter: blur(30px); pointer-events: none; }
.mp-facts__lbl { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #C5DC5C; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; position: relative; }
.mp-facts__lbl svg { width: 15px; height: 15px; }
.mp-facts__grid { display: grid; grid-template-columns: 1fr; gap: 14px; position: relative; }
@media (min-width: 640px) { .mp-facts__grid { grid-template-columns: 1fr 1fr; gap: 16px 32px; } }
.mp-facts__item { display: flex; gap: 12px; align-items: flex-start; }
.mp-facts__item svg { width: 18px; height: 18px; flex-shrink: 0; color: #C5DC5C; margin-top: 2px; }
.mp-facts__item span { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.88); }
.mp-facts__item strong { color: #fff; font-weight: 600; }

/* TOC */
.mp-toc { background: #fff; border: 1px solid rgba(15,17,21,0.08); border-radius: 14px; padding: 24px 28px; margin: clamp(36px,4vw,52px) 0; max-width: 760px; }
.mp-toc__lbl { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #2E8055; margin-bottom: 14px; }
.mp-toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; display: grid; gap: 8px; }
@media (min-width: 640px) { .mp-toc ol { grid-template-columns: 1fr 1fr; gap: 8px 28px; } }
.mp-toc li { counter-increment: toc; }
.mp-toc a { display: flex; gap: 10px; align-items: baseline; font-size: 15px; color: #1F5A3D; text-decoration: none; line-height: 1.4; }
.mp-toc a::before { content: counter(toc, decimal-leading-zero); font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 700; color: #C5DC5C; flex-shrink: 0; }
.mp-toc a:hover { color: #0E2A1F; text-decoration: underline; text-underline-offset: 3px; }

/* Body (readable column) */
.mp-article__body { max-width: 760px; }
.mp-article__body h2 { font-family: 'DM Sans', sans-serif; font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; color: #0E2A1F; margin: clamp(48px,5vw,68px) 0 16px; scroll-margin-top: 90px; }
.mp-article__body h2:first-child { margin-top: 0; }
.mp-article__body h3 { font-family: 'DM Sans', sans-serif; font-size: clamp(19px, 2vw, 23px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; color: #0E2A1F; margin: 36px 0 12px; }
.mp-article__body p { font-size: 17px; line-height: 1.7; color: #2A2E33; margin: 0 0 18px; }
.mp-article__body p strong, .mp-article__body li strong { color: #0E2A1F; font-weight: 600; }
.mp-article__body a:not(.mp-btn) { color: #1F5A3D; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(31,90,61,0.35); }
.mp-article__body a:not(.mp-btn):hover { text-decoration-color: #1F5A3D; }

/* Wissen-Cluster-Karten (Pillar /wissen) */
.wissen-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 12px 0 6px; }
@media (min-width: 680px) { .wissen-grid { grid-template-columns: 1fr 1fr; } }
.mp-article__body a.wissen-card { display: block; background: #FFFFFF; border: 1px solid rgba(14,42,31,0.12); border-radius: 14px; padding: 20px 22px; text-decoration: none; color: inherit; box-shadow: 0 1px 2px rgba(14,42,31,0.04); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.mp-article__body a.wissen-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(14,42,31,0.28); border-color: rgba(31,90,61,0.4); text-decoration: none; }
.wissen-card__meta { display: block; font-family: 'DM Mono', ui-monospace, monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #1F5A3D; margin-bottom: 8px; }
.wissen-card__title { display: block; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: #0E2A1F; margin-bottom: 6px; }
.wissen-card__desc { display: block; font-size: 14px; line-height: 1.5; color: #52565E; }
.mp-article__body ul, .mp-article__body ol { padding-left: 0; margin: 0 0 22px; list-style: none; display: grid; gap: 12px; }
.mp-article__body ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.6; color: #2A2E33; }
.mp-article__body ul li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F5A3D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") no-repeat center / contain; }
.mp-article__body ol { counter-reset: artol; }
.mp-article__body ol li { counter-increment: artol; display: flex; gap: 14px; align-items: flex-start; font-size: 17px; line-height: 1.6; color: #2A2E33; }
.mp-article__body ol li::before { content: counter(artol); font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 700; color: #C5DC5C; background: #0E2A1F; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }

/* Table */
.mp-article__table-wrap { margin: 28px 0; overflow-x: auto; border-radius: 12px; border: 1px solid rgba(15,17,21,0.10); }
.mp-article__table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 480px; }
.mp-article__table th { background: #0E2A1F; color: #fff; text-align: left; padding: 14px 18px; font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.mp-article__table td { padding: 14px 18px; border-top: 1px solid rgba(15,17,21,0.08); color: #2A2E33; line-height: 1.5; background: #fff; vertical-align: top; }
.mp-article__table tr:nth-child(even) td { background: #F7F6F1; }
.mp-article__table td strong { color: #0E2A1F; font-weight: 600; }

/* Callout / Expert quote */
.mp-callout { background: rgba(197,220,92,0.10); border-left: 3px solid #C5DC5C; border-radius: 0 12px 12px 0; padding: 22px 26px; margin: 28px 0; }
.mp-callout__lbl { font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #2E8055; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.mp-callout__lbl svg { width: 14px; height: 14px; }
.mp-callout p { font-size: 16px; line-height: 1.6; color: #1F2E26; margin: 0; font-style: italic; }
.mp-callout cite { display: block; margin-top: 10px; font-style: normal; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #52565E; }

/* Inline CTA strip */
.mp-article__cta { background: linear-gradient(135deg, #0E2A1F 0%, #16382A 100%); border-radius: 18px; padding: clamp(28px,3.5vw,40px); margin: clamp(40px,5vw,60px) 0; display: grid; gap: 18px; position: relative; overflow: hidden; }
.mp-article__cta::before { content: ''; position: absolute; right: -6%; top: -30%; width: 40%; height: 160%; opacity: 0.10; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M14 64 L64 14 L80 30 L30 80 Z' fill='%23C5DC5C'/><path d='M40 14 L86 14 L86 60 Z' fill='%23C5DC5C'/></svg>") no-repeat center / contain; transform: rotate(-12deg); pointer-events: none; }
/* Scoped unter .mp-article__cta, damit die Body-h3/p-Regeln (0,1,1) nicht gewinnen */
.mp-article__cta .mp-article__cta-h { font-family: 'DM Sans', sans-serif; font-size: clamp(22px,2.6vw,30px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; color: #fff; margin: 0; max-width: 26ch; position: relative; }
.mp-article__cta .mp-article__cta-h em { font-style: italic; font-weight: 400; color: #C5DC5C; }
.mp-article__cta .mp-article__cta-p { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.82); margin: 0; max-width: 56ch; position: relative; }
.mp-article__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; position: relative; }
.mp-article__cta-meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* Related anlass cards */
.mp-related { max-width: 1080px; margin: 0 auto; }
.mp-related__lbl { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #2E8055; margin-bottom: 18px; }
.mp-related__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .mp-related__grid { grid-template-columns: repeat(3, 1fr); } }
.mp-related__card { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 22px; background: #fff; border: 1px solid rgba(15,17,21,0.08); border-radius: 14px; text-decoration: none; transition: all 200ms cubic-bezier(0.2,0.8,0.2,1); }
.mp-related__card:hover { transform: translateY(-3px); border-color: rgba(197,220,92,0.5); box-shadow: 0 14px 32px -12px rgba(14,42,31,0.16); }
.mp-related__card-txt { display: grid; gap: 3px; }
.mp-related__card-meta { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #2E8055; }
.mp-related__card-title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.015em; color: #0E2A1F; }
.mp-related__card-arrow { width: 32px; height: 32px; border-radius: 50%; background: rgba(197,220,92,0.16); display: grid; place-items: center; flex-shrink: 0; transition: all 200ms; }
.mp-related__card-arrow svg { width: 14px; height: 14px; color: #1F5A3D; }
.mp-related__card:hover .mp-related__card-arrow { background: #C5DC5C; }
.mp-related__card:hover .mp-related__card-arrow svg { color: #0E2A1F; transform: translate(2px,-2px); }

/* Article FAQ reuse — eng an mp-faq, aber im Article-Kontext */
.mp-article__faq { max-width: 880px; margin: clamp(40px,5vw,60px) auto 0; }

@media (max-width: 520px) {
  .mp-article__cta-row .mp-btn { width: 100%; justify-content: center; box-sizing: border-box; }
}

/* ============================================================
   TRUST-STRIP (6 Checks von der Startseite, schlanke Variante)
   ============================================================ */
.mp-truststrip { max-width: 1080px; margin: clamp(32px,4vw,44px) auto; padding: 22px clamp(20px,3vw,28px); background: #0E2A1F; border-radius: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
@media (min-width: 680px) { .mp-truststrip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .mp-truststrip { grid-template-columns: repeat(6, 1fr); gap: 14px 18px; } }
.mp-truststrip__item { display: flex; align-items: center; gap: 9px; min-width: 0; }
.mp-truststrip__check { width: 24px; height: 24px; border-radius: 50%; background: rgba(197,220,92,0.14); border: 1px solid rgba(197,220,92,0.4); display: grid; place-items: center; color: #C5DC5C; flex-shrink: 0; }
.mp-truststrip__check svg { width: 12px; height: 12px; }
.mp-truststrip__txt { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: -0.01em; color: #fff; line-height: 1.2; }

/* ============================================================
   FINAL-CTA-PRO (Sascha-Bild + Trust-Checks + Button)
   ============================================================ */
.mp-cta-pro { max-width: 1080px; margin: 0 auto; background: linear-gradient(135deg, #0E2A1F 0%, #16382A 100%); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr; position: relative; }
@media (min-width: 880px) { .mp-cta-pro { grid-template-columns: 0.8fr 1.2fr; } }
.mp-cta-pro__img { position: relative; min-height: 280px; background: #16382A; }
.mp-cta-pro__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.mp-cta-pro__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,42,31,0.55) 100%); }
@media (min-width: 880px) { .mp-cta-pro__img::after { background: linear-gradient(90deg, transparent 50%, rgba(14,42,31,0.5) 100%); } }
.mp-cta-pro__sig { position: absolute; left: 18px; bottom: 18px; z-index: 1; }
.mp-cta-pro__sig-name { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.mp-cta-pro__sig-role { font-family: 'DM Mono', monospace; font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #C5DC5C; margin-top: 3px; }
.mp-cta-pro__body { padding: clamp(28px,4vw,48px); display: grid; gap: 20px; align-content: center; position: relative; }
.mp-cta-pro__h { font-family: 'DM Sans', sans-serif; font-size: clamp(24px,3vw,34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; color: #fff; margin: 0; }
.mp-cta-pro__h em { font-style: italic; font-weight: 400; color: #C5DC5C; }
.mp-cta-pro__p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.8); margin: 0; max-width: 52ch; }
.mp-cta-pro__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; padding: 4px 0; }
.mp-cta-pro__trust-item { display: flex; align-items: center; gap: 9px; }
.mp-cta-pro__trust-item svg { width: 16px; height: 16px; color: #C5DC5C; flex-shrink: 0; }
.mp-cta-pro__trust-item span { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: -0.01em; }
.mp-cta-pro__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 4px; }
.mp-cta-pro__meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
@media (max-width: 520px) {
  .mp-cta-pro__trust { grid-template-columns: 1fr; }
  .mp-cta-pro__actions .mp-btn { width: 100%; justify-content: center; box-sizing: border-box; }
}

/* ============================================================
   ARTICLE HERO-IMAGE (emotionales 16:9 zum Auflockern)
   ============================================================ */
.mp-article__hero { margin: clamp(32px,4vw,48px) 0; }
.mp-article__hero-fig { margin: 0; position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 28px 70px -28px rgba(14,42,31,0.5); }
.mp-article__hero-fig img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.mp-article__hero-fig::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14,42,31,0.45) 100%); pointer-events: none; }
.mp-article__hero-cap { position: absolute; left: clamp(18px,3vw,28px); bottom: clamp(16px,2.5vw,22px); right: clamp(18px,3vw,28px); z-index: 1; font-family: 'DM Sans', sans-serif; font-size: clamp(14px,1.5vw,17px); font-style: italic; font-weight: 500; line-height: 1.35; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.4); max-width: 40ch; }
.mp-article__hero-cap em { font-style: normal; color: #C5DC5C; }

/* ============================================================
   ERFAHRUNGEN-PAGE (Reviews-Grid, Rating-Hero, Beweis-Grid)
   ============================================================ */
.mp-reviews { background: #0E2A1F; color: #fff; padding-block: clamp(56px,7vw,96px); position: relative; overflow: hidden; }
.mp-reviews::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(197,220,92,0.08) 0%, transparent 60%); pointer-events: none; }
.mp-reviews > * { position: relative; z-index: 1; }
.mp-reviews__head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px,5vw,64px); padding-inline: clamp(24px,5vw,60px); }
.mp-reviews__head .mp-eyebrow { color: #C5DC5C; }
.mp-reviews__head .mp-h2 { color: #fff; margin-inline: auto; }
.mp-reviews__head .mp-h2 em { color: #C5DC5C; }
.mp-reviews__grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 1280px; margin: 0 auto; padding-inline: clamp(20px,4vw,40px); }
@media (min-width: 680px) { .mp-reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .mp-reviews__grid { grid-template-columns: repeat(3, 1fr); } }
/* Reuse mp-social__card internals, aber als Grid-Item statt Marquee */
.mp-reviews__grid .mp-social__card { width: auto; }

/* Beweis-Grid (echte Gutachten als statisches Grid auf der Erfahrungen-Seite) */
.mp-proof { background: #FAFAF7; color: #0E2A1F; padding-block: clamp(56px,7vw,96px); }
.mp-proof__head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px,4vw,52px); padding-inline: clamp(24px,5vw,60px); }
.mp-proof__head .mp-h2 { margin-inline: auto; }
.mp-proof__head .mp-lead { margin-inline: auto; }
.mp-proof__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 1200px; margin: 0 auto; padding-inline: clamp(20px,4vw,40px); }
@media (min-width: 640px) { .mp-proof__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1024px) { .mp-proof__grid { grid-template-columns: repeat(5, 1fr); } }
.mp-proof__item { position: relative; aspect-ratio: 4/5; border-radius: 10px; overflow: hidden; cursor: zoom-in; background: #e8e6df; box-shadow: 0 2px 8px rgba(14,42,31,0.08); transition: transform 220ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 220ms; }
.mp-proof__item:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -12px rgba(14,42,31,0.25); }
.mp-proof__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mp-proof__item-badge { position: absolute; top: 8px; right: 8px; padding: 4px 9px; background: rgba(14,42,31,0.92); color: #C5DC5C; border-radius: 999px; font-family: 'DM Mono', monospace; font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; }
.mp-proof__item-badge svg { width: 9px; height: 9px; }
.mp-proof__note { text-align: center; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.08em; color: #52565E; margin-top: 28px; padding-inline: 24px; }
