/* ============================================
   VDW — Verbindung durch Wahrheit
   mann.robertkalli.com/verbindung-durch-wahrheit.html
   Requires: global.css + mann.css (nav/footer)
   ============================================ */

:root {
  --vdw-overlay:       rgba(8, 6, 8, 0.72);
  --vdw-overlay-heavy: rgba(8, 6, 8, 0.88);
}

/* ============================================
   IMAGE PLACEHOLDER SYSTEM
   Entferne .vdw-img-ph + <span> wenn echtes
   Bild per background-image gesetzt wird.
   ============================================ */

.vdw-img-ph {
  background: var(--mn-surface);
  border: 1px dashed var(--mn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vdw-img-ph span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mn-muted);
  text-align: center;
  padding: 2rem;
  line-height: 2;
  max-width: 360px;
  opacity: 0.6;
}

/* ============================================
   BUTTONS
   ============================================ */

.vdw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 1px;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.vdw-btn--primary {
  background: var(--mn-acc);
  color: #fff;
}
.vdw-btn--primary:hover {
  background: var(--mn-acc-dim);
  transform: translateY(-1px);
}

.vdw-btn--ghost {
  color: var(--mn-muted);
  border-bottom: 0.5px solid var(--mn-border);
  padding: 0 0 0.15rem;
  background: transparent;
}
.vdw-btn--ghost:hover { color: var(--mn-light); border-color: var(--mn-muted); }

/* ============================================
   SECTION LABEL (reusable)
   ============================================ */

.vdw-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mn-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.vdw-label::before,
.vdw-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--mn-border);
  max-width: 80px;
}

.vdw-label--left {
  justify-content: flex-start;
}
.vdw-label--left::before { display: none; }
.vdw-label--left::after { max-width: 60px; }

.vdw-label--acc { color: var(--mn-acc); }
.vdw-label--acc::before,
.vdw-label--acc::after { background: var(--mn-acc-dim); opacity: 0.4; }

/* ============================================
   HERO
   ============================================ */

.vdw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}

/* ── Bild-Hintergrund ──
   Ersetze .vdw-img-ph durch:
   background-image: url('/assets/img/vdw-hero.webp');
   in .vdw-hero direkt, und entferne .vdw-hero-bg + seinen Inhalt.
*/
.vdw-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  /* PLACEHOLDER — Hintergrundbild einfügen */
}
.vdw-hero-bg .vdw-img-ph {
  position: absolute;
  inset: 0;
}

.vdw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,6,8,0.60) 0%,
    rgba(8,6,8,0.50) 40%,
    rgba(8,6,8,0.88) 100%
  );
  z-index: 1;
}

.vdw-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vdw-hero-rule {
  display: block;
  width: 0.5px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--mn-acc));
  margin: 0 auto 2.5rem;
  opacity: 0.6;
}

.vdw-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mn-acc);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.vdw-hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--mn-light);
  margin-bottom: 1.5rem;
  max-width: 820px;
}
.vdw-hero-headline em {
  font-style: italic;
  color: var(--mn-acc);
  opacity: 0.9;
}

.vdw-hero-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mn-warm);
  max-width: 460px;
  margin: 0 auto 3rem;
}

.vdw-hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vdw-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.vdw-hero-scroll span {
  display: block;
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--mn-acc), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50%       { opacity: 0.6; transform: scaleY(1.1); }
}

/* ============================================
   RECOGNITION
   ============================================ */

.vdw-recognition {
  padding: 7rem 2rem;
}
.vdw-recognition-inner {
  max-width: 700px;
  margin: 0 auto;
}
.vdw-recognition .vdw-label {
  margin-bottom: 3.5rem;
}

.vdw-rec-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid var(--mn-border);
  align-items: flex-start;
}
.vdw-rec-item:first-child { border-top: 0.5px solid var(--mn-border); }

.vdw-rec-dash {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--mn-acc);
  opacity: 0.35;
  flex-shrink: 0;
  line-height: 1.7;
}

.vdw-rec-body strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--mn-light);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.vdw-rec-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mn-warm);
}

/* ============================================
   PARALLAX BREAK
   ============================================ */

.vdw-parallax {
  position: relative;
  height: 440px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* PLACEHOLDER — Hintergrundbild via background-image: url(...) in HTML-style ergänzen */
.vdw-parallax .vdw-img-ph {
  position: absolute;
  inset: 0;
}

.vdw-parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--vdw-overlay-heavy);
  z-index: 1;
  opacity: 0.7;
}

.vdw-parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.vdw-parallax-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--mn-light);
  font-weight: 300;
  text-align: center;
  max-width: 680px;
  line-height: 1.55;
  opacity: 0.88;
}
.vdw-parallax-quote em {
  color: var(--mn-acc);
  font-style: italic;
}

