/* ============================================================
   Verkaufsseite /kurs — Page-spezifisches Layout
   Breakpoints:  >900px Desktop · ≤900px Tablet · ≤600px Mobile
   ============================================================ */

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  padding-block: var(--space-6);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; }
.site-header__brand { display: inline-flex; align-items: center; }
.site-header__brand img { height: 32px; width: auto; }

/* ── Section-Basis ──────────────────────────────────────── */
.section {
  padding-block: var(--section-padding-y);
  background: var(--bg-primary);
}
.section--offwhite { background: var(--bg-secondary); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section__headline {
  margin-bottom: var(--space-6);
  color: var(--text-heading);
}
.section__headline--on-dark { color: var(--text-on-dark); }
.section__intro {
  font-size: var(--text-lg);
  color: var(--text-body);
  margin-bottom: var(--space-10);
}
.section__intro--on-dark { color: var(--text-on-dark-muted); }
.section__closing {
  margin-top: var(--space-12);
  font-size: var(--text-lg);
  text-align: center;
  color: var(--text-body);
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}
.section__closing strong { color: var(--text-heading); }

/* Section-Label (Eyebrow) auf dunkel: heller */
.section--dark .section-label { color: var(--accent); }

/* ============================================================
   Hero — Full-Width Video/Poster-Background, Premium-ATF
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, 92vh, 860px);
  padding-block: clamp(112px, 14vw, 180px) clamp(80px, 10vw, 140px);
  background: var(--primary-900);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  isolation: isolate;
}

/* ── Danke-Hero: kürzerer Hero, aber gleiches Containment wie .hero.
   Ohne position:relative/overflow:hidden ankern die absolut
   positionierten .hero__poster/.hero__overlay (inset:0; height:100%)
   am Viewport statt am Hero, werden dadurch überhoch und bluten in die
   Folge-Sektion durch (Ursache der „zerschossenen" Danke-Optik). ── */
.danke-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.hero__video { z-index: 1; }

/* ── Overlay: Tiefenverlauf, petrol/tiefblau ────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5, 30, 40, 0.05)  0%,
      rgba(5, 30, 40, 0.22) 28%,
      rgba(5, 25, 35, 0.55) 68%,
      rgba(2, 14, 22, 0.88) 100%);
}

/* ── Logo oben links ────────────────────────────────────── */
.hero__logo {
  position: absolute;
  top: clamp(18px, 2.5vw, 32px);
  left: clamp(20px, 3vw, 48px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  opacity: 0.88;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: opacity var(--transition-base);
}
.hero__logo:hover { opacity: 1; }
.hero__logo img {
  width: clamp(124px, 14vw, 180px);
  height: auto;
  display: block;
}

/* ── Inner & Text-Block ─────────────────────────────────── */
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__text {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}

/* ── Headline ───────────────────────────────────────────── */
.hero__headline {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin: 0 auto var(--space-6);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.48);
  font-weight: var(--weight-bold);
}
.hero__headline-accent {
  color: var(--primary-300);
  text-shadow:
    0 0 14px rgba(127, 219, 238, 0.55),
    0 0 28px rgba(18, 179, 216, 0.35),
    0 2px 18px rgba(0, 0, 0, 0.45);
}

/* ── Subline ────────────────────────────────────────────── */
.hero__subline {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto var(--space-10);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.40);
}

/* ── CTA-Wrapper ────────────────────────────────────────── */
.hero__cta {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}

/* ── CTA-Button (Wow-Faktor) ────────────────────────────── */
.btn--hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2vw, 22px) clamp(32px, 4vw, 48px);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: 0.02em;
  color: #FFFFFF;
  background: linear-gradient(135deg, #F26419 0%, #C7510F 100%);
  border: none;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 14px 36px rgba(242, 100, 25, 0.38),
    0 4px 12px rgba(242, 100, 25, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 380ms ease;
  z-index: 1;
}
.btn--hero-cta .btn__label { position: relative; z-index: 2; }
.btn--hero-cta::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 999px;
  background: radial-gradient(closest-side,
    rgba(242, 100, 25, 0.68) 0%,
    rgba(242, 100, 25, 0.42) 38%,
    rgba(242, 100, 25, 0.18) 72%,
    transparent 100%);
  filter: blur(22px);
  z-index: -1;
  animation: cta-breathe 4s ease-in-out infinite;
}
.btn--hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(105deg,
    transparent 15%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 85%);
  transform: skewX(-18deg);
  animation: cta-shine 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn--hero-cta:hover {
  transform: translateY(-2px) scale(1.035);
  box-shadow:
    0 22px 52px rgba(242, 100, 25, 0.55),
    0 6px 16px rgba(242, 100, 25, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--hero-cta:hover::before { animation-duration: 2.4s; }
.btn--hero-cta:active { transform: translateY(0) scale(1); }
.btn--hero-cta:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
}

@keyframes cta-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50%      { opacity: 1;    transform: scale(1.06); }
}
@keyframes cta-shine {
  0%, 65%  { left: -60%; opacity: 0; }
  70%      { opacity: 1; }
  92%      { opacity: 1; }
  100%     { left: 130%; opacity: 0; }
}

