/* Heal & Grow — Sektionen */

/* === Header === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 74, 85, 0.06);
  transition: box-shadow 350ms var(--ease-snap), padding 350ms var(--ease-snap);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(15, 74, 85, 0.08);
  padding: var(--s2) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  position: relative;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--wine);
  letter-spacing: 0.04em;
  font-weight: 600;
  z-index: 2;
}

.site-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Footer-Logo auf Wine: kein Blend, weil das den Logo unsichtbar machen würde */
.site-footer .site-logo img {
  display: none;
}

.nav-links {
  display: none;
  gap: var(--s4);
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--wine);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-snap);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: none;
}

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: transform 300ms var(--ease-snap), opacity 200ms;
}

body.drawer-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.drawer-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.drawer-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* === Mobile Drawer === */
/* === Drawer-Backdrop (auf Laura-Style nicht nötig — Drawer füllt unter Header) === */
.drawer-backdrop {
  display: none;
}

/* === Drawer — Drop-Down vom Header (Laura-Style) === */
.drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  background: #FAF7F3;
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0 var(--s4);
  max-height: 0;
  overflow: hidden;
  transition: max-height 160ms ease;
  box-shadow: 0 12px 30px rgba(15, 74, 85, 0.10);
  transform: none;
}

body.drawer-open .drawer {
  max-height: calc(100vh - 80px);
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
  padding: var(--s3) var(--s4) var(--s4);
}

/* X-Button ausblenden — Hamburger swappt selbst zu X */
.drawer-close {
  display: none;
}

/* Drawer-Items: links-bündig, vertikal, uniform — Laura-Style */
.drawer > a,
.drawer > .drawer-group {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 74, 85, 0.08);
}

.drawer > a {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--wine);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    color 200ms ease-out,
    background-color 200ms ease-out,
    padding-left 200ms ease-out;
  margin: 0 calc(var(--s4) * -1);
  padding-left: var(--s4);
  padding-right: var(--s4);
}

.drawer > a:hover {
  color: var(--gold);
  background-color: rgba(200, 154, 82, 0.06);
}

.drawer > a:active {
  background-color: rgba(200, 154, 82, 0.12);
  transition-duration: 80ms;
}

/* Aktive Seite — nur Gold-Hervorhebung, keine Größen-Änderung */
.drawer > a.nav-active {
  color: var(--gold);
  pointer-events: none;
  cursor: default;
}

/* CTA-Button am Ende — kein Border, eigener Stand */
.drawer > a.btn {
  border-bottom: none;
  margin-top: var(--s3);
  text-align: center;
  padding: 16px 32px;
}

/* Drawer-Sub (Heal & Grow im Submenu) bleibt klein */
.drawer .drawer-submenu .drawer-sub {
  font-size: 17px;
  color: var(--mauve);
  font-weight: 500;
  display: block;
  padding: 10px 0 10px var(--s3);
  text-decoration: none;
  border: none;
  text-align: left;
}

.drawer .drawer-submenu .drawer-sub:hover {
  color: var(--gold);
}

.drawer .drawer-submenu .drawer-sub.nav-active {
  color: var(--gold);
  font-weight: 600;
}

/* Desktop-Nav: aktive Seite mit Gold-Underline + Wine-Farbe */
.nav-links a.nav-active {
  color: var(--wine);
  font-weight: 600;
  position: relative;
}

.nav-links a.nav-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* === Hero === */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* dynamische Viewport-Höhe für mobile Browser-Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('../img/daniel-hero.jpg') 75% 20% / cover no-repeat;
  overflow: hidden;
  padding: clamp(72px, 10vw, 110px) var(--section-x) var(--s4);
  text-align: center;
}



.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-leaf-left,
.hero-leaf-right {
  position: absolute;
  width: 260px;
  height: 260px;
  opacity: 0.5;
  filter: blur(0px);
  will-change: transform, opacity;
}

.hero-leaf-left {
  top: 18%;
  left: -80px;
  background: radial-gradient(circle at 70% 50%, rgba(42, 181, 194, 0.28) 0%, transparent 60%);
  border-radius: 50%;
  animation: hero-blob-drift-a 20s ease-in-out infinite;
}

.hero-leaf-right {
  bottom: 12%;
  right: -80px;
  background: radial-gradient(circle at 30% 50%, rgba(200, 154, 82, 0.28) 0%, transparent 60%);
  border-radius: 50%;
  animation: hero-blob-drift-b 22s ease-in-out infinite;
}

@keyframes hero-blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.42; }
  50%      { transform: translate(28px, -18px) scale(1.06); opacity: 0.6; }
}

@keyframes hero-blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50%      { transform: translate(-22px, 14px) scale(1.05); opacity: 0.58; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero-arc {
  width: clamp(220px, 35vw, 360px);
  height: clamp(80px, 14vw, 140px);
  margin: 0 auto var(--s2);
  display: block;
}

.hero-phoenix {
  width: clamp(180px, 22vw, 300px);
  margin: 0 auto var(--s2);
  display: block;
  filter: drop-shadow(0 12px 30px rgba(181, 122, 132, 0.25));
  mix-blend-mode: multiply;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 74, 85, 0.30) 0%,
    rgba(15, 74, 85, 0.12) 60%,
    rgba(15, 74, 85, 0.04) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero h1 {
  max-width: 26ch;
  margin: 0 auto var(--s2);
  font-family: var(--font-body);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #5A2C33;
}

.hero .hero-sub {
  color: #5A2C33;
  font-size: clamp(15px, 1.3vw, 19px);
  max-width: 44ch;
  margin: 0 auto var(--s4);
  line-height: 1.65;
}

.hero .btn-primary {
  min-width: 220px;
  margin-top: var(--s4);
}

.hero .hero-tagline {
  font-size: var(--fs-body-lg);
  color: rgba(15, 74, 85, 0.8);
  font-style: italic;
  font-family: var(--font-display);
  max-width: 38ch;
  margin: 0 auto var(--s4);
  line-height: var(--lh-relaxed);
}

.hero .hero-sub {
  color: #5A2C33;
  font-weight: 500;
}

.hero .trust-strip {
  color: #5A2C33;
}

.hero .trust-strip span {
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: #5A2C33;
  color: #5A2C33;
  backdrop-filter: blur(4px);
}

.hero .hero-rating {
  color: #5A2C33;
  background: rgba(15, 74, 85, 0.07);
  border-color: rgba(15, 74, 85, 0.20);
}

.hero .hero-rating-text strong {
  color: #5A2C33;
}

.hero .eyebrow {
  color: #C89A52;
}

/* === has-shader: Hero auf Dark-Shader-Modus === */
.has-shader .hero {
  background: #1a0e14;
}

.has-shader .hero-bg-decor { display: none; }

.hero-shader-canvas {
  display: none;
}

.has-shader .hero-shader-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Sanfter Wine-Tint-Overlay + radialer Dark-Vignette für Text-Lesbarkeit */
.has-shader .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(58,31,44,0.35) 0%, transparent 50%, rgba(58,31,44,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.has-shader .hero-content { position: relative; z-index: 2; }

/* Header dauerhaft sichtbar im Shader-Modus */
.has-shader .site-header {
  background: rgba(20, 12, 18, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
          backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(200, 154, 82, 0.18);
}

.has-shader .site-header .site-logo,
.has-shader .site-header .site-logo span {
  color: var(--ivory);
}

.has-shader .site-header .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.has-shader .site-header .nav-links a:hover {
  color: var(--gold);
}

.has-shader .site-header .nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.85);
}

.has-shader .site-header .hamburger span {
  background: var(--ivory);
}

/* Hero-Text mit starken Shadows für Lesbarkeit auch über Partikeln */
.has-shader .hero h1 {
  color: var(--ivory);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 60px rgba(0, 0, 0, 0.5);
}

.has-shader .hero-sub {
  color: var(--ivory);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 0, 0.5);
}