/* ============================================
   VILLAIN
   ============================================ */

.vdw-villain {
  background: var(--mn-deep);
  border-top: 0.5px solid var(--mn-border);
  border-bottom: 0.5px solid var(--mn-border);
  padding: 7rem 2rem;
}
.vdw-villain-inner {
  max-width: 640px;
  margin: 0 auto;
}
.vdw-villain .vdw-label {
  margin-bottom: 2.5rem;
}

.vdw-villain-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--mn-light);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.vdw-villain-body {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.vdw-villain-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mn-warm);
}
.vdw-villain-body p strong {
  color: var(--mn-light);
  font-weight: 400;
}
.vdw-villain-close {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--mn-border);
}
.vdw-villain-close p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--mn-light) !important;
  opacity: 0.75;
  line-height: 1.7 !important;
}

/* ============================================
   STORY
   ============================================ */

.vdw-story {
  padding: 7rem 2rem;
}
.vdw-story-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 6rem;
  align-items: start;
}

.vdw-story-text .vdw-label {
  margin-bottom: 2.5rem;
}

.vdw-story-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--mn-light);
  font-weight: 300;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 0.5px solid var(--mn-acc);
  opacity: 0.9;
}

.vdw-story-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vdw-story-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mn-warm);
}

.vdw-story-sig {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--mn-muted);
  margin-top: 2rem;
}

.vdw-story-aside {
  position: sticky;
  top: 7rem;
}
.vdw-story-aside .vdw-img-ph {
  width: 100%;
  aspect-ratio: 4/5;
}
.vdw-story-aside-caption {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mn-muted);
  margin-top: 1rem;
  opacity: 0.5;
  text-align: center;
}

/* ============================================
   PROMISED LAND (Vollbild mit Hintergrundbild)
   ============================================ */

.vdw-promised {
  position: relative;
  padding: 9rem 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* PLACEHOLDER */
.vdw-promised .vdw-img-ph {
  position: absolute;
  inset: 0;
}

.vdw-promised-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,6,8,0.84) 0%,
    rgba(8,6,8,0.72) 50%,
    rgba(8,6,8,0.92) 100%
  );
  z-index: 1;
}

.vdw-promised-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.vdw-promised .vdw-label {
  margin-bottom: 2rem;
}

.vdw-promised-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--mn-light);
  line-height: 1.05;
  margin-bottom: 3rem;
}
.vdw-promised-headline em {
  font-style: italic;
  color: var(--mn-acc);
}

.vdw-promised-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.vdw-promised-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mn-warm);
}
.vdw-promised-body p em {
  font-style: normal;
  color: var(--mn-light);
  opacity: 0.9;
}

/* ============================================
   OFFER & TIMELINE
   ============================================ */

.vdw-offer {
  padding: 8rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.vdw-offer-header {
  text-align: center;
  margin-bottom: 5.5rem;
}
.vdw-offer-header .vdw-label {
  margin-bottom: 1.5rem;
}

.vdw-offer-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--mn-light);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.vdw-offer-lead {
  font-size: 1rem;
  color: var(--mn-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

.vdw-timeline {
  display: flex;
  flex-direction: column;
}

.vdw-tl-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 2.5rem;
  padding-bottom: 4.5rem;
}
.vdw-tl-item:last-child { padding-bottom: 0; }

.vdw-tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
}

.vdw-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mn-acc);
  opacity: 0.85;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(107,110,191,0.35);
}

.vdw-tl-line {
  flex: 1;
  width: 0.5px;
  background: linear-gradient(to bottom, rgba(107,110,191,0.3), transparent);
  margin-top: 0.75rem;
}

.vdw-tl-month {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mn-acc);
  opacity: 1;
  margin-bottom: 0.5rem;
}

.vdw-tl-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--mn-light);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.vdw-tl-hook {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--mn-acc);
  opacity: 0.8;
  margin-bottom: 1.1rem;
}

.vdw-tl-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mn-warm);
  margin-bottom: 1rem;
}

.vdw-tl-result {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--mn-light);
  opacity: 0.65;
  line-height: 1.7;
  padding-left: 1.1rem;
  border-left: 0.5px solid var(--mn-acc-dim);
  margin-bottom: 1rem;
  display: block;
}

.vdw-tl-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.vdw-tl-tags span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mn-muted);
  border: 0.5px solid var(--mn-border);
  padding: 0.28rem 0.65rem;
  border-radius: 1px;
}

/* ============================================
   INCLUDED
   ============================================ */