/* ── Trust-Zeile ────────────────────────────────────────── */
.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-3) 0;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(16px, 2vw, 24px);
}
.hero__trust li + li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary-500);
  transform: rotate(45deg);
  opacity: 0.8;
  box-shadow: 0 0 8px rgba(18, 179, 216, 0.5);
  margin-right: clamp(16px, 2vw, 24px);
  margin-left: calc(-1 * clamp(16px, 2vw, 24px));
}

/* ── Scroll-Indikator (vertikal, bouncing arrow) ────────── */
.hero__scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-top: clamp(48px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-xs);
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-base);
}
.hero__scroll-hint:hover { color: var(--primary-300); }
.hero__scroll-arrow {
  font-size: 1.1rem;
  line-height: 1;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0);  opacity: 0.55; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ── Entrance-Animations (staggered) ────────────────────── */
.hero__logo,
.hero__headline,
.hero__subline,
.hero__cta,
.hero__trust,
.hero__scroll-hint {
  opacity: 0;
  animation: hero-rise 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__logo        { animation-delay:  80ms; }
.hero__headline    { animation-delay: 240ms; }
.hero__subline     { animation-delay: 420ms; }
.hero__cta         { animation-delay: 600ms; }
.hero__trust       { animation-delay: 780ms; }
.hero__scroll-hint { animation-delay: 960ms; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__logo,
  .hero__headline,
  .hero__subline,
  .hero__cta,
  .hero__trust,
  .hero__scroll-hint {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .btn--hero-cta::before,
  .btn--hero-cta::after,
  .hero__scroll-arrow { animation: none; }
  .btn--hero-cta { transition: none; }
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(580px, 84vh, 720px);
    padding-block: clamp(96px, 16vw, 128px) clamp(56px, 10vw, 96px);
  }
  .hero__logo img { width: clamp(108px, 22vw, 140px); }
  .hero__trust li { padding: 0 clamp(12px, 3vw, 18px); }
  .hero__trust li + li::before {
    margin-right: clamp(12px, 3vw, 18px);
    margin-left: calc(-1 * clamp(12px, 3vw, 18px));
  }
}

/* ============================================================
   Problem-Section (Pillars) — Premium 3D + Cursor-Spotlight
   ============================================================ */
.section--problem {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ── Atmosphaere-Layer ──────────────────────────────────── */
.section--problem__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 88% 8%, rgba(18, 179, 216, 0.16) 0%, rgba(18, 179, 216, 0.06) 35%, transparent 70%),
    linear-gradient(135deg,
      rgba(255, 242, 232, 0.45)  0%,
      rgba(250, 250, 250, 0.55) 38%,
      rgba(215, 240, 247, 0.55) 100%);
}
.section--problem > .container { position: relative; z-index: 1; }

/* ── Section-Label mit Editorial-Linie (global) ─────────── */
.section-label--with-line {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}
.section-label--with-line::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Headline-Accent (global) ───────────────────────────── */
.section__headline-accent {
  color: var(--primary-500);
}

/* ── Pillar-Grid mit Stagger-Reveal ─────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
  margin-top: var(--space-12);
  align-items: stretch;
}
.pillar-grid.reveal-stagger.is-visible > .pillar:nth-child(1) { transition-delay:  80ms; }
.pillar-grid.reveal-stagger.is-visible > .pillar:nth-child(2) { transition-delay:  80ms; }
.pillar-grid.reveal-stagger.is-visible > .pillar--highlight   { transition-delay: 340ms; }

/* ── Pillar Base (3D-Tiefe via mehrlagige Shadows) ──────── */
.pillar {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 3.5vw, 48px) clamp(28px, 3vw, 40px);
  box-shadow:
    0 1px 3px rgba(10, 41, 51, 0.05),
    0 14px 40px rgba(10, 41, 51, 0.08),
    0 2px 10px rgba(18, 179, 216, 0.06);
  transition:
    transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 420ms ease;
  isolation: isolate;
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow:
    0 2px 5px rgba(10, 41, 51, 0.07),
    0 22px 52px rgba(10, 41, 51, 0.12),
    0 4px 16px rgba(18, 179, 216, 0.10);
}
.pillar > * { position: relative; z-index: 1; }

/* ── Zahlen: groesser + weicher Akzent-Glow via text-shadow ─ */
.pillar__number {
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--primary-500);
  line-height: 1;
  margin-bottom: var(--space-5);
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.025em;
  text-shadow:
    0 0 30px hsla(195, 80%, 55%, 0.35),
    0 0 60px hsla(195, 80%, 55%, 0.15);
}
.pillar__count { display: inline-block; min-width: 1ch; }
.pillar__percent { font-weight: var(--weight-semibold); padding-left: 0.1em; }
.pillar__number--wrap { flex-wrap: wrap; }
.pillar__sublabel {
  flex-basis: 100%;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-top: var(--space-1);
  text-align: left;
}
.pillar__title {
  margin-bottom: var(--space-3);
  color: var(--text-heading);
}
.pillar__text { color: var(--text-body); }