.has-shader .hero .eyebrow {
  color: var(--gold);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

/* Phönix-Logo: warm getönt, leuchtet auf dunklem Hintergrund */
.has-shader .hero-phoenix {
  mix-blend-mode: normal;
  filter:
    brightness(1.7) saturate(1.3) contrast(1.1)
    drop-shadow(0 0 30px rgba(232, 207, 199, 0.55))
    drop-shadow(0 0 60px rgba(200, 154, 82, 0.5));
}

.has-shader .hero-arc path {
  stroke: var(--gold);
  opacity: 0.5;
}

.has-shader .hero-rating {
  background: rgba(20, 12, 18, 0.55);
  border-color: rgba(200, 154, 82, 0.55);
  color: var(--ivory);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.has-shader .hero-rating-text,
.has-shader .hero-rating-text strong { color: var(--ivory); }

.has-shader .hero .trust-strip {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.has-shader .hero .btn-ghost {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(20, 12, 18, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.has-shader .hero .btn-ghost:hover {
  background: var(--ivory);
  color: var(--wine);
}

/* Trust-Badge oben im Hero — Sterne + Klientinnen-Zahl */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto var(--s3);
  padding: 7px 16px;
  background: rgba(200, 154, 82, 0.1);
  border: 1px solid rgba(200, 154, 82, 0.28);
  border-radius: 999px;
  font-size: 13px;
  color: var(--wine);
  line-height: 1;
}

.hero-rating-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 14px;
}

.hero-rating-text strong {
  font-weight: 700;
  color: var(--wine);
}

.hero-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink);
  max-width: 36ch;
  margin: 0 auto var(--s5);
  line-height: var(--lh-relaxed);
}

.hero-ctas {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s4);
}

/* Mobile: CTAs untereinander, full-width für besseres Tap-Erlebnis */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}

/* === Pain Points === */
.pain-section {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.pain-section::after {
  content: "";
  position: absolute;
  top: 5%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: url('../img/pain-atmosphere.png') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  filter: blur(2px);
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

.pain-questions {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  position: relative;
  z-index: 1;
}

/* Zigzag-Versatz: 1 leicht links, 2 leicht rechts, 3 leicht links … (auch auf Mobile) */
.pain-question {
  width: 96%;
}
.pain-question:nth-child(odd) {
  margin-right: auto;
  margin-left: 0;
}
.pain-question:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 768px) {
  .pain-question {
    width: 92%;
  }
}


.pain-question {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: var(--s4);
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  transition: transform 350ms var(--ease-soft), box-shadow 350ms var(--ease-soft);
}

/* Nummer ausgeblendet — Text nutzt die volle Blockbreite */
.pain-question .pain-number {
  display: none;
}

.pain-question:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft-lg);
}

/* === Reveal: Tafeln klappen von unten auf === */
.pain-questions {
  perspective: 800px;
}

.pain-question.reveal {
  opacity: 0;
  transform: rotateX(-70deg) translateY(20px);
  transform-origin: bottom center;
  transition:
    opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.pain-question.reveal.in-view {
  opacity: 1;
  transform: rotateX(0deg) translateY(0);
}

/* Stagger: jede Karte 250ms nach der vorherigen */
.pain-question.reveal:nth-child(1) { transition-delay: 0ms; }
.pain-question.reveal:nth-child(2) { transition-delay: 250ms; }
.pain-question.reveal:nth-child(3) { transition-delay: 500ms; }
.pain-question.reveal:nth-child(4) { transition-delay: 750ms; }
.pain-question.reveal:nth-child(5) { transition-delay: 1000ms; }

.pain-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 1.5em;
}

.pain-text {
  font-family: var(--font-body);
  font-style: normal;
  /* Startgröße; JS setzt EINE gemeinsame Größe, sodass die längste Frage
     genau auf die volle Blockbreite in eine Zeile passt */
  font-size: 21px;
  line-height: var(--lh-snug);
  color: var(--wine);
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

/* Auf schmalen Screens Umbruch wieder erlauben (sonst läuft es über den Rand) */
@media (max-width: 700px) {
  .pain-text {
    white-space: normal;
    font-size: clamp(15px, 4vw, 19px);
  }
}

/* === Intro Section (zwischen Hero und Pain) — als Verbindung gestaltet === */
.intro-block {
  background: linear-gradient(180deg, var(--soft-rose) 0%, var(--ivory) 100%);
  padding: var(--s5) 0;
  text-align: center;
}

body.page-course .intro-block {
  background: transparent;
  margin-top: -30px;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

body.page-course .intro-card {
  box-shadow: 0 32px 100px rgba(15, 74, 85, 0.14);
}

.intro-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--r-card-lg);
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 80px);
  box-shadow: 0 24px 80px rgba(15, 74, 85, 0.10);
  border: 1px solid rgba(200, 154, 82, 0.3);
  position: relative;
  overflow: hidden;
}

.intro-card p {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.8;
  color: var(--wine);
  font-weight: 400;
  margin: 0;
  max-width: none;
}

/* Abstand zwischen mehreren Absätzen im Intro-Text */
.intro-card p + p {
  margin-top: 1.1em;
}

/* Wichtige Kernaussagen im Intro-Text schwarz hervorheben */
.intro-card p strong {
  color: #111;
  font-weight: 600;
}

.intro-card .intro-signature {
  display: block;
  margin-top: var(--s4);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
}

/* === Learn Section (Du wirst lernen, wie du …) === */
.learn {
  background: var(--ivory);
  padding: var(--section-y) 0;
}

.learn-carousel-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.learn-carousel {
  display: flex;
  gap: var(--s3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--s2) clamp(16px, 4vw, 60px) var(--s4);
  margin: 0;
}

.learn-carousel::-webkit-scrollbar {
  display: none;
}

.learn-card {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft-lg);
  transition: transform 400ms var(--ease-soft), box-shadow 400ms var(--ease-soft);
  cursor: default;
  flex: 0 0 78vw;
  max-width: 320px;
  scroll-snap-align: center;
}

@media (min-width: 640px) {
  .learn-card {
    flex: 0 0 340px;
    max-width: 340px;
  }
}

@media (min-width: 1024px) {
  .learn-card {
    flex: 0 0 360px;
    max-width: 360px;
  }
  .learn-carousel {
    padding-left: clamp(40px, 8vw, 120px);
    padding-right: clamp(40px, 8vw, 120px);
  }
}

.learn-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: var(--s2);
  flex-wrap: wrap;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.learn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139, 102, 120, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 300ms var(--ease-snap), transform 300ms var(--ease-snap);
  flex-shrink: 0;
}

.learn-dot:hover {
  background: rgba(139, 102, 120, 0.5);
}

.learn-dot.active {
  background: var(--mauve);
  transform: scale(1.3);
}

.learn-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 74, 85, 0.22);
}

.learn-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 800ms var(--ease-soft);
}

.learn-card:hover img {
  transform: scale(1.05);
}

.learn-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.32) 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.learn-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s4) var(--s4) var(--s5);
  z-index: 2;
  color: var(--white);
}

.learn-overlay .eyebrow {
  color: var(--blush);
  margin-bottom: 8px;
}

.learn-overlay h3 {
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: var(--lh-snug);
  margin: 0 0 var(--s2);
}

.learn-overlay p {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* === Bekannt aus === */
.known-from {
  position: relative;
  background: var(--ivory);
  padding: var(--s7) 0;
  border-top: 1px solid rgba(139, 102, 120, 0.12);
  border-bottom: 1px solid rgba(139, 102, 120, 0.12);
  text-align: center;
  overflow: hidden;
}

.known-from::before,
.known-from::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(70% 100% at 50% 50%, rgba(232, 207, 199, 0.35), transparent 70%);
  z-index: 0;
}
.known-from::before { top: -25%; }
.known-from::after  { bottom: -25%; }

.known-from > .container,
.known-from > .known-marquee {
  position: relative;
  z-index: 1;
}

.known-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}