.vdw-included {
  background: var(--mn-deep);
  border-top: 0.5px solid var(--mn-border);
  border-bottom: 0.5px solid var(--mn-border);
  padding: 6rem 2rem;
}
.vdw-included .vdw-label {
  margin-bottom: 3.5rem;
}

.vdw-incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mn-border);
  border: 0.5px solid var(--mn-border);
  max-width: 920px;
  margin: 0 auto;
}

.vdw-incl-item {
  background: var(--mn-deep);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 200ms ease;
}
.vdw-incl-item:hover { background: var(--mn-acc-glow); }

.vdw-incl-icon {
  font-size: 0.75rem;
  color: var(--mn-acc);
  opacity: 0.45;
  margin-bottom: 0.25rem;
}
.vdw-incl-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--mn-light);
  opacity: 0.88;
  line-height: 1.2;
}
.vdw-incl-text {
  font-size: 0.9rem;
  color: var(--mn-muted);
  line-height: 1.65;
}

/* ============================================
   NOT THERAPY
   ============================================ */

.vdw-nottherapy {
  padding: 6rem 2rem;
}
.vdw-nottherapy-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.vdw-nottherapy .vdw-label {
  margin-bottom: 2.5rem;
}

.vdw-nottherapy-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--mn-light);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.vdw-nottherapy-body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vdw-nottherapy-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mn-warm);
}

.vdw-nottherapy-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0;
}
.vdw-nottherapy-divider::before,
.vdw-nottherapy-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--mn-border);
}
.vdw-nottherapy-divider span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mn-muted);
  white-space: nowrap;
}

.vdw-nottherapy-close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--mn-light) !important;
  opacity: 0.7;
  line-height: 1.75 !important;
  border-top: 0.5px solid var(--mn-border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

/* ============================================
   PRICING
   ============================================ */

.vdw-pricing {
  background: var(--mn-deep);
  border-top: 0.5px solid var(--mn-border);
  padding: 8rem 2rem;
}
.vdw-pricing-inner {
  max-width: 880px;
  margin: 0 auto;
}
.vdw-pricing .vdw-label {
  margin-bottom: 3.5rem;
}

.vdw-price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mn-border);
  border: 0.5px solid var(--mn-border);
  margin-bottom: 2.5rem;
}

.vdw-price-card {
  background: var(--mn-surface);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.vdw-price-card--primary {
  background: var(--mn-deep);
  position: relative;
}
.vdw-price-card--primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--mn-acc);
  opacity: 0.55;
}

.vdw-price-tag {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mn-acc);
  display: block;
  margin-bottom: 0.75rem;
}
.vdw-price-tag--muted {
  color: var(--mn-muted);
}

.vdw-price-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--mn-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.vdw-price-desc {
  font-size: .95rem;
  color: var(--mn-muted);
  line-height: 1.75;
}

.vdw-price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.vdw-price-list li {
  font-size: 1rem;
  color: var(--mn-warm);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.vdw-price-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mn-acc);
  opacity: 0.4;
  font-size: 0.7rem;
}

.vdw-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 1px;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  background: var(--mn-acc);
  color: #fff;
  margin-top: auto;
}
.vdw-price-cta:hover { background: var(--mn-acc-dim); }
.vdw-price-cta--ghost {
  background: transparent;
  border: 0.5px solid var(--mn-border);
  color: var(--mn-muted);
}
.vdw-price-cta--ghost:hover {
  background: transparent;
  border-color: var(--mn-muted);
  color: var(--mn-light);
}

.vdw-pricing-note {
  font-size: 1rem;
  color: var(--mn-muted);
  text-align: center;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   FOR WHOM
   ============================================ */

.vdw-forwhom {
  padding: 7rem 2rem;
}
.vdw-forwhom-inner {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.vdw-forwhom-col-label {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mn-acc);
  opacity: 0.9;
  margin-bottom: 2rem;
  display: block;
}
.vdw-forwhom-col-label--not {
  color: var(--mn-muted);
  opacity: 1;
}

.vdw-forwhom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vdw-forwhom-list li {
  font-size: 1rem;
  color: var(--mn-warm);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.vdw-forwhom-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mn-acc);
  opacity: 0.5;
  font-size: 0.7rem;
}
.vdw-forwhom-list--not li { color: var(--mn-muted); }
.vdw-forwhom-list--not li::before { color: var(--mn-muted); opacity: 0.4; }

/* ============================================
   SELF-CHECK
   ============================================ */

.vdw-selfcheck {
  background: var(--mn-deep);
  border-top: 0.5px solid var(--mn-border);
  border-bottom: 0.5px solid var(--mn-border);
  padding: 6.5rem 2rem;
  text-align: center;
}
.vdw-selfcheck-inner {
  max-width: 460px;
  margin: 0 auto;
}
.vdw-selfcheck .vdw-label {
  margin-bottom: 1.25rem;
}