/* ── Pillar Highlight (70%) — Teal-Aura, dominant ───────── */
.pillar--highlight {
  background: linear-gradient(160deg, var(--primary-700) 0%, var(--primary-800) 100%);
  color: var(--text-on-dark);
  transform: translateY(-20px);
  padding-block: clamp(40px, 4vw, 64px);
  box-shadow:
    0 2px 6px rgba(0, 78, 106, 0.28),
    0 24px 60px rgba(0, 106, 142, 0.38),
    0 8px 24px rgba(0, 106, 142, 0.22);
}
.pillar--highlight:hover {
  transform: translateY(-28px);
  box-shadow:
    0 3px 8px rgba(0, 78, 106, 0.32),
    0 32px 72px rgba(0, 106, 142, 0.48),
    0 10px 28px rgba(0, 106, 142, 0.28);
}
.pillar--highlight .pillar__number {
  color: var(--accent);
  text-shadow:
    0 0 30px rgba(242, 100, 25, 0.40),
    0 0 60px rgba(242, 100, 25, 0.18);
}
.pillar--highlight .pillar__title,
.pillar--highlight .pillar__text { color: var(--text-on-dark); }

/* ── Cursor-Spotlight (3 Ebenen, nur auf Hover-Geraeten) ── */
@media (hover: hover) {
  .pillar,
  .mechanism-card {
    --x: 50%;
    --y: 50%;
    --xp: 0.5;
  }
  .pillar {
    background-image:
      radial-gradient(200px circle at var(--x) var(--y),
        hsla(calc(195 + (var(--xp) - 0.5) * 40), 80%, 60%, 0.10),
        transparent 70%),
      linear-gradient(0deg, #FFFFFF, #FFFFFF);
    background-attachment: fixed, scroll;
  }
  .pillar--highlight {
    background-image:
      radial-gradient(200px circle at var(--x) var(--y),
        rgba(255, 255, 255, 0.20),
        transparent 70%),
      linear-gradient(160deg, var(--primary-700) 0%, var(--primary-800) 100%);
    background-attachment: fixed, scroll;
  }
  /* Mechanism-Card: Spotlight ueber Top-Line + Light-Leak + Light-Tint */
  .mechanism-card {
    background-image:
      radial-gradient(200px circle at var(--x) var(--y),
        hsla(calc(195 + (var(--xp) - 0.5) * 40), 80%, 60%, 0.10),
        transparent 70%),
      linear-gradient(180deg, var(--primary-500) 0%, var(--primary-500) 3px, transparent 3px),
      linear-gradient(180deg,
        rgba(18, 179, 216, 0.24) 0%,
        rgba(18, 179, 216, 0.08) 40px,
        transparent 110px),
      linear-gradient(180deg, rgba(213, 240, 247, 0.45) 0%, rgba(213, 240, 247, 0) 200px),
      linear-gradient(0deg, #FFFFFF, #FFFFFF);
    background-attachment: fixed, scroll, scroll, scroll, scroll;
  }

  /* Border-Glow via mask-composite */
  .pillar::before,
  .mechanism-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(180px circle at var(--x) var(--y),
      hsla(calc(195 + (var(--xp) - 0.5) * 40), 90%, 62%, 0.95),
      transparent 70%);
    background-attachment: fixed;
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    filter: brightness(1.5);
    z-index: 0;
  }
  .pillar--highlight::before {
    background: radial-gradient(180px circle at var(--x) var(--y),
      rgba(255, 255, 255, 0.9),
      transparent 70%);
    background-attachment: fixed;
    filter: brightness(1.3);
  }

  /* FAQ-Spotlight: dezent, nur Flaeche + Border-Glow (kein outer halo) */
  .faq-item {
    --x: 50%;
    --y: 50%;
    --xp: 0.5;
    background-image:
      radial-gradient(140px circle at var(--x) var(--y),
        hsla(195, 80%, 60%, 0.06),
        transparent 75%),
      linear-gradient(0deg, #FFFFFF, #FFFFFF);
    background-attachment: fixed, scroll;
  }
  .faq-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(120px circle at var(--x) var(--y),
      hsla(195, 90%, 62%, 0.55),
      transparent 75%);
    background-attachment: fixed;
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    filter: brightness(1.3);
    z-index: 0;
  }

  /* Outer-Glow (blurred halo) */
  .pillar::after,
  .mechanism-card::after {
    content: '';
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: calc(var(--radius-lg) + 8px);
    background: radial-gradient(220px circle at var(--x) var(--y),
      hsla(calc(195 + (var(--xp) - 0.5) * 40), 80%, 60%, 0.35),
      transparent 70%);
    background-attachment: fixed;
    filter: blur(18px);
    opacity: 0.7;
    pointer-events: none;
    will-change: filter;
  }
  .pillar--highlight::after {
    background: radial-gradient(240px circle at var(--x) var(--y),
      rgba(242, 100, 25, 0.35),
      transparent 70%);
    background-attachment: fixed;
    opacity: 0.85;
  }
}

/* ── Bridge-Text zur Loesung ────────────────────────────── */
.section--problem .section__closing {
  font-size: var(--text-xl);
  margin-block: clamp(64px, 8vw, 96px) clamp(48px, 6vw, 80px);
}
.section--problem .section__closing strong {
  color: var(--primary-500);
  font-weight: var(--weight-semibold);
}

/* ── Abschluss-Divider ──────────────────────────────────── */
.section--problem::after {
  content: '';
  display: block;
  width: 60%;
  max-width: 400px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(10, 41, 51, 0.14) 50%, transparent 100%);
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pillar,
  .pillar--highlight { transition: none; }
  .pillar:hover,
  .pillar--highlight:hover { transform: none; }
}