.known-rule {
  display: block;
  width: clamp(48px, 9vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.known-from .eyebrow {
  color: var(--mauve);
  margin: 0;
}

.known-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.known-track {
  display: inline-flex;
  align-items: center;
  animation: known-marquee 60s linear infinite;
  will-change: transform;
}

.known-marquee:hover .known-track {
  animation-play-state: paused;
}

.known-group {
  display: inline-flex;
  align-items: center;
  gap: var(--s5);
  margin: 0 var(--s5) 0 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.known-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  color: var(--wine);
  opacity: 0.55;
  letter-spacing: 0.01em;
  transition: opacity 400ms var(--ease-soft);
  cursor: default;
}

.known-logo:hover {
  opacity: 1;
}

.known-sep {
  color: var(--gold);
  font-size: clamp(10px, 1vw, 14px);
  opacity: 0.6;
  letter-spacing: 0.05em;
  user-select: none;
}

@keyframes known-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .known-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
  .known-group {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    margin: 0;
  }
  .known-group[aria-hidden="true"] {
    display: none;
  }
}

/* === Story === */
.story {
  background: var(--ivory);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "image"
    "text";
  gap: var(--s5);
  align-items: stretch;
}

.story-image {
  grid-area: image;
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.story-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-top-left-radius: var(--r-card-lg);
}

.story-text p {
  font-size: var(--fs-body-lg);
  color: var(--ink);
  margin-bottom: var(--s3);
}

.story-text p:last-of-type {
  margin-bottom: var(--s3);
}

.story-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
  margin-top: var(--s4);
  display: block;
}

/* === Benefits === */
.benefits {
  background: var(--gradient-calm);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

.benefit-item {
  display: flex;
  gap: var(--s3);
  padding: var(--s3);
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  transition: transform 300ms var(--ease-soft), box-shadow 300ms var(--ease-soft);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--soft-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-text h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: var(--fs-body-sm);
  color: var(--ink);
  margin: 0;
}

/* === Vorher / Nachher === */
.before-after {
  background: var(--ivory);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  position: relative;
}

.ba-column {
  padding: var(--s5) var(--s4);
  border-radius: var(--r-card-lg);
}

.ba-column h3 {
  margin-bottom: var(--s4);
}

.ba-before {
  background: #1A2A2E;
  color: var(--white);
}

.ba-before h3 {
  color: var(--white);
}

.ba-before .ba-item {
  color: rgba(255, 255, 255, 0.9);
}

.ba-after {
  background: var(--gradient-emotional);
  color: var(--white);
}

.ba-after h3 {
  color: var(--white);
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.ba-item {
  display: flex;
  gap: var(--s2);
  font-size: var(--fs-body);
  line-height: var(--lh-snug);
}

.ba-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
}

.ba-before .ba-icon {
  background: rgba(122, 110, 110, 0.15);
  color: var(--muted);
}

.ba-after .ba-icon {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.ba-before .ba-item {
  color: rgba(255, 255, 255, 0.9);
}

.ba-divider {
  display: none;
}

/* === Features === */
.features {
  background: var(--ivory);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

/* === Features-Carousel (3D-Image-Stack + Text + Pfeil-Nav) === */
.features-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  outline: none;
}

@media (min-width: 768px) {
  .features-carousel {
    grid-template-columns: 1fr 1fr;
    gap: var(--s7);
  }
}

/* Image-Stack */
.fc-images {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  perspective: 1000px;
  max-width: 460px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .fc-images {
    max-width: none;
    margin: 0;
  }
}

.fc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-card-lg);
  box-shadow: 0 20px 50px rgba(15, 74, 85, 0.16);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform 800ms cubic-bezier(0.4, 2, 0.3, 1),
    opacity 600ms cubic-bezier(0.4, 2, 0.3, 1);
}

.fc-image.fc-active {
  opacity: 1;
  z-index: 3;
  transform: translateX(0) translateY(0) scale(1) rotateY(0);
  pointer-events: auto;
}

.fc-image.fc-left {
  opacity: 0.95;
  z-index: 2;
  transform: translateX(-12%) translateY(-6%) scale(0.86) rotateY(15deg);
}

.fc-image.fc-right {
  opacity: 0.95;
  z-index: 2;
  transform: translateX(12%) translateY(-6%) scale(0.86) rotateY(-15deg);
}

/* Content rechts */
.fc-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s4);
  min-height: 280px;
}

.fc-items[hidden] {
  display: none !important;
}

.fc-text {
  min-height: 200px;
}

.fc-tag {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}

.fc-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--wine);
  margin: 0 0 var(--s3);
  line-height: 1.15;
}

.fc-quote {
  font-size: var(--fs-body-lg);
  color: var(--ink);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.fc-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(4px);
  animation: fc-word-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fc-word-in {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* Navigation */
.fc-nav {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-top: var(--s2);
}

.fc-counter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  letter-spacing: 0.05em;
}

.fc-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--wine);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 300ms var(--ease-soft),
    transform 300ms var(--ease-soft),
    box-shadow 300ms var(--ease-soft);
  box-shadow: 0 8px 20px rgba(15, 74, 85, 0.14);
}

.fc-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(200, 154, 82, 0.32);
}

.fc-btn svg {
  width: 22px;
  height: 22px;
}

.features-carousel:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  border-radius: var(--r-md);
}

/* === Mobile-Optimierung (unter 768px) === */
@media (max-width: 767px) {
  .features-carousel {
    gap: var(--s4);
  }

  .fc-images {
    aspect-ratio: 1 / 1;
    max-width: 340px;
    perspective: 800px;
  }

  /* Side-Images verstecken — auf Mobile zu eng, sieht gequetscht aus */
  .fc-image.fc-left,
  .fc-image.fc-right {
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .fc-content {
    min-height: 0;
    gap: var(--s3);
    text-align: center;
    align-items: center;
  }

  .fc-text {
    min-height: 0;
  }

  .fc-tag {
    margin-bottom: var(--s1);
  }

  .fc-title {
    font-size: clamp(26px, 6vw, 34px);
    margin: 0 0 var(--s2);
  }

  .fc-quote {
    font-size: var(--fs-body);
    max-width: 38ch;
    margin: 0 auto;
  }

  .fc-nav {
    justify-content: center;
    gap: var(--s4);
    padding-top: var(--s2);
  }

  .fc-btn {
    width: 56px;
    height: 56px;
  }

  /* Dots-Indikator nur auf Mobile */
  .fc-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-top: var(--s2);
  }
}

/* Dots-Indikator auf Desktop ausblenden */
.fc-dots { display: none; }

/* Seitliche Pfeil-Overlays — nur Mobile */
.fc-arrow-left,
.fc-arrow-right {
  display: none;
}

@media (max-width: 1023px) {
  .fc-arrow-left,
  .fc-arrow-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 28px;
    height: 44px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    border-radius: 6px;
    pointer-events: none;
    transition: opacity 400ms ease;
  }

  .fc-arrow-left  { left: 8px;  animation: hint-left  1.2s ease infinite; }
  .fc-arrow-right { right: 8px; animation: hint-right 1.2s ease infinite; }

  .fc-arrow-left svg,
  .fc-arrow-right svg {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  }

  .fc-arrow-left.fc-hint-hidden,
  .fc-arrow-right.fc-hint-hidden {
    opacity: 0;
  }
}

@keyframes hint-left {
  0%, 100% { transform: translateY(-50%) translateX(0);    opacity: 0.7; }
  50%       { transform: translateY(-50%) translateX(-4px); opacity: 1;   }
}

@keyframes hint-right {
  0%, 100% { transform: translateY(-50%) translateX(0);   opacity: 0.7; }
  50%       { transform: translateY(-50%) translateX(4px); opacity: 1;   }
}

.fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(139, 102, 120, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 250ms var(--ease-soft), transform 250ms var(--ease-soft);
}

.fc-dot.fc-dot-active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
  .fc-image { transition: opacity 200ms linear; }
  .fc-word { animation: none; opacity: 1; filter: none; transform: none; }
}