.vdw-selfcheck-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--mn-light);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.vdw-selfcheck-sub {
  font-size: 1rem;
  color: var(--mn-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ============================================
   FINAL CTA
   ============================================ */

.vdw-final {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* PLACEHOLDER */
.vdw-final .vdw-img-ph {
  position: absolute;
  inset: 0;
}

.vdw-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,6,8,0.88) 0%,
    rgba(8,6,8,0.78) 40%,
    rgba(8,6,8,0.94) 100%
  );
  z-index: 1;
  opacity: 0.7;
}

.vdw-final-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}
.vdw-final .vdw-label {
  margin-bottom: 1.5rem;
}

.vdw-final-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--mn-light);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.vdw-final-headline em {
  font-style: italic;
  color: var(--mn-acc);
}

.vdw-final-sub {
  font-size: 1rem;
  color: var(--mn-warm);
  line-height: 1.85;
  margin-bottom: 3rem;
}

.vdw-final-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.vdw-final-email {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--mn-warm);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}
.vdw-final-email:hover { color: var(--mn-light); }

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out),
              transform 700ms var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 100ms; }
.fade-up.d2 { transition-delay: 220ms; }
.fade-up.d3 { transition-delay: 340ms; }

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 860px) {
  .vdw-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vdw-story-aside {
    position: static;
    order: -1;
  }
  .vdw-story-aside .vdw-img-ph {
    aspect-ratio: 3/2;
    max-height: 300px;
  }
  .vdw-forwhom-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vdw-price-cards {
    grid-template-columns: 1fr;
  }
  .vdw-incl-grid {
    grid-template-columns: 1fr;
  }
  .vdw-hero-ctas {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 960px) {
  .vdw-parallax {
    height: 300px;
  }
}

@media (max-width: 680px) {
  .vdw-promised,
  .vdw-final {
    background-attachment: scroll;
  }
  .mn-nav { padding: 1.25rem 1.5rem; }
  .mn-footer { flex-direction: column; gap: 1rem; padding: 1.5rem; }
}

/* ============================================
   SELF-CHECK QUIZ
   ============================================ */

#quizIntro {
  transition: opacity 300ms ease;
}
#quizIntro.quiz-exiting {
  opacity: 0;
  pointer-events: none;
}

.vdw-quiz {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Fortschrittsbalken */
.vdw-quiz-progress {
  width: 100%;
  height: 1px;
  background: #2A2530;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.vdw-quiz-progress-fill {
  position: absolute;
  inset: 0;
  right: auto;
  background: #6B6EBF;
  opacity: 0.55;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step */
.vdw-quiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: vdwQuizIn 360ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vdw-quiz-counter {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7f80bd;
  opacity: .9;
  margin-bottom: 1.75rem;
  display: block;
}

.vdw-quiz-question {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: #E2DCE8;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0 0 2.5rem;
  max-width: 500px;
}

/* Optionen — explizit column */
.vdw-quiz-options {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vdw-quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #8A8094;
  background: transparent;
  border: 0.5px solid #2A2530;
  border-radius: 1px;
  padding: 0.95rem 1.25rem;
  cursor: pointer;
  box-sizing: border-box;
  /* Browser-Reset */
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.vdw-quiz-option:hover {
  border-color: #6B6EBF;
  color: #E2DCE8;
  background: rgba(107, 110, 191, 0.06);
}
.vdw-quiz-option.is-selected {
  border-color: #6B6EBF;
  color: #E2DCE8;
  background: rgba(107, 110, 191, 0.09);
}

/* Ergebnis */
.vdw-quiz-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: vdwQuizIn 480ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vdw-quiz-result-rule {
  display: block;
  width: 0.5px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, #6B6EBF);
  margin: 2rem auto;
  opacity: 0.45;
}

.vdw-quiz-result-label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6B6EBF;
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.vdw-quiz-result-label::before,
.vdw-quiz-result-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: #2A2530;
  max-width: 60px;
}

.vdw-quiz-result-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: #E2DCE8;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 2rem;
}

.vdw-quiz-result-body {
  max-width: 460px;
  margin-bottom: 2.75rem;
}
.vdw-quiz-result-body p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  color: #8A8094;
  line-height: 1.9;
  margin: 0 0 0.9rem;
  text-align: center;
}
.vdw-quiz-result-body p:last-child { margin-bottom: 0; }

/* Animation */
@keyframes vdwQuizIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .vdw-quiz { padding: 0 1rem; }
  .vdw-quiz-question { font-size: 1.1rem; }
}