@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .pillar--highlight { transform: none; }
  .pillar--highlight:hover { transform: translateY(-4px); }
  .pillar:hover { transform: translateY(-4px); }
}

/* ============================================================
   Mechanism-Section — Premium-Wissenskarten mit Timeline
   ============================================================ */
.section--mechanism {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section--mechanism::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 8% 92%, rgba(18, 179, 216, 0.14) 0%, rgba(18, 179, 216, 0.05) 35%, transparent 70%),
    linear-gradient(135deg,
      rgba(215, 240, 247, 0.45)  0%,
      rgba(250, 250, 250, 0.55) 45%,
      rgba(255, 244, 236, 0.48) 100%);
}
.section--mechanism > .container { position: relative; z-index: 1; }

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
  margin-top: var(--space-12);
  align-items: stretch;
}
/* Welle: linke Karte zuerst, dann Mitte, dann rechts */
.mechanism-grid.reveal-stagger.is-visible > *:nth-child(1) { transition-delay:   0ms; }
.mechanism-grid.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.mechanism-grid.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 240ms; }

/* ── Mechanism-Card: leuchtende Oberkante + Light-Leak + Light-Tint ── */
.mechanism-card {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 4vw, 56px) clamp(28px, 3vw, 40px) clamp(32px, 3.5vw, 48px);
  color: var(--text-body);
  background:
    linear-gradient(180deg, var(--primary-500) 0%, var(--primary-500) 3px, transparent 3px),
    linear-gradient(180deg,
      rgba(18, 179, 216, 0.24) 0%,
      rgba(18, 179, 216, 0.08) 40px,
      transparent 110px),
    linear-gradient(180deg, rgba(213, 240, 247, 0.45) 0%, rgba(213, 240, 247, 0) 200px),
    #FFFFFF;
  box-shadow:
    0 1px 3px rgba(10, 41, 51, 0.05),
    0 16px 42px rgba(10, 41, 51, 0.08),
    0 2px 10px rgba(18, 179, 216, 0.06);
  transition:
    transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 420ms ease;
}
.mechanism-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 2px 6px rgba(10, 41, 51, 0.08),
    0 26px 62px rgba(10, 41, 51, 0.12),
    0 6px 20px rgba(18, 179, 216, 0.14);
}
.mechanism-card > * { position: relative; z-index: 1; }

.mechanism-card__title {
  margin-bottom: var(--space-5);
  color: var(--text-heading);
}
.mechanism-card p { color: var(--text-body); }
.mechanism-card--phases { grid-column: span 1; }

/* ── Phasen-Zeitachse (vertikale Linie + gluehende Dots) ── */
.phases { display: flex; flex-direction: column; gap: var(--space-5); }
.phases--timeline {
  position: relative;
  padding-left: clamp(28px, 3vw, 40px);
}
.phases--timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary-500) 100%);
  border-radius: 1px;
}
.phases__row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(56px, 7vw, 72px) 1fr;
  gap: var(--space-4);
  align-items: baseline;
}
.phases__row dt {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--primary-700);
  font-size: var(--text-base);
}
.phases__row dd { color: var(--text-body); margin: 0; }

.phases__dot {
  position: absolute;
  left: calc(-1 * clamp(28px, 3vw, 40px) + 6px);
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 3px rgba(242, 100, 25, 0.15),
    0 0 14px rgba(242, 100, 25, 0.45);
}
.phases__row:nth-child(2) .phases__dot {
  background: #8AA1AE;                                                      /* Fallback */
  background: color-mix(in srgb, var(--accent) 50%, var(--primary-500) 50%);
  box-shadow:
    0 0 0 3px rgba(100, 140, 160, 0.14),
    0 0 14px rgba(80, 170, 200, 0.45);
}
.phases__row:nth-child(3) .phases__dot {
  background: var(--primary-500);
  box-shadow:
    0 0 0 3px rgba(18, 179, 216, 0.15),
    0 0 14px rgba(18, 179, 216, 0.50);
}