/* Feature-Cards bekommen sanfte Verläufe + dezenten Eck-Glow */
.feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F5FDFD 0%, var(--soft-rose) 100%);
  border: 1px solid rgba(42, 181, 194, 0.18);
}

.feature-card:nth-child(2) {
  background: linear-gradient(135deg, #F5FDFD 0%, #DCF0EC 100%);
}
.feature-card:nth-child(3) {
  background: linear-gradient(135deg, #F5FDFD 0%, #D8EFEB 100%);
}
.feature-card:nth-child(4) {
  background: linear-gradient(160deg, #F8FEFE 0%, var(--soft-rose) 100%);
}
.feature-card:nth-child(5) {
  background: linear-gradient(160deg, #F5FDFD 0%, #DDF0EB 100%);
}
.feature-card:nth-child(6) {
  background: linear-gradient(135deg, #F8FEFE 0%, #D5ECE7 100%);
}

/* Dezenter Gold-Glow in der oberen rechten Ecke */
.feature-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 154, 82, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 600ms var(--ease-soft), opacity 600ms var(--ease-soft);
  opacity: 0.7;
}

.feature-card:hover::before {
  opacity: 1;
  transform: scale(1.15);
}

/* Mauve-Glow unten links (subtil, gibt Tiefe) */
.feature-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 102, 120, 0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card .card-icon {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--r-md);
  padding: var(--s2);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 8px 20px rgba(200, 154, 82, 0.15);
}

/* === Empathy — Daniel's Verständnis (zwischen Pain Points und Learn) === */
.empathy {
  background: var(--ivory);
}

/* Bekannt aus — Overlay unten auf dem Bild (Laura-Seiler-Style: zentriert, weiß) */
.bekannt-aus {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 100px 16px 20px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.88) 100%);
}

.bekannt-aus-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.bekannt-aus-track-wrap {
  overflow: hidden;
  width: 100%;
  filter: invert(1) grayscale(1) brightness(1.8);
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.bekannt-aus-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-logos 26s linear infinite;
}

.bekannt-aus-track img {
  height: 30px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 40px;
  opacity: 0.9;
}

@keyframes marquee-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .bekannt-aus-track { animation: none; }
}

.empathy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .empathy-grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--s6);
  }
}

.empathy-image {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft-lg);
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .empathy-image {
    max-width: none;
    margin: 0;
  }
}

.empathy-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gold-Eck-Akzent — gleiche Logik wie Story */
.empathy-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-bottom-right-radius: var(--r-card-lg);
  pointer-events: none;
}

.empathy-content {
  display: flex;
  flex-direction: column;
}

.empathy-content .eyebrow {
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--s2);
}

.empathy-content h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  color: var(--wine);
  line-height: 1.15;
  margin: 0 0 var(--s3);
  max-width: 18ch;
}

.empathy-content p {
  font-size: clamp(16px, 1.45vw, 20px);
  color: var(--ink);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--s3);
}

.empathy-content p:last-child {
  margin-bottom: 0;
}

/* === Newsletter Section (Homepage, vor Footer) — breit + flach === */
.newsletter {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--soft-rose) 100%);
  padding: clamp(36px, 5vw, 56px) 0;
}

.newsletter-card {
  max-width: 1150px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-card-lg);
  padding: clamp(28px, 3.5vw, 48px) clamp(28px, 4vw, 56px);
  text-align: left;
  box-shadow:
    0 24px 60px rgba(15, 74, 85, 0.08),
    0 0 0 1px rgba(200, 154, 82, 0.2);
  border-top: 4px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  align-items: center;
}

@media (min-width: 820px) {
  .newsletter-card {
    grid-template-columns: 5fr 6fr;
    gap: var(--s5);
  }
}

/* Sanfter animierter Light-Sweep im Newsletter-Card-Hintergrund */
.newsletter-card {
  overflow: hidden;
  isolation: isolate;
}

.newsletter-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(200, 154, 82, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: newsletter-light-sweep 11s ease-in-out infinite;
}

.newsletter-card > * {
  position: relative;
  z-index: 1;
}

@keyframes newsletter-light-sweep {
  0%   { top: -30%; left: -30%; opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { top: 110%; left: 110%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-card::after { animation: none; opacity: 0.5; top: 20%; left: 20%; }
}

.newsletter-text {
  text-align: left;
}

.newsletter-card .eyebrow {
  color: var(--gold);
  margin-bottom: var(--s1);
  display: inline-block;
}

.newsletter-card h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--wine);
  margin: 0 0 var(--s2);
  line-height: 1.15;
  max-width: 22ch;
}

.newsletter-text > p {
  font-size: var(--fs-body-sm);
  color: var(--ink);
  margin: 0;
  max-width: 48ch;
  line-height: var(--lh-relaxed);
}

.newsletter-form {
  width: 100%;
  margin: 0;
}

.newsletter-row {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

@media (min-width: 540px) {
  .newsletter-row {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid rgba(139, 102, 120, 0.25);
  border-radius: var(--r-pill);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--wine);
  transition: border-color 250ms var(--ease-soft), background 250ms var(--ease-soft);
  min-height: 52px;
}

.newsletter-input::placeholder {
  color: var(--muted);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.newsletter-submit {
  flex-shrink: 0;
}

.newsletter-privacy {
  font-size: 13px;
  color: var(--muted);
  margin: var(--s3) 0 0;
  line-height: 1.5;
}

.newsletter-privacy a {
  color: var(--mauve);
  text-decoration: underline;
}

.newsletter-success {
  text-align: center;
  padding: var(--s4);
  background: var(--soft-rose);
  border-radius: var(--r-md);
  color: var(--wine);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Parallax Quote — Fixed-Background-Section === */
.parallax-quote {
  position: relative;
  background-image: url('../img/seminar-gruppe.jpg');
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--wine);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 14vw, 160px) clamp(20px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}

/* Overlay über dem Bild für Text-Lesbarkeit — etwas leichter & wärmer,
 * damit die hochwertige Bildqualität durchscheint */
.parallax-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 40, 35, 0.62) 0%, rgba(15, 74, 61, 0.74) 100%);
  z-index: 0;
}

/* Optional: Gold-Leaf-Akzent oben links wie bei Laura */
.parallax-quote-leaf {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 0% 0%, rgba(200, 154, 82, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.parallax-quote-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
}

.parallax-quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ivory);
  margin: 0 0 var(--s4);
  letter-spacing: -0.005em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.parallax-quote-author {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

/* iOS Safari: background-attachment fixed performt schlecht — auf Mobile scroll-Verhalten */
@media (max-width: 900px) {
  .parallax-quote {
    background-attachment: scroll;
    background-position: center;
    min-height: 50vh;
  }
}

/* === Ausreden — 3 Gedanken, die dich klein halten === */
.ausreden {
  background: var(--ivory);
}

.ausreden-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.ausrede-item {
  background: var(--white);
  border-radius: var(--r-card);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 14px 36px rgba(15, 74, 85, 0.07);
}

.ausrede-thought {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  margin-bottom: var(--s3);
}

.ausrede-thought p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-style: italic;
  color: var(--mauve);
  margin: 0;
  line-height: var(--lh-snug);
}

.ausrede-icon {
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1;
  flex-shrink: 0;
}

.ausrede-answer {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  padding-left: var(--s4);
  border-left: 3px solid var(--gold);
  margin-left: var(--s3);
}

.ausrede-answer p {
  font-size: var(--fs-body);
  color: var(--wine);
  margin: 0;
  font-weight: 500;
  line-height: var(--lh-relaxed);
}

.ausrede-arrow {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.3;
}

.section-cta {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: var(--s5);
  width: 100%;
}

.section-cta .btn {
  width: auto;
  max-width: 100%;
}

/* === Stats Section (vor Modulen) === */
.stats {
  background: var(--ivory);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

/* Stats + Module direkt nacheinander → als visuelle Einheit verschmelzen */
.stats + .modules {
  padding-top: var(--s4);
}

.stats:has(+ .modules) {
  padding-bottom: var(--s4);
  background: var(--ivory);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
  }
}