/* ── Insight-Box: Saftfasten-Vergleich ──────────────────── */
.phases__insight {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: rgba(18, 179, 216, 0.08);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-body);
  line-height: 1.55;
}

/* ── Abschluss-Statement ────────────────────────────────── */
.section--mechanism .section__closing--statement {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.5;
  max-width: 56ch;
  margin-block: clamp(72px, 9vw, 112px) clamp(48px, 6vw, 80px);
  color: var(--text-body);
  position: relative;
  padding-top: clamp(28px, 3vw, 40px);
}
.section--mechanism .section__closing--statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.section__closing-accent {
  color: var(--primary-500);
  font-weight: var(--weight-semibold);
}

@media (prefers-reduced-motion: reduce) {
  .mechanism-card { transition: none; }
  .mechanism-card:hover { transform: none; }
}

@media (max-width: 900px) {
  .mechanism-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .mechanism-card:hover { transform: translateY(-4px); }
  .section--mechanism::before {
    background:
      radial-gradient(80% 50% at 10% 95%, rgba(18, 179, 216, 0.10) 0%, transparent 70%),
      linear-gradient(180deg, rgba(215, 240, 247, 0.35) 0%, rgba(255, 244, 236, 0.35) 100%);
  }
  .phases--timeline { padding-left: 24px; }
  .phases__dot { left: -18px; }
}

/* ============================================================
   Story-Section
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.story__portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-md);
}
.story__portrait img { width: 100%; height: 100%; object-fit: cover; }
.story__text p {
  margin-top: var(--space-5);
  color: var(--text-body);
  max-width: 58ch;
}
.story__text .section__headline { margin-bottom: var(--space-6); }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story__portrait { max-width: 420px; margin-inline: auto; }
}

/* ============================================================
   Testimonial-Collage (angepasst aus Vorlage)
   ============================================================ */
.review-collage-wrapper {
  overflow-x: hidden;
  padding: var(--space-12) var(--space-4) 0;
}
.review-collage-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  gap: 15px;
}
.review-collage-item {
  background: #FFFFFF;
  padding: 10px 10px 25px;
  border-radius: 2px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  cursor: default;
  position: relative;
  margin: -5px -10px;
}
.review-collage-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  pointer-events: none;
}
.review-collage-item:hover {
  transform: scale(1.12) rotate(0deg) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  z-index: 1000 !important;
}

.review-collage-item.z-1 { z-index: 1; }
.review-collage-item.z-2 { z-index: 2; }
.review-collage-item.z-3 { z-index: 3; }
.review-collage-item.z-4 { z-index: 4; }
.review-collage-item.z-5 { z-index: 5; }

.size-banner    { width: 260px; }
.size-portrait  { width: 240px; }
.size-square    { width: 290px; }
.size-landscape { width: 400px; }
.size-large     { width: 500px; }

.pos-1 { transform: rotate(-3deg) translateY(8px); }
.pos-2 { transform: rotate(4deg) translateY(-8px); }
.pos-3 { transform: rotate(-1.5deg) translateX(8px); }
.pos-4 { transform: rotate(3deg) translateX(-8px); }
.pos-5 { transform: rotate(-4deg) translateY(-5px); }
.pos-6 { transform: rotate(2deg) translateY(12px); }
.pos-7 { transform: rotate(-2.5deg) translateX(-10px); }
.pos-8 { transform: rotate(3.5deg) translateX(6px); }

@media (max-width: 992px) {
  .review-collage-item { margin: 8px 5px; }
  .size-large, .size-landscape { width: 85%; }
}
@media (max-width: 768px) {
  .review-collage-item { width: 46%; margin: 10px 5px; padding: 8px 8px 20px; }
  .size-large, .size-landscape { width: 95%; }
}
@media (max-width: 480px) {
  .review-collage-item { width: 92%; margin: 15px 0; }
}

/* ============================================================
   Offer-Section — Senior-Polish: Mesh-BG + Modern Checklist
   ============================================================ */