.stat-card {
  background: var(--white);
  border-radius: var(--r-card-lg);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 3vw, 40px);
  text-align: center;
  box-shadow:
    0 18px 50px rgba(15, 74, 85, 0.07),
    0 0 0 1px rgba(200, 154, 82, 0.15);
  transition:
    transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 450ms var(--ease-soft);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(15, 74, 85, 0.10),
    0 0 0 2px var(--gold);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 104px);
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s2);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

.stat-label {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--wine);
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.stat-desc {
  font-size: var(--fs-body-sm);
  color: var(--ink);
  line-height: var(--lh-relaxed);
  max-width: 36ch;
  margin: 0 auto;
}

/* === Module-Breakdown === */
.modules {
  background: var(--gradient-calm);
}

/* === Module — Schmale Accordion-Liste mit Color-Grading 01→07 (Gold → Rose → Wine) === */
.module-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  max-width: 820px;
  margin: 0 auto;
}

/* Color-Grading: Reise von Gold (sanft) durch Rose (mittendrin) nach Wine (Tiefe) */
.module-item:nth-child(1) { --module-accent: #C89A52; }  /* Gold */
.module-item:nth-child(2) { --module-accent: #C28F63; }
.module-item:nth-child(3) { --module-accent: #BB8573; }
.module-item:nth-child(4) { --module-accent: #B57A84; }  /* Rose */
.module-item:nth-child(5) { --module-accent: #976069; }
.module-item:nth-child(6) { --module-accent: #78464E; }
.module-item:nth-child(7) { --module-accent: #5A2C33; }  /* Wine */

/* Modules 1–3: helle Hintergründe → dunkler Text */
.module-item:nth-child(-n+3) {
  --module-text: var(--wine);
  --module-text-soft: rgba(15, 74, 85, 0.55);
}

/* Modules 4–7: dunklere Hintergründe → heller Text */
.module-item:nth-child(n+4) {
  --module-text: var(--ivory);
  --module-text-soft: var(--blush);
}

.module-item {
  position: relative;
  background: var(--module-accent);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 74, 85, 0.08);
  transition:
    transform 300ms var(--ease-soft),
    box-shadow 300ms var(--ease-soft),
    filter 300ms var(--ease-soft);
}

.module-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 74, 85, 0.16);
  /* leichter dunkler statt brightness — bewahrt das Color-Grading */
  box-shadow: 0 18px 44px color-mix(in srgb, var(--module-accent) 35%, transparent);
}

.module-item:active {
  transform: translateY(-1px);
  transition-duration: 100ms;
}

.module-item.open {
  box-shadow:
    0 22px 56px rgba(15, 74, 85, 0.16),
    0 0 0 2px var(--module-accent);
}

.module-trigger {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
  padding: clamp(14px, 2vw, 22px) clamp(16px, 3vw, 28px);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--module-text);
  font-family: inherit;
}

.module-trigger:focus-visible {
  outline: 2px solid var(--module-text);
  outline-offset: -2px;
}

.module-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--module-text);
  line-height: 1;
  flex-shrink: 0;
  min-width: clamp(36px, 5vw, 56px);
  text-align: center;
  opacity: 0.9;
}

.module-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.module-head .eyebrow {
  color: var(--module-text-soft);
  font-size: var(--fs-eyebrow);
  margin: 0;
}

.module-head h3 {
  font-size: clamp(17px, 2vw, 22px);
  margin: 0;
  color: var(--module-text);
  line-height: 1.25;
  font-weight: 600;
}

.module-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  position: relative;
  transition: transform 300ms var(--ease-snap);
}

.module-icon::before,
.module-icon::after {
  content: "";
  position: absolute;
  background: var(--module-text);
  border-radius: 2px;
}

.module-icon::before {
  width: 14px;
  height: 2px;
  top: 12px;
  left: 6px;
}

.module-icon::after {
  width: 2px;
  height: 14px;
  top: 6px;
  left: 12px;
  transition: transform 300ms var(--ease-snap);
}

.module-item.open .module-icon::after {
  transform: scaleY(0);
}

.module-body {
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 720ms var(--ease-soft);
}

.module-body-inner {
  position: relative;
  z-index: 2;
  padding: clamp(4px, 1vw, 10px) clamp(16px, 3vw, 28px) clamp(24px, 2.5vw, 34px)
           calc(clamp(16px, 3vw, 28px) + clamp(36px, 5vw, 56px) + clamp(12px, 2vw, 24px));
}

/* Wochen-Bild als STATISCHER Hintergrund in voller Blockhöhe (via JS gesetzt).
 * Der wachsende Body legt es wie ein Vorhang smooth frei — kein Neu-Berechnen
 * des Bildausschnitts pro Frame, dazu ein sanfter Kino-Zoom (Ken Burns). */
.module-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* feste Zielhöhe des geöffneten Blocks — solange geschlossen 100% (egal, weil unsichtbar) */
  height: var(--week-open-h, 100%);
  z-index: 0;
  background-image: var(--week-image);
  background-size: cover;
  background-position: center 32%;
  opacity: 0;
  transform: scale(1.09);
  transform-origin: center top;
  transition:
    opacity 700ms var(--ease-soft),
    transform 1600ms var(--ease-soft);
  pointer-events: none;
  will-change: opacity, transform;
}

/* Leichtes Aufhellungs-Overlay über dem Bild für Lesbarkeit */
.module-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--week-open-h, 100%);
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.60) 0%,
    rgba(255, 255, 255, 0.34) 42%,
    rgba(255, 255, 255, 0.10) 100%
  );
  opacity: 0;
  transition: opacity 700ms var(--ease-soft);
  pointer-events: none;
}

.module-item.open::before {
  opacity: 1;
  transform: scale(1);
}
.module-item.open::after {
  opacity: 1;
}

/* Wochen-Bilder pro Modul */
.module-item:nth-child(1) { --week-image: url('../img/woche-1.png'); }
.module-item:nth-child(2) { --week-image: url('../img/woche-2.png'); }
.module-item:nth-child(3) { --week-image: url('../img/woche-3.png'); }
.module-item:nth-child(4) { --week-image: url('../img/woche-4.png'); }
.module-item:nth-child(5) { --week-image: url('../img/woche-5.png'); }
.module-item:nth-child(6) { --week-image: url('../img/woche-6.png'); }
.module-item:nth-child(7) { --week-image: url('../img/woche-7.png'); }
.module-item:nth-child(8) { --week-image: url('../img/woche-8.png'); }

/* Kopf über das Bild legen, wenn geöffnet */
.module-item.open .module-trigger {
  position: relative;
  z-index: 2;
}

/* Kopf-Text im geöffneten Zustand dunkel & lesbar über dem Bild */
.module-item.open .module-number,
.module-item.open .module-head h3,
.module-item.open .module-head .eyebrow,
.module-item.open .module-icon::before,
.module-item.open .module-icon::after {
  color: #211913;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}
.module-item.open .module-icon::before,
.module-item.open .module-icon::after {
  background: #211913;
}

.module-body-inner p {
  margin: 0;
  font-size: var(--fs-body);
  color: #211913;
  font-weight: 500;
  line-height: var(--lh-relaxed);
  opacity: 1;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

/* Mobile: weniger Indent damit Text mehr Breite hat */
@media (max-width: 540px) {
  .module-body-inner {
    padding-left: clamp(16px, 3vw, 28px);
  }
}

/* === Pricing — Premium Redesign === */
.pricing {
  background: #FFFFFF;
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

/* Sanfte Ivory-Bleeds an Top und Bottom (Übergang zu Modulen oben, Bonus unten) */
.pricing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    var(--ivory) 0,
    transparent 100px,
    transparent calc(100% - 100px),
    var(--ivory) 100%
  );
}

.pricing > .container { position: relative; z-index: 2; }

/* Alter weißer Kreis-Decor weg — passt nicht mehr zum hellen Hintergrund */
.pricing::before { display: none; }

/* Großes Kauf-Bild oben — volle Breite, komplett sichtbar */
.pricing-hero-full {
  max-width: var(--container);
  margin: 0 auto clamp(28px, 3vw, 48px);
  padding: 0 var(--section-x);
  position: relative;
  z-index: 1;
}

.pricing-hero-full img {
  display: block;
  width: 100%;
  /* Bild komplett zeigen — alle Geräte sichtbar, nichts abgeschnitten */
  height: auto;
  border-radius: clamp(20px, 3vw, 40px);
}

/* Zweispaltiges Kauf-Panel unter dem Bild (Liste links, Kauf-Box rechts) */
.pricing-panel {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border-radius: clamp(20px, 2.5vw, 30px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 74, 85, 0.18);
}

@media (max-width: 820px) {
  /* Mobile: Bild oben, Liste, Kauf-Box — alles gestapelt (volle Breite) */
  .pricing-panel {
    grid-template-columns: 1fr;
    border-radius: clamp(18px, 5vw, 24px);
  }
  .pricing-hero-full {
    margin-bottom: clamp(20px, 5vw, 32px);
  }
  .pricing-panel-list {
    padding: clamp(28px, 7vw, 40px) clamp(22px, 6vw, 32px);
  }
  .pricing-panel-list .pricing-list li {
    font-size: 16px;
  }
  .pricing-panel-buy {
    padding: clamp(34px, 8vw, 48px) clamp(24px, 6vw, 36px);
  }
  .pricing-panel-buy .pricing-amount {
    font-size: clamp(52px, 15vw, 64px);
  }
  .pricing-buy-cta {
    width: 100%;
    padding: 18px 32px;
  }
}

/* Linke Spalte: Vorteilsliste auf Weiß */
.pricing-panel-list {
  background: #FFFFFF;
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 38px);
  display: flex;
  align-items: center;
}

.pricing-panel-list .pricing-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
  text-align: left;
}

.pricing-panel-list .pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ink);
  line-height: 1.4;
}

.pricing-panel-list .pricing-list li strong {
  color: var(--wine);
  font-weight: 600;
}

.pricing-panel-list .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-top: 1px;
}
.pricing-panel-list .check-icon svg { width: 100%; height: 100%; }

/* Rechte Spalte: farbige Kauf-Box */
.pricing-panel-buy {
  background: linear-gradient(160deg, var(--mauve) 0%, #2E5647 100%);
  color: #FFFFFF;
  padding: clamp(30px, 3.5vw, 46px) clamp(26px, 3.5vw, 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-buy-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-panel-buy .pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}

.pricing-panel-buy .pricing-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin: 10px 0 clamp(24px, 3vw, 32px);
  max-width: 30ch;
}

.pricing-buy-cta {
  background: var(--gold);
  color: #241a0e;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: clamp(16px, 1.4vw, 19px);
  box-shadow: 0 12px 30px rgba(200, 154, 82, 0.4);
  transition: transform 250ms var(--ease-soft), box-shadow 250ms var(--ease-soft);
}

.pricing-buy-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(200, 154, 82, 0.55);
}

.pricing-buy-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(20px, 2.5vw, 28px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  max-width: 34ch;
}
.pricing-buy-guarantee strong { color: #FFFFFF; }
.pricing-buy-guarantee-icon { font-size: 18px; flex-shrink: 0; }

.pricing-buy-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.pricing-buy-trust span { position: relative; }
.pricing-buy-trust span:not(:first-child)::before {
  content: "·";
  margin-right: 16px;
  opacity: 0.6;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r-card-lg);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  max-width: 720px;
  margin: 0 auto;
  box-shadow:
    0 30px 70px rgba(15, 74, 85, 0.14),
    0 10px 30px rgba(15, 74, 85, 0.08),
    0 0 0 1px rgba(200, 154, 82, 0.18);
  position: relative;
  text-align: center;
  overflow: hidden;
  transition:
    transform 500ms var(--ease-soft),
    box-shadow 500ms var(--ease-soft);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 50px 100px rgba(15, 74, 85, 0.22),
    0 20px 48px rgba(15, 74, 85, 0.14),
    0 0 0 2px var(--gold),
    0 0 32px -4px rgba(200, 154, 82, 0.30);
}

.pricing-card:active {
  transform: translateY(-2px);
  transition-duration: 100ms;
}

.pricing-card {
  isolation: isolate;
  z-index: 2;
}

.pricing-card::after { display: none; }

/* Gold-Akzent-Linie oben auf der Karte */
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, rgba(42,181,194,0.6) 65%, transparent);
}

/* Eyebrow mit flankierenden Gold-Linien (editorial) */
.pricing-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: var(--gold);
  margin-bottom: var(--s2);
}

.pricing-card .eyebrow::before,
.pricing-card .eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 132px);
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: var(--s3) 0 var(--s1);
  text-shadow: 0 4px 24px rgba(15, 74, 85, 0.12);
}

.pricing-sub {
  color: var(--muted);
  font-size: var(--fs-body-sm);
  font-style: italic;
  margin-bottom: var(--s5);
}

.pricing-list {
  text-align: left;
  margin: 0 auto var(--s5);
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-list li {
  display: flex;
  gap: var(--s2);
  align-items: center;
  font-size: var(--fs-body);
  color: var(--wine);
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 74, 85, 0.08);
  line-height: var(--lh-snug);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 0;
  box-shadow: 0 4px 12px rgba(200, 154, 82, 0.32);
}

.check-icon svg {
  width: 12px;
  height: 12px;
}

.pricing-cta {
  width: 100%;
  max-width: none;
  background: var(--gradient-vital);
  color: var(--white);
  padding: 18px 24px;
  font-size: var(--fs-body);
  line-height: 1.25;
  white-space: normal;
  min-height: 60px;
  box-shadow: 0 14px 36px rgba(42, 181, 194, 0.28);
  animation: none;
}

.pricing-cta:hover {
  background: var(--gradient-vital);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(42, 181, 194, 0.38);
}

/* === Bonus === */
.bonus {
  background: var(--ivory);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  margin-bottom: var(--s4);
}

.bonus-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 450ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 300ms var(--ease-soft);
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft-lg);
}

.bonus-card:active {
  transform: translateY(-2px);
  transition-duration: 100ms;
}

/* Ruhigere Reveal-Entrance — länger und sanfter als Default */
.bonus-card.reveal {
  transform: translateY(28px);
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bonus-Badge: gleiche Shimmer/Pulse-Animation wie course-card-badge */
.bonus-badge {
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 14px rgba(200, 154, 82, 0.3);
  animation: badge-pulse 4s ease-in-out infinite;
}

.bonus-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: badge-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

/* Versetzte Delays damit nicht alle 3 Badges synchron pulsieren */
.bonus-card:nth-child(2) .bonus-badge { animation-delay: 1.3s; }
.bonus-card:nth-child(2) .bonus-badge::before { animation-delay: 1.7s; }
.bonus-card:nth-child(3) .bonus-badge { animation-delay: 2.6s; }
.bonus-card:nth-child(3) .bonus-badge::before { animation-delay: 3.3s; }

@media (prefers-reduced-motion: reduce) {
  .bonus-badge,
  .bonus-badge::before { animation: none; }
}

.bonus-badge {
  position: absolute;
  top: var(--s2);
  right: var(--s2);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 2;
}

.bonus-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft-rose);
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.bonus-body {
  padding: var(--s4);
}

.bonus-body h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: var(--s2);
}

.bonus-note {
  display: block;
  text-align: center;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  margin: var(--s4) auto 0;
  max-width: 600px;
  width: 100%;
}

/* === FAQ === */
.faq {
  background: var(--gradient-calm);
}

/* === Final CTA === */
.final-cta {
  background: var(--gradient-sunrise);
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/final-cta.png') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Sanfter Bleed-in von der FAQ (Soft-Rose) in die dunkle Final-CTA */
.final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, var(--soft-rose) 0%, transparent 100%);
  opacity: 0.85;
}

.final-cta > .container { position: relative; z-index: 2; }