.section--offer {
  padding-block: clamp(80px, 11vw, 144px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 88% 88%, rgba(242, 180, 110, 0.10) 0%, transparent 55%),
    radial-gradient(55% 45% at 85% 12%, rgba(30, 180, 170, 0.16) 0%, transparent 60%),
    radial-gradient(70% 60% at 30% 100%, rgba(14, 140, 160, 0.20) 0%, transparent 65%),
    linear-gradient(155deg, #003C54 0%, #006A8E 50%, #087592 100%);
}

/* ── Angebots-Karte ─────────────────────────────────────── */
.offer-card {
  position: relative;
  isolation: isolate;
  max-width: 680px;
  margin-inline: auto;
  padding: clamp(52px, 6vw, 84px) clamp(36px, 4.5vw, 64px);
  border-radius: clamp(20px, 2vw, 28px);
  color: var(--text-body);
  text-align: center;
  background:
    linear-gradient(90deg, var(--accent) 0%, var(--primary-500) 100%) top / 100% 4px no-repeat,
    linear-gradient(180deg, rgba(255, 244, 232, 0.5) 0%, rgba(255, 255, 255, 1) 160px),
    #FFFFFF;
  box-shadow:
    0 2px 8px rgba(0, 30, 50, 0.22),
    0 50px 96px rgba(0, 40, 60, 0.42),
    0 14px 36px rgba(0, 78, 106, 0.28);
  overflow: hidden;
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card .section-label { color: var(--accent-dark); }

.offer-card.reveal {
  transform: translateY(30px);
  transition:
    opacity 680ms var(--anim-ease),
    transform 680ms var(--anim-ease);
}
.offer-card.reveal.is-visible { transform: translateY(0); }

/* ── Headline + Preis + Qualifier-Leiste ────────────────── */
/* Headline ist der Blickfang: Sora + Primary-Glow, 70% der Preis-Groesse */
.offer__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.275rem, 4.55vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-500);
  line-height: 1;
  margin-block: var(--space-5) var(--space-3);
  letter-spacing: -0.03em;
  text-shadow:
    0 0 32px rgba(18, 179, 216, 0.35),
    0 0 64px rgba(18, 179, 216, 0.15);
}
/* Preis ist Sub-Info: 60% Groesse, plain near-black, kein Glow */
.offer__price {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 3.9vw, 3rem);
  font-weight: var(--weight-semibold);
  color: var(--near-black);
  line-height: 1;
  margin-block: 0 var(--space-5);
  letter-spacing: 0;
  text-shadow: none;
}

.offer__qualifiers {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-10);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) 0;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.offer__qualifiers li {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(12px, 2vw, 20px);
}
.offer__qualifiers li + li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--primary-500);
  transform: rotate(45deg);
  opacity: 0.7;
  margin-right: clamp(12px, 2vw, 20px);
  margin-left: calc(-1 * clamp(12px, 2vw, 20px));
}

/* ── Feature-Liste: Modern Checklist mit Trennlinien ────── */
.offer__features {
  list-style: none;
  padding: 0;
  max-width: 56ch;
  margin: 0 auto var(--space-10);
  text-align: left;
  border-top: 1px solid rgba(10, 41, 51, 0.08);
}
.offer__feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(10, 41, 51, 0.08);
}
.offer__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 179, 216, 0.10);
  color: var(--primary-500);
  flex-shrink: 0;
  transition: background 200ms ease;
}
.offer__feature-text {
  color: var(--text-body);
  line-height: 1.5;
  padding-top: 6px;
}
.offer__feature-text strong { color: var(--near-black); }

/* Bonus-Highlight — zarter orange Streifen, Icon orange */
.offer__feature--bonus {
  background: linear-gradient(90deg, rgba(242, 100, 25, 0.05) 0%, transparent 90%);
  border-radius: var(--radius);
  margin-inline: calc(-1 * var(--space-3));
  padding-inline: var(--space-3);
}
.offer__feature--bonus .offer__feature-icon {
  background: rgba(242, 100, 25, 0.12);
  color: var(--accent-dark);
}

/* Bonus-Badge: flach, clean, modern */
.offer__bonus-badge {
  display: inline-block;
  margin-right: var(--space-2);
  padding: 3px 11px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
  line-height: 1.5;
}

/* Staggered Feature-Reveal ("Value-Stacking") */
.offer__features.reveal-stagger > .offer__feature {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 420ms var(--anim-ease),
    transform 420ms var(--anim-ease);
}
.offer__features.reveal-stagger.is-visible > .offer__feature:nth-child(1) { transition-delay:  80ms; opacity: 1; transform: none; }
.offer__features.reveal-stagger.is-visible > .offer__feature:nth-child(2) { transition-delay: 160ms; opacity: 1; transform: none; }
.offer__features.reveal-stagger.is-visible > .offer__feature:nth-child(3) { transition-delay: 240ms; opacity: 1; transform: none; }
.offer__features.reveal-stagger.is-visible > .offer__feature:nth-child(4) { transition-delay: 320ms; opacity: 1; transform: none; }
.offer__features.reveal-stagger.is-visible > .offer__feature:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: none; }
.offer__features.reveal-stagger.is-visible > .offer__feature:nth-child(6) { transition-delay: 560ms; opacity: 1; transform: none; }