.final-phoenix {
  width: clamp(140px, 16vw, 220px);
  margin: 0 auto var(--s3);
  display: block;
  filter: drop-shadow(0 8px 30px rgba(200, 154, 82, 0.4));
  position: relative;
  mix-blend-mode: multiply;
}

.final-cta h2 {
  color: var(--white);
  position: relative;
  font-size: clamp(48px, 8vw, 96px);
  max-width: 14ch;
  margin: 0 auto var(--s3);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-body-lg);
  max-width: 38ch;
  margin: 0 auto var(--s5);
  position: relative;
}

.final-cta .btn {
  position: relative;
  z-index: 1;
}

.final-cta .trust-strip {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.final-cta .trust-strip span::before {
  color: var(--blush);
}

/* === Footer === */
.site-footer {
  background: linear-gradient(180deg, var(--mauve) 0%, #B8924A 100%);
  color: var(--blush);
  padding: var(--s6) 0 var(--s4);
  position: relative;
}

/* Homepage: sanfter Lead-in von Ivory in den dunklen Footer */
body.page-home .site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(180deg, var(--ivory) 0%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

body.page-home .site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  margin-bottom: var(--s5);
}

.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: var(--s2);
}

.footer-tagline {
  color: rgba(232, 207, 199, 0.7);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-body-lg);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-col a {
  color: var(--blush);
  font-size: var(--fs-body-sm);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 207, 199, 0.15);
  padding-top: var(--s3);
  text-align: center;
  font-size: var(--fs-body-sm);
  color: rgba(232, 207, 199, 0.55);
}

/* === Sticky Bottom CTA === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky-cta);
  padding: var(--s2);
  display: flex;
  justify-content: center;
  pointer-events: none;
  transform: translateY(110%);
  transition: transform 500ms var(--ease-soft);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  position: relative;
  background: var(--gradient-vital);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  width: 100%;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(42, 181, 194, 0.32);
  pointer-events: auto;
  transition: background 250ms, transform 250ms, box-shadow 250ms;
  min-height: 56px;
  overflow: hidden;
  isolation: isolate;
  animation: cta-breathe 3.6s ease-in-out infinite;
}

.sticky-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 35%,
    rgba(200, 154, 82, 0.55) 48%,
    rgba(255, 240, 210, 0.85) 52%,
    rgba(200, 154, 82, 0.55) 56%,
    transparent 70%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  animation: cta-shimmer 4.2s ease-in-out infinite;
}

.sticky-cta-inner > * {
  position: relative;
  z-index: 2;
}

.sticky-cta-inner span {
  display: inline-block;
  animation: cta-arrow 1.6s ease-in-out infinite;
}

.sticky-cta-inner:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 26px 64px rgba(15, 74, 85, 0.35);
}

@keyframes cta-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(139, 102, 120, 0.45);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 26px 70px rgba(200, 154, 82, 0.45), 0 20px 50px rgba(139, 102, 120, 0.55);
  }
}

@keyframes cta-shimmer {
  0%, 55% { background-position: 120% 0; }
  85%, 100% { background-position: -20% 0; }
}

@keyframes cta-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta-inner,
  .sticky-cta-inner::before,
  .sticky-cta-inner span {
    animation: none;
  }
}

/* === Subpage Layout === */
.subpage {
  padding: 140px 0 var(--s6);
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--ivory);
}

.subpage-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.subpage-content h1 {
  margin-bottom: var(--s5);
}

.subpage-content h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-top: var(--s5);
  margin-bottom: var(--s3);
}

.subpage-content p,
.subpage-content li {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--ink);
}

.subpage-content ul {
  margin: 0 0 var(--s3) var(--s3);
  list-style: disc;
}

.subpage-back {
  display: inline-block;
  margin-top: var(--s5);
  color: var(--mauve);
  font-weight: 500;
}

/* ===================================================
   HOMEPAGE — Daniel Otmar Landing
   =================================================== */

/* Auf Homepage kein Sticky-CTA → kein Bottom-Padding */
body.page-home {
  padding-bottom: 0 !important;
}

/* === Hero Home (Daniel Split-Layout) === */
.hero-home {
  position: relative;
  background: var(--gradient-calm);
  overflow: hidden;
  padding: 140px 0 var(--s7);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Hero-Home — gleicher Light-Wash, anders positioniert (atmet links statt zentriert) */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 30% 50%, rgba(181, 122, 132, 0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: hero-home-wash 20s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-home > .container {
  position: relative;
  z-index: 1;
}

@keyframes hero-home-wash {
  0%, 100% { transform: translate(0, 0) scale(1);   opacity: 0.7; }
  50%      { transform: translate(45px, -20px) scale(1.08); opacity: 1; }
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-home-image {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.hero-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-home-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-top-left-radius: var(--r-card-lg);
  pointer-events: none;
}

.hero-home-text h1 {
  margin: 0 0 var(--s3);
}

.hero-home-text .hero-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink);
  margin: 0 0 var(--s5);
  max-width: 44ch;
  line-height: var(--lh-relaxed);
}

@media (min-width: 900px) {
  .hero-home-grid {
    grid-template-columns: 5fr 6fr;
    gap: var(--s7);
  }
  .hero-home-image {
    max-width: none;
    margin: 0;
  }
}

/* === Featured Course Card === */
.featured-course {
  background: var(--ivory);
}

.course-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  text-decoration: none;
  color: inherit;
  max-width: 980px;
  margin: 0 auto;
  /* Overshoot-Easing für physikalisches Settle */
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms var(--ease-soft);
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(15, 74, 85, 0.14);
  color: inherit;
}

.course-card:active {
  transform: translateY(-2px);
  transition-duration: 100ms;
}

.course-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-soft);
  /* Continuous Ken-Burns: sanftes Pan + Zoom dauerhaft */
  animation: course-ken-burns 22s ease-in-out infinite;
  transform-origin: center;
}

@keyframes course-ken-burns {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%      { transform: scale(1.06) translate(-1.5%, -1%); }
}

.course-card:hover .course-card-image img {
  transform: scale(1.08);
  animation-play-state: paused;
}

/* Gold-Akzent-Wash beim Hover über das Bild */
.course-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(200, 154, 82, 0.22) 100%);
  opacity: 0;
  transition: opacity 450ms ease-out;
  pointer-events: none;
  z-index: 1;
}

.course-card:hover .course-card-image::after {
  opacity: 1;
}

.course-card-badge {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 14px rgba(200, 154, 82, 0.3);
  /* Sanfter Atemzug-Puls — Shadow & Scale */
  animation: badge-pulse 4s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(200, 154, 82, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 10px 28px rgba(200, 154, 82, 0.55);
    transform: scale(1.04);
  }
}

/* Shimmer-Sweep: gold-weißer Schein wandert von links nach rechts */
.course-card-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: badge-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shimmer {
  0%, 30%  { transform: translateX(-120%); }
  60%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .course-card-image img,
  .course-card-badge,
  .course-card-badge::before {
    animation: none;
  }
}

.course-card-body {
  padding: clamp(28px, 4vw, 48px);
}

.course-card-body h3 {
  margin: var(--s2) 0 var(--s3);
  max-width: 22ch;
}

.course-card-body p {
  color: var(--ink);
  margin: 0 0 var(--s4);
  max-width: 56ch;
}

.course-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 14px 28px;
  margin-top: var(--s2);
  border-radius: var(--r-pill);
  background: var(--gradient-wine);
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs-body);
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(15, 74, 85, 0.16);
  transition:
    background 300ms var(--ease-soft),
    transform 300ms var(--ease-soft),
    box-shadow 300ms var(--ease-soft),
    gap 300ms var(--ease-soft);
}

.course-card:hover .course-card-cta {
  background: var(--gradient-emotional);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(139, 102, 120, 0.32);
  gap: 14px;
}

@media (min-width: 900px) {
  .course-card {
    grid-template-columns: 5fr 6fr;
  }
  .course-card-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 380px;
  }
}

/* === Contact Teaser === */
.contact-teaser {
  background: var(--ivory);
}

.contact-teaser-card {
  background: var(--gradient-emotional);
  color: var(--white);
  border-radius: var(--r-card-lg);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Animierter Light-Sweep: wandert diagonal top-left → bottom-right */
.contact-teaser-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: contact-light-sweep 9s ease-in-out infinite;
}

.contact-teaser-card > * {
  position: relative;
  z-index: 1;
}

@keyframes contact-light-sweep {
  0%   { top: -30%; left: -30%; opacity: 0; }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.9; }
  100% { top: 110%; left: 110%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-teaser-card::before { animation: none; opacity: 0.3; top: 30%; left: 30%; }
}


.contact-teaser-card .eyebrow {
  color: var(--blush);
}

.contact-teaser-card h2 {
  color: var(--white);
  margin: 0 0 var(--s3);
}

.contact-teaser-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto var(--s5);
  max-width: 44ch;
  font-size: var(--fs-body-lg);
}

.contact-teaser-card .btn {
  background: var(--white);
  color: var(--wine);
}

.contact-teaser-card .btn:hover {
  background: var(--ivory);
  color: var(--wine);
}

/* === Nav-Dropdown (Desktop) === */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  font-family: var(--font-body);
  color: var(--wine);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: transparent;
  border: none;
  position: relative;
}

.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-snap);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-caret {
  font-size: 10px;
  transition: transform 250ms var(--ease-snap);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px rgba(15, 74, 85, 0.12);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms var(--ease-snap), transform 250ms var(--ease-snap);
  z-index: 10;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--wine);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  text-decoration: none;
  transition: background 200ms, color 200ms;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--soft-rose);
  color: var(--wine);
}

.nav-dropdown-menu a[aria-current="page"] {
  background: var(--soft-rose);
  color: var(--wine);
}

/* === Drawer (Mobile) Updates === */
/* === Drawer-Group: „Kurse" als klappbares Untermenü (Laura-Akkordeon) === */
.drawer-group {
  display: block;
  width: 100%;
}

.drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--wine);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0;
  line-height: 1.2;
  text-align: left;
  transition: color 250ms var(--ease-soft);
}

.drawer-toggle:hover {
  color: var(--gold);
}

.drawer-toggle-icon {
  display: inline-block;
  font-size: 0.85em;
  color: var(--gold);
  transition: transform 300ms var(--ease-soft);
  line-height: 1;
}

.drawer-toggle[aria-expanded="true"] .drawer-toggle-icon {
  transform: rotate(180deg);
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
  transition: max-height 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer-toggle[aria-expanded="true"] + .drawer-submenu {
  max-height: 240px;
}

/* Alte drawer-label fallback (falls noch irgendwo verwendet) */
.drawer-label {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--wine);
  font-weight: 600;
  margin-top: var(--s2);
  font-weight: 600;
}

.drawer-sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.8vw, 20px);
  color: var(--mauve);
  letter-spacing: 0.02em;
  opacity: 0.7;
  margin-top: -8px;
}

/* ============================================================ */
/* === Homepage: kompaktere Skalierung (Hero + Story) === */
/* ============================================================ */

/* Hero kompakter */
.page-home .hero-home {
  min-height: auto;
  padding: 120px var(--section-x) var(--s6);
}

.page-home .hero-home-text h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  margin-bottom: var(--s2);
}

.page-home .hero-home-text .hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 44ch;
  margin-bottom: var(--s3);
}

.page-home .hero-home-image {
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
}

@media (min-width: 900px) {
  .page-home .hero-home-image {
    max-width: 440px;
  }
}

/* Story-Sektion kompakter — Bild links, Text rechts */
.page-home .story {
  padding: var(--s6) 0;
}

.page-home .story-image {
  max-width: 420px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .page-home .story-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--s6);
  }
  .page-home .story-image {
    max-width: none;
    margin: 0;
  }
  /* Bild links (grid col 1), Text rechts (grid col 2) — bereits korrekt durch HTML-Reihenfolge */
}

.page-home .story h2 {
  font-size: clamp(26px, 3.6vw, 44px);
  margin-bottom: var(--s2);
}

.page-home .story-text p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s2);
}

.page-home .story-signature {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-top: var(--s3);
}

/* Course-Card auf Homepage etwas kompakter */
.page-home .featured-course {
  padding: var(--s6) 0;
}

.page-home .featured-course .section-headline h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.page-home .course-card-body h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

.page-home .course-card-body p {
  font-size: clamp(15px, 1.3vw, 17px);
}

/* Contact-Teaser kompakter */
.page-home .contact-teaser h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.page-home .contact-teaser-card p {
  font-size: clamp(16px, 1.4vw, 19px);
}

.page-home .contact-teaser {
  padding: var(--s6) 0;
}

/* Intro-Block auf Homepage kompakter */
.page-home .intro-block {
  padding: var(--s6) 0 var(--s5);
  background: linear-gradient(180deg, var(--soft-rose) 0%, var(--ivory) 100%);
}

/* Story-Sektion bleibt Ivory — nahtloser Übergang vom Intro-Ende */
.page-home .story {
  background: var(--ivory);
}

/* Hervorgehobenes Quote-Feld auf der Homepage */
.page-home .intro-card {
  max-width: 820px;
  background: #FFFFFF;
  border-radius: var(--r-card-lg);
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 80px);
  box-shadow: 0 24px 80px rgba(15, 74, 85, 0.10);
  border: 1px solid rgba(200, 154, 82, 0.3);
  position: relative;
  overflow: hidden;
}

/* Gold-Linien und dekoratives Zeichen aus dem Basis-Stil entfernen */
.page-home .intro-card::before,
.page-home .intro-card::after {
  display: none;
}

/* Sanfter Gold-Wash unten rechts als zweiter Akzent */
.page-home .intro-card > * {
  position: relative;
  z-index: 1;
}

.page-home .intro-card p {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--wine);
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.3;
  margin: 0;
}

.page-home .intro-card .intro-signature {
  display: block;
  margin-top: var(--s4);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
}

/* Homepage: alle Sektions-Hintergründe weiß */
body.page-home .intro-block {
  background: #FFFFFF;
}

body.page-home .newsletter {
  background: #FFFFFF;
}

/* === body.page-course: Einheitliches Creme (#FFFFFF) als Hintergrund überall === */
body.page-course .modules,
body.page-course .faq {
  background: #FFFFFF;
}

body.page-course .ausreden {
  background: #FFFFFF;
}

body.page-course .pricing {
  background: #FFFFFF;
}

body.page-course .pricing::after {
  display: none;
}

body.page-course .stats:has(+ .modules) {
  background: #FFFFFF;
}

body.page-course .newsletter {
  background: #FFFFFF;
}

/* Pain-Questions: Zahlen weg, Text kleiner */
body.page-course .pain-number {
  display: none;
}

body.page-course .pain-question {
  grid-template-columns: 1fr;
}

body.page-course .pain-text {
  font-size: clamp(18px, 2vw, 26px);
}

/* ============ Mission Band ============ */
.mission-band {
  background: var(--ivory);
  padding: var(--s6) var(--s3);
}

.mission-band-card {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--gradient-sunrise);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 88px) clamp(32px, 6vw, 88px);
  text-align: center;
  box-shadow: 0 8px 40px rgba(58, 21, 32, 0.22), 0 2px 12px rgba(58, 21, 32, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

/* Fly-in via reveal — überschreibt Standard-translateY mit scale */
.mission-band-card[data-late-reveal] {
  opacity: 0;
  transform: scale(0.68) translateY(80px);
  transition: opacity 1100ms cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 1300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mission-band-card[data-late-reveal].in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.mission-band-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50px);
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

.mission-band-text {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

.mission-band-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

/* === Intro CTA (below intro-card) === */
.intro-cta {
  text-align: center;
  padding-top: var(--s5);
}

.intro-cta-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--wine);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto var(--s3);
}

.intro-cta .hero-ctas {
  margin-bottom: var(--s2);
}