/* ── CTA Full-Width + Payment + Trust ───────────────────── */
.offer-card .btn--hero-cta.btn--full {
  width: 100%;
  max-width: 100%;
  padding-block: clamp(20px, 2.2vw, 26px);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.offer__payment {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
}
.offer__payment strong {
  color: var(--text-body);
  font-weight: var(--weight-semibold);
}

.offer__trust {
  margin-top: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  justify-content: center;
  width: 100%;
}
.offer__trust-icon {
  color: var(--primary-500);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .offer-card.reveal,
  .offer-card.reveal.is-visible,
  .offer__features.reveal-stagger > .offer__feature,
  .offer__features.reveal-stagger.is-visible > .offer__feature {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 900px) {
  .offer-card {
    padding: clamp(36px, 7vw, 56px) clamp(24px, 5vw, 36px);
    margin-inline: var(--space-4);
  }
  .offer__features { max-width: 100%; }
}

/* ============================================================
   FAQ — Editorial Accordion mit Marginalien-Nummerierung
   ============================================================ */
.section--faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section--faq::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(65% 55% at 92% 95%, rgba(242, 150, 90, 0.10) 0%, rgba(242, 150, 90, 0.03) 40%, transparent 70%),
    linear-gradient(135deg,
      rgba(255, 250, 240, 0.55)  0%,
      rgba(252, 252, 252, 0.55) 45%,
      rgba(215, 240, 247, 0.50) 100%);
}
.section--faq > .container { position: relative; z-index: 1; }

.faq-list {
  list-style: none;
  padding: 0;
  counter-reset: faq;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-10);
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  counter-increment: faq;
  position: relative;
  isolation: isolate;
  border: none;
  border-radius: var(--radius);
  background: #FFFFFF;
  overflow: hidden;
  padding-left: clamp(20px, 3vw, 32px);
  box-shadow:
    0 1px 3px rgba(10, 41, 51, 0.04),
    0 10px 30px rgba(10, 41, 51, 0.06);
  transition:
    transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 320ms ease;
}

/* Vertikaler Akzent-Streifen links */
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(10, 41, 51, 0.12);
  transition: background 260ms ease;
  z-index: 1;
}

/* Nummerierung (01, 02, ...) als Marginalie */
.faq-item > summary::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: clamp(20px, 3vw, 32px);
  top: calc(var(--space-5) + 2px);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  color: rgba(10, 41, 51, 0.35);
  transition: color 260ms ease;
  pointer-events: none;
}

/* Summary (Frage + Toggle-Icon) */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: calc(var(--space-5) + 20px) var(--space-6) var(--space-5) clamp(52px, 8vw, 84px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  color: var(--text-heading);
  transition: color 220ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* Toggle-Icon als Zirkel */
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(10, 41, 51, 0.15);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--weight-regular);
  line-height: 34px;
  text-align: center;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: var(--primary-500);
  background-color: rgba(18, 179, 216, 0.10);
  color: var(--primary-500);
}

/* Hover (geschlossen) */
.faq-item:not([open]):hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 5px rgba(10, 41, 51, 0.06),
    0 16px 40px rgba(10, 41, 51, 0.10);
}
.faq-item:not([open]):hover::before { background: var(--primary-500); }
.faq-item:not([open]):hover > summary::before { color: var(--primary-500); }
.faq-item:not([open]):hover summary { color: var(--near-black); }
.faq-item:not([open]):hover summary::after {
  border-color: var(--primary-500);
  color: var(--primary-500);
}

/* Geoeffneter Zustand */
.faq-item[open] {
  box-shadow:
    0 2px 6px rgba(10, 41, 51, 0.07),
    0 20px 50px rgba(10, 41, 51, 0.12);
}
.faq-item[open]::before { background: var(--accent); }
.faq-item[open] > summary::before { color: var(--accent-dark); }

/* Content-Body — Wrapper fuer max-height-Transition */
.faq-item__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity   220ms ease;
}
.faq-item[open] .faq-item__body {
  opacity: 1;
  /* max-height wird via faq.js auf scrollHeight gesetzt, dann auf 'none' */
}
.faq-item__body p {
  margin: 0;
  padding: var(--space-5) var(--space-6) var(--space-6) clamp(52px, 8vw, 84px);
  color: var(--text-body);
  max-width: 68ch;
  line-height: 1.65;
  border-top: 1px solid rgba(10, 41, 51, 0.06);
}

/* Staggered Reveal */
.faq-list.reveal-stagger > .faq-item {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms var(--anim-ease),
    transform 320ms var(--anim-ease);
}
.faq-list.reveal-stagger.is-visible > .faq-item:nth-child(1) { transition-delay:   0ms; opacity: 1; transform: none; }
.faq-list.reveal-stagger.is-visible > .faq-item:nth-child(2) { transition-delay:  80ms; opacity: 1; transform: none; }
.faq-list.reveal-stagger.is-visible > .faq-item:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.faq-list.reveal-stagger.is-visible > .faq-item:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
.faq-list.reveal-stagger.is-visible > .faq-item:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.faq-list.reveal-stagger.is-visible > .faq-item:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }

/* FAQ-Footer */
.faq__footer {
  margin-top: clamp(56px, 8vw, 88px);
  text-align: center;
}
.faq__contact {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin: 0 0 var(--space-3);
}
.faq__contact a {
  color: var(--primary-700);
  text-decoration: underline;
  text-decoration-color: rgba(0, 106, 142, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms ease;
}
.faq__contact a:hover { text-decoration-color: var(--primary-700); }

.faq__back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-500);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 220ms ease;
}
.faq__back-link span { transition: transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1); }
.faq__back-link:hover { color: var(--primary-700); }
.faq__back-link:hover span { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-item summary::after,
  .faq-item__body,
  .faq-list.reveal-stagger > .faq-item,
  .faq-list.reveal-stagger.is-visible > .faq-item { transition: none; transform: none; opacity: 1; }
  .faq-item:not([open]):hover { transform: none; }
}

@media (max-width: 900px) {
  .faq-item summary {
    padding-left: clamp(44px, 14vw, 60px);
    font-size: var(--text-base);
  }
  .faq-item__body p {
    padding-left: clamp(44px, 14vw, 60px);
  }
  .faq-item summary::after {
    width: 32px;
    height: 32px;
    line-height: 30px;
    font-size: 1.15rem;
  }
}

/* ============================================================
   Closing-Sektion — Immersives Bad-Bild + Overlay + CTA
   ============================================================ */
.section--closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(96px, 14vw, 200px);
  color: var(--text-on-dark);
  text-align: center;
}
.section--closing__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.section--closing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section--closing__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5, 30, 40, 0.35)  0%,
      rgba(5, 25, 35, 0.55) 55%,
      rgba(2, 14, 22, 0.92) 100%);
}
.section--closing__content {
  position: relative;
  z-index: 2;
}
.section--closing__headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 auto var(--space-6);
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.section--closing__headline .section__headline-accent {
  color: var(--primary-300);
  text-shadow:
    0 0 14px rgba(127, 219, 238, 0.45),
    0 0 28px rgba(18, 179, 216, 0.30),
    0 2px 18px rgba(0, 0, 0, 0.45);
}
.section--closing__intro {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.80);
  max-width: 600px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.section--closing__payment {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* Digistore24-Reseller-Pflichthinweis unter jedem Kauf-CTA.
   Freigabe-Voraussetzung (nicht nur Trust) — Phrase wörtlich halten.
   Quelle: Vault-Learning digistore-payment-disclosure-mandatory.md */
.cta-disclosure {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.sticky-cta .cta-disclosure {
  margin-top: 4px;
  font-size: 0.7rem;
}
/* Hero liegt auf dunklem Bild → Disclosure exakt wie die Trust-Items
   (Einmalzahlung / Uneingeschränkter Zugriff): hell, uppercase, gleiche Größe. */
.hero__text .cta-disclosure {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   Mid-Section CTAs (Textlink + Mid-Button)
   ============================================================ */
.section-cta {
  text-align: center;
  margin-top: clamp(32px, 5vw, 56px);
  margin-bottom: clamp(16px, 3vw, 24px);
}
/* Kleiner Orange-CTA (90% der Hero-CTA-Groesse) fuer Mid-Sections */
.btn--hero-cta--sm {
  padding: clamp(14px, 1.5vw, 18px) clamp(26px, 3vw, 38px);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
}
.btn--hero-cta--sm::before { inset: -16px; filter: blur(16px); }

.btn--mid-cta {
  display: inline-flex;
  align-items: center;
  padding: clamp(14px, 1.6vw, 18px) clamp(28px, 3vw, 40px);
  background: var(--primary-500);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow:
    0 4px 14px rgba(18, 179, 216, 0.28),
    0 1px 3px rgba(18, 179, 216, 0.20);
  transition:
    transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 320ms ease,
    background-color 220ms ease;
}
.btn--mid-cta:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(18, 179, 216, 0.36),
    0 2px 6px rgba(18, 179, 216, 0.24);
}
.section-cta__price-hint {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  .btn--mid-cta { transition: none; }
  .btn--mid-cta:hover { transform: none; }
}

/* ============================================================
   Sticky Mobile CTA-Banner
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: var(--space-4);
  padding-bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
  background: #FFFFFF;
  box-shadow: 0 -6px 24px rgba(10, 41, 51, 0.14);
  transform: translateY(110%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .btn--hero-cta {
  width: 100%;
  padding-block: 16px;
  font-size: var(--text-base);
}
.sticky-cta .btn--hero-cta::after { display: none; }  /* Shine deaktiviert im Banner */
.sticky-cta__hint {
  margin: var(--space-2) 0 0;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-align: center;
}
@media (min-width: 769px) {
  .sticky-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* ============================================================
   Footer (sehr dunkel)
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  color: var(--text-on-dark-muted);
  padding-block: var(--space-12);
}
.site-footer__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-6);
  text-align: center;
}
.site-footer__brand img { height: 28px; width: auto; opacity: 0.9; }
.site-footer__disclaimer {
  max-width: 56ch;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}
.site-footer__nav {
  display: flex; gap: var(--space-8);
}
.site-footer__nav a {
  color: var(--text-on-dark);
  font-weight: var(--weight-medium);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base);
}
.site-footer__nav a:hover { border-bottom-color: var(--text-on-dark); }
.site-footer__copy { font-size: var(--text-xs); opacity: 0.7; }
