/* =========================================================
   Liakim Live — Antigravity-like Funnel
   1:1-Layout/Animationen von antigravity.google (Tokens,
   Header, Buttons, Headline-Stufen, Typed-Cursor) —
   nur Farben + Texte in Richtung Liakim Live.
   ========================================================= */

/* --- Schrift SELF-HOSTED (kein Abruf von Google → DSGVO-konform) ---
   Google Sans Flex (variabel), Subsets latin + latin-ext (deckt äöüß).
   Ersetzt die früheren fonts.googleapis.com-Links. */
@font-face {
  font-family: "Google Sans Flex";
  font-style: oblique 0deg 10deg;
  font-weight: 400 500;
  font-stretch: 25% 150%;
  font-display: swap;
  src: url("fonts/google-sans-flex-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Google Sans Flex";
  font-style: oblique 0deg 10deg;
  font-weight: 400 500;
  font-stretch: 25% 150%;
  font-display: swap;
  src: url("fonts/google-sans-flex-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* --- Antigravity-Tokens (verbatim) --- */
  --breakpoint-max: 1600px;
  --base-size: 17.5px;
  --cta-size: 17.5px;
  --cta-line-height: 25.38px;
  --cta-letter-spacing: 0.18px;
  --cta-sm-size: 14.5px;
  --cta-sm-line-height: 21.02px;
  --cta-sm-letter-spacing: 0.11px;
  --page-margin: 72px;
  --shape-corner-rounded: 9999px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-2xl: 48px;
  --space-3xl: 60px;
  --nav-height: 52px;
  --landing-main-text-size: 107px;
  --landing-main-text-line-height: 107px;
  --landing-main-text-letter-spacing: -2.14px;

  /* --- Theme: Liakim Live (Rollen wie Antigravity light) --- */
  --theme-background: #fbfaf6; /* Original: #ffffff */
  --theme-surface-on-surface: #1c1838; /* Original: #121317 */
  --theme-surface-on-surface-variant: #4a4570; /* Original: #45474d */
  --theme-outline-variant: rgba(28, 24, 56, 0.08); /* Original: rgba(33,34,38,.06) */
  --theme-primary-primary: #211b43; /* Original: #121317 */
  --theme-primary-on-primary: #ffffff;
  --theme-button-states-primary-hovered: #322a5e; /* Original: #2f3034 */
  --theme-secondary-button: rgba(124, 92, 255, 0.08); /* Original: rgba(183,191,217,.1) */
  --theme-button-secondary-hover: #f1ede2; /* Original: #f0f1f5 */
  --theme-nav-button-hover: rgba(124, 92, 255, 0.12); /* Original: rgba(183,191,217,.2) */
  --header-bg: rgba(251, 250, 246, 0.85); /* Original: #ffffffd9 */
  --gold: #c9a227;
}

@media (max-width: 1600px) {
  :root {
    --landing-main-text-size: 72px;
    --landing-main-text-line-height: 72.04px;
    --landing-main-text-letter-spacing: -1.44px;
  }
}
@media (max-width: 1024px) {
  :root {
    --landing-main-text-size: 56px;
    --landing-main-text-line-height: 56.04px;
    --landing-main-text-letter-spacing: -1.12px;
  }
}
@media (max-width: 767px) {
  :root {
    --landing-main-text-size: 40px;
    --landing-main-text-line-height: 44.04px;
    --landing-main-text-letter-spacing: -0.8px;
    --base-size: 15px;
    --cta-size: 15px;
    --cta-line-height: 22px;
    --cta-letter-spacing: 0.16px;
    --cta-sm-size: 15px;
    --cta-sm-line-height: 22px;
    --cta-sm-letter-spacing: 0.16px;
    --page-margin: 40px;
  }
}
@media (max-width: 425px) {
  :root {
    /* bewusste Original-Inversion: ≤425px ist größer als die 426–767-Stufe */
    --landing-main-text-size: 44px;
    --landing-main-text-line-height: 46.04px;
    --landing-main-text-letter-spacing: -0.6px;
    --page-margin: 16px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--theme-background);
  color: var(--theme-surface-on-surface);
  font-family: "Google Sans Flex", "Google Sans", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========================================================
   Header (wie app-header)
   ======================================================== */
.header {
  min-height: 36px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  transition: transform 0.3s ease-in-out;
  background: var(--header-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header.hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background: var(--theme-background);
}

.grid-container {
  width: 100%;
  max-width: calc(var(--breakpoint-max) + var(--page-margin) * 2);
  margin: 0 auto;
  padding: 0 var(--page-margin);
}

.main-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.logo-link {
  display: flex;
  align-items: center;
  margin: 2px var(--space-xl) 0 0;
  text-decoration: none;
  color: var(--theme-surface-on-surface);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  height: var(--lockup-size, 21px);
  width: var(--lockup-size, 21px);
}

.brand-word {
  font-size: 16px;
  line-height: 1;
  font-weight: 450;
  letter-spacing: 0.11px;
  font-variation-settings: "wdth" 100, "opsz" 16;
  white-space: nowrap;
}

.brand-word strong {
  font-weight: 500;
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
}

/* Das hidden-Attribut muss sich immer durchsetzen. Ohne diese Regel gewinnt
   jede Klasse, die selbst ein display setzt (.button → inline-flex,
   .buchung__ladend → flex) gegen das UA-Standard-display:none — das Element
   bleibt dann sichtbar, obwohl das Skript es längst abgeschaltet hat.
   Genau das war der Fall beim Ladehinweis des Kalenders und beim
   „Zum Kalender hinzufügen"-Knopf auf der Danke-Seite. */
[hidden] {
  display: none !important;
}

/* ========================================================
   Buttons (wie app-button, verbatim-Werte)
   ======================================================== */
.button {
  font-size: var(--base-size);
  line-height: var(--cta-line-height);
  letter-spacing: var(--cta-letter-spacing);
  font-weight: 450;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--shape-corner-rounded);
  font-family: "Google Sans Flex", sans-serif;
  cursor: pointer;
  display: inline-flex;
  padding: 10px 24px;
  transition: 0.15s all ease-out;
  text-align: center;
  justify-content: center;
  text-decoration: none;
}

.call-to-action {
  font-variation-settings: "wdth" 100, "opsz" 17.5;
}

.call-to-action--nav {
  font-size: var(--cta-sm-size);
  line-height: var(--cta-sm-line-height);
  letter-spacing: var(--cta-sm-letter-spacing);
  font-variation-settings: "wdth" 100, "opsz" 14.5;
}

.button-compact {
  padding: 6px 16px;
  min-block-size: 36px;
}

.button-primary {
  background: var(--theme-primary-primary);
  color: var(--theme-primary-on-primary);
}

.button-primary:hover,
.button-primary:focus-visible {
  outline: none;
  background: var(--theme-button-states-primary-hovered);
}

.button-secondary {
  color: var(--theme-surface-on-surface);
  background: var(--theme-secondary-button);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--theme-outline-variant);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  outline: none;
  background: var(--theme-button-secondary-hover);
}

/* ========================================================
   Hero (wie .welcome-wrapper / .welcome-section)
   ======================================================== */
.welcome-wrapper {
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  min-height: 100svh;
}

.hero-video-wrapper {
  z-index: -1;
}

.hero-video,
.main-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-particles-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.welcome-section {
  align-items: center;
  justify-content: center;
  font-weight: 450;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  padding: var(--space-xl) 0 var(--space-3xl);
  position: relative;
  text-align: center;
}

/* Lockup-Position (wie .logo-container) → Eyebrow */
.logo-container {
  display: flex;
}

.eyebrow-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-inline: var(--page-margin);
}

.eyebrow-mark {
  height: 30px;
  width: 30px;
  flex: 0 0 auto;
}

.eyebrow-text {
  font-size: var(--base-size);
  line-height: var(--cta-line-height);
  letter-spacing: var(--cta-letter-spacing);
  font-weight: 450;
  font-variation-settings: "wdth" 100, "opsz" 17.5;
  color: var(--theme-surface-on-surface);
}

/* Solo-Regenschirm über der Headline (kein Eyebrow-Text mehr) */
.eyebrow-lockup--solo { gap: 0; }
.eyebrow-lockup--solo .eyebrow-mark {
  height: clamp(38px, 6vw, 50px);
  width: clamp(38px, 6vw, 50px);
}

.header-container {
  margin-inline: var(--page-margin);
  margin-block: 32px 64px;
  position: relative;
}

.landing-main-header {
  margin: 0;
  font-size: 5rem;
  font-weight: 450;
  line-height: 1.1;
  max-inline-size: 1100px;
}

/* globale .landing-main-Typo (gewinnt auf dem Span, wie im Original) */
.landing-main {
  font-size: var(--landing-main-text-size);
  line-height: var(--landing-main-text-line-height);
  letter-spacing: var(--landing-main-text-letter-spacing);
  font-weight: 450;
  font-variation-settings: "wdth" 100, "opsz" 144;
}

/* ========================================================
   typed-header-Interna (verbatim)
   ======================================================== */
.typed-container {
  display: inline-block;
  position: relative;
}

.typed-content {
  display: inline-block;
}

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

.cursor-container {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(var(--cursor-pos-x, 0), var(--cursor-pos-y, 0), 0);
  pointer-events: none;
}

.blinking-cursor {
  animation: blink 0.5s infinite;
  height: 1em;
  width: calc(1em * 28 / 150);
  display: block;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* ========================================================
   CTA-Row (wie .grid-row.welcome-cta)
   ======================================================== */
.grid-row {
  display: flex;
  flex-flow: row wrap;
}

.welcome-cta {
  max-width: 100%;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin: 0 var(--page-margin) 0;
}

/* ========================================================
   Intro-Anfangszustände (GSAP-from-immediateRender-Äquivalent;
   nur mit JS aktiv — ohne JS bleibt die Seite voll sichtbar)
   ======================================================== */
.js .logo-container,
.js .welcome-cta,
.js .hero-video {
  opacity: 0;
}

@media (max-width: 1024px) {
  .welcome-section {
    padding: 0;
    margin: 0 0 var(--space-3xl);
  }
  .landing-main-header {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .eyebrow-mark {
    height: 24px;
    width: 24px;
  }
}

/* ========================================================
   ====  VSL-FUNNEL-GRUNDGERÜST (Antigravity-Designsystem) ====
   Sektionen unterhalb des Heros. Platzhalter klar markiert.
   ======================================================== */

/* ---- Zusätzliche Antigravity-Tokens (verbatim) ---- */
:root {
  --6xl-size: 72px; --6xl-line-height: 72px; --6xl-letter-spacing: -1.44px;
  --5xl-size: 54px; --5xl-line-height: 56.16px; --5xl-letter-spacing: -0.95px;
  --4xl-size: 42px; --4xl-line-height: 43.68px; --4xl-letter-spacing: -0.73px;
  --3xl-size: 32px; --3xl-line-height: 33.92px; --3xl-letter-spacing: -0.15px;
  --2xl-size: 28px; --2xl-line-height: 30.24px; --2xl-letter-spacing: -0.1px;
  --lg-size: 22px; --lg-line-height: 24.64px; --lg-letter-spacing: -0.08px;
  --md-size: 20px; --md-line-height: 26px; --md-letter-spacing: -0.05px;
  --space-4xl: 80px; --space-5xl: 88px; --space-6xl: 120px; --space-7xl: 180px;
  --shape-corner-xs: 4px; --shape-corner-sm: 8px; --shape-corner-md: 16px;
  --shape-corner-lg: 24px; --shape-corner-xl: 36px; --shape-corner-2xl: 48px;
  --ease2: cubic-bezier(0.2, 0.7, 0.2, 1);
  --card-bg: rgba(124, 92, 255, 0.045);
  --violet: #7c5cff;
  --cyan: #2bb7ce;
}
@media (max-width: 1024px) {
  :root {
    --6xl-size: 34px; --6xl-line-height: 36.04px; --6xl-letter-spacing: -0.68px;
    --5xl-size: 34px; --5xl-line-height: 36.04px; --5xl-letter-spacing: -0.68px;
    --4xl-size: 28px; --4xl-line-height: 30px; --4xl-letter-spacing: -0.2px;
    --3xl-size: 28px; --3xl-line-height: 30px;
    --2xl-size: 24px; --2xl-line-height: 26px;
    --md-size: 20px; --lg-size: 20px;
    --space-6xl: 80px; --space-5xl: 64px; --space-7xl: 110px;
  }
}
@media (max-width: 767px) {
  :root {
    --space-6xl: 64px; --space-5xl: 52px; --space-4xl: 56px;
  }
}

html {
  scroll-behavior: smooth;
}

/* ---- Headings + Text ---- */
.heading-2 {
  font-size: var(--6xl-size); line-height: var(--6xl-line-height);
  letter-spacing: var(--6xl-letter-spacing); font-weight: 450;
  font-variation-settings: "wdth" 100, "opsz" 72; margin: 0;
}
.heading-3 {
  font-size: var(--5xl-size); line-height: var(--5xl-line-height);
  letter-spacing: var(--5xl-letter-spacing); font-weight: 450;
  font-variation-settings: "wdth" 100, "opsz" 54; margin: 0;
}

/* --- Rechtstexte (Impressum / Datenschutz) --- */
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap > h1 { margin-bottom: 8px; }
.legal-updated { color: var(--color-text-muted, #6b6685); font-size: 0.95rem; margin: 0 0 34px; }
.legal-wrap h2 {
  font-size: 1.35rem; font-weight: 500; line-height: 1.3;
  margin: 40px 0 10px; padding-top: 22px; border-top: 1px solid rgba(28,24,56,0.10);
}
.legal-wrap h3 { font-size: 1.06rem; font-weight: 500; margin: 22px 0 6px; }
.legal-wrap p { margin: 0 0 12px; line-height: 1.65; color: #3a3556; }
.legal-wrap ul { margin: 0 0 14px; padding-left: 20px; }
.legal-wrap li { margin: 0 0 7px; line-height: 1.6; color: #3a3556; }
.legal-wrap a { color: #6a46e0; }
.legal-wrap strong { color: var(--color-text, #1c1838); font-weight: 600; }
.legal-block {
  background: rgba(124,92,255,0.05); border: 1px solid rgba(124,92,255,0.16);
  border-radius: 12px; padding: 16px 20px; margin: 0 0 18px;
}
.legal-block p { margin: 0 0 4px; }

/* --- Goldener Schutz (ehrlicher Hinweis, kompakt im Footer) --- */
.footer-schutz {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--theme-surface-outline-variant, rgba(28,24,56,0.10));
  max-width: 760px;
}
.footer-schutz__label {
  margin: 0 0 6px; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.footer-schutz p:last-child {
  margin: 0; font-size: 0.8rem; line-height: 1.6;
  color: var(--theme-surface-on-surface-variant);
}

/* --- Angebote-Seite (alles zentriert) --- */
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 44px auto 0;
}
.angebot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  height: 100%;
}
.angebot__num {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-variation-settings: "wdth" 100, "opsz" 42;
}
.angebot__title {
  font-size: 1.32rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 0;
}
.angebot .angebot__desc {
  flex: 1 1 auto;
  line-height: 1.6;
}
.angebot__cta {
  margin-top: 16px;
  width: 100%;
}
.angebot--primary {
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: 0 22px 60px -32px rgba(124, 92, 255, 0.5);
}
@media (max-width: 860px) {
  .angebote-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* --- Produktkarten (auf angebote.html) --- */
.produkt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 920px;
  margin: 44px auto 0;
}
.produkt-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.produkt-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.produkt-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
}
.produkt-card__title {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
}
.produkt-card__price {
  color: var(--gold);
  font-weight: 500;
  font-size: 1.15rem;
}
.produkt-card .produkt-card__cta {
  margin-top: auto;
  width: 100%;
}
@media (max-width: 760px) {
  .produkt-cards { grid-template-columns: 1fr; max-width: 440px; }
}

/* --- Produkt-Detailseite (zentriert) --- */
.produkt-hero { text-align: center; max-width: 760px; margin: 0 auto; }
.produkt-hero__img {
  width: 100%;
  max-width: 640px;
  border-radius: var(--shape-corner-xl);
  display: block;
  margin: 0 auto 30px;
}
.produkt-price {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold);
  margin: 12px 0 22px;
  font-variation-settings: "wdth" 100, "opsz" 40;
}
.produkt-prose {
  max-width: 660px;
  margin: 40px auto 0;
  text-align: center;
}
.produkt-prose p {
  margin: 0 0 16px;
  line-height: 1.72;
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--md-size);
}
.produkt-prose p.produkt-lead {
  color: var(--theme-surface-on-surface);
  font-weight: 500;
}
.produkt-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 680px;
  margin: 36px auto 0;
}
.produkt-gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--shape-corner-lg);
  display: block;
}
.angebote-soft {
  text-align: center;
  margin: 34px auto 0;
  font-size: var(--sm-size, 0.95rem);
  color: var(--theme-surface-on-surface-variant);
}
.angebote-soft a { color: var(--gold); font-weight: 500; }
.heading-4 {
  font-size: var(--4xl-size); line-height: var(--4xl-line-height);
  letter-spacing: var(--4xl-letter-spacing); font-weight: 450;
  font-variation-settings: "wdth" 100, "opsz" 42; margin: 0;
}
.section-lead {
  font-size: var(--md-size); line-height: var(--md-line-height);
  color: var(--theme-surface-on-surface-variant);
  max-width: 52ch; margin: var(--space-md) auto 0;
}
.section-label {
  font-size: var(--cta-sm-size); font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 var(--space-md);
}
/* Inline-Platzhalter: klar als „noch füllen" erkennbar */
.ph {
  color: var(--theme-surface-on-surface-variant);
  border-bottom: 1px dashed rgba(201, 162, 39, 0.6);
}

/* ---- Sektions-Gerüst ---- */
.section {
  position: relative;
  padding: var(--space-6xl) 0 var(--space-5xl);
  scroll-margin-top: 80px;
  overflow-x: clip;
}
.section--divider {
  border-top: 1px solid var(--theme-outline-variant);
}
.section-head {
  margin-bottom: var(--space-2xl);
  max-width: 760px;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-cta {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
}

/* ---- Reveal-on-Scroll (wie Antigravity-Section-Fades) ---- */
.js .reveal,
.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease2), transform 0.7s var(--ease2);
}
.reveal.in,
.reveal-stagger > .in {
  opacity: 1;
  transform: none;
}

/* ---- Platzhalter (Medien) ---- */
.placeholder {
  border: 1.5px dashed rgba(28, 24, 56, 0.22);
  background: repeating-linear-gradient(
      45deg,
      rgba(124, 92, 255, 0.035),
      rgba(124, 92, 255, 0.035) 12px,
      rgba(124, 92, 255, 0.06) 12px,
      rgba(124, 92, 255, 0.06) 24px
    );
  border-radius: var(--shape-corner-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
  color: var(--theme-surface-on-surface-variant);
}
.placeholder__tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(251, 250, 246, 0.85);
  padding: 6px 12px;
  border-radius: var(--shape-corner-rounded);
}

/* VSL-Video-Rahmen */
.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  position: relative;
}
.video-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--theme-primary-primary), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(74, 47, 143, 0.5);
  transition: transform 0.2s var(--ease2);
}
.video-play:hover {
  transform: scale(1.06);
}
.video-play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
  fill: #fff;
}

/* Clip-/Screenshot-Kacheln */
.tile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.tile-row--4 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-xl);
}
.tile {
  aspect-ratio: 3 / 4;
}
.tile--screenshot {
  aspect-ratio: 16 / 10;
}

/* ---- Cards ---- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-xl);
  padding: var(--space-xl);
}
.card-title {
  font-size: var(--xl-size, 24px);
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 var(--space-md);
}
.card-grid {
  display: grid;
  gap: var(--space-md);
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card p {
  margin: 0;
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--base-size);
}
.card-ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.card-ic svg {
  width: 22px;
  height: 22px;
}

/* „Das ist für dich, wenn" – zwei Karten */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.check-list,
.x-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.check-list li,
.x-list li {
  position: relative;
  padding-left: 2.2em;
  color: var(--theme-surface-on-surface-variant);
  line-height: 1.45;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-radius: 50%;
}
.x-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-surface-on-surface-variant);
  background: rgba(28, 24, 56, 0.06);
  border-radius: 50%;
}
.card--nofit {
  background: transparent;
}

/* ---- Testimonials ---- */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
}
.testimonial blockquote {
  margin: 0;
  font-size: var(--lg-size);
  line-height: 1.4;
  color: var(--theme-surface-on-surface);
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: var(--base-size);
  color: var(--theme-surface-on-surface-variant);
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: repeating-linear-gradient(45deg, rgba(124, 92, 255, 0.15), rgba(124, 92, 255, 0.15) 6px, rgba(124, 92, 255, 0.28) 6px, rgba(124, 92, 255, 0.28) 12px);
  border: 1px dashed rgba(28, 24, 56, 0.22);
}

/* ---- Beweis / Autorität (zwei Spalten) ---- */
.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.two-col__media {
  aspect-ratio: 4 / 5;
}
.two-col__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 40%;
  border-radius: var(--shape-corner-lg);
}
.stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-size: var(--4xl-size);
  line-height: 1;
  font-weight: 500;
  font-variation-settings: "wdth" 100, "opsz" 42;
  background: linear-gradient(135deg, var(--theme-primary-primary), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: var(--cta-sm-size);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-surface-on-surface-variant);
}
.two-col__text p {
  font-size: var(--md-size);
  line-height: var(--md-line-height);
  color: var(--theme-surface-on-surface-variant);
  margin: 0;
}

/* ---- FAQ (native <details>) ---- */
.faq-wrap {
  max-width: 820px;
}
.faq {
  border-top: 1px solid var(--theme-outline-variant);
}
.faq-item {
  border-bottom: 1px solid var(--theme-outline-variant);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--lg-size);
  font-weight: 500;
  color: var(--theme-surface-on-surface);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-ic {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.25s var(--ease2);
}
.faq-ic::before,
.faq-ic::after {
  content: "";
  position: absolute;
  background: var(--violet);
  border-radius: 2px;
}
.faq-ic::before {
  inset: 11px 4px;
  height: 2px;
}
.faq-ic::after {
  inset: 4px 11px;
  width: 2px;
}
.faq-item[open] .faq-ic {
  transform: rotate(135deg);
}
.faq-a {
  padding: 0 0 var(--space-lg);
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--base-size);
  line-height: 1.55;
  max-width: 64ch;
}

/* ---- Final-CTA-Band (Verknappung) ---- */
.final-cta {
  border-top: 1px solid var(--theme-outline-variant);
}
.final-cta__inner {
  background: linear-gradient(135deg, #211b43 0%, #4a2f8f 100%);
  border-radius: var(--shape-corner-2xl);
  padding: var(--space-5xl) var(--space-2xl);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta__inner .heading-2 {
  max-width: 18ch;
  margin: 0 auto;
}
.final-scarcity {
  display: inline-block;
  margin: 0 0 var(--space-lg);
  font-size: var(--cta-sm-size);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--shape-corner-rounded);
  padding: 6px 16px;
}
.final-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--md-size);
  max-width: 46ch;
  margin: var(--space-md) auto var(--space-2xl);
}
.button-cta-light {
  background: #fff;
  color: var(--theme-primary-primary);
}
.button-cta-light:hover,
.button-cta-light:focus-visible {
  outline: none;
  background: var(--gold);
  color: #1c1838;
}
.final-note {
  margin: var(--space-lg) 0 0;
  font-size: var(--cta-sm-size);
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--theme-outline-variant);
  padding: var(--space-4xl) 0 var(--space-2xl);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.footer-brand {
  max-width: 320px;
}
.footer-tagline {
  margin: var(--space-sm) 0 0;
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--base-size);
}
.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--theme-surface-on-surface-variant);
  text-decoration: none;
  font-size: var(--base-size);
}
.footer-links a:hover {
  color: var(--theme-surface-on-surface);
}
.footer-bottom {
  margin-top: var(--space-2xl);
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--cta-sm-size);
}

/* ---- Hero-Subheadline (Ergänzung) ---- */
.hero-sub {
  margin: 0 auto;
  max-width: 30ch;
  font-size: var(--md-size);
  line-height: var(--md-line-height);
  color: var(--theme-surface-on-surface-variant);
}
.js .hero-sub {
  opacity: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .split-cards,
  .card-grid--3,
  .two-col {
    grid-template-columns: 1fr;
  }
  .tile-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .tile-row--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col__media {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .welcome-cta {
    flex-direction: column;
    width: 100%;
  }
  .welcome-cta .button {
    width: 100%;
    max-width: 360px;
  }
  .final-cta__inner {
    padding: var(--space-4xl) var(--space-lg);
  }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal,
  .js .reveal-stagger > *,
  .js .hero-sub {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========================================================
   Download-Button-Icon + Testimonials-Chat-Wall
   ======================================================== */
.btn-ic {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex: 0 0 auto;
}

.chat-sub {
  margin: var(--space-sm) auto 0;
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--base-size);
}

.chat-wall {
  column-count: 3;
  column-gap: var(--space-md);
}

.chat-bubble {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 var(--space-md);
  background: #ffffff;
  border: 1px solid var(--theme-outline-variant);
  border-radius: 20px 20px 20px 6px;
  padding: var(--space-lg);
  box-shadow: 0 2px 12px -7px rgba(28, 24, 56, 0.22);
}

.chat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  flex: 0 0 auto;
}

.chat-avatar--icon svg {
  width: 20px;
  height: 20px;
}

.chat-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--theme-surface-on-surface);
}

.chat-time {
  margin-left: auto;
  font-size: 12px;
  color: var(--theme-surface-on-surface-variant);
}

.chat-text {
  margin: 0;
  font-size: var(--base-size);
  line-height: 1.55;
  color: var(--theme-surface-on-surface);
}

.chat-text .mention {
  color: var(--cyan);
  font-weight: 500;
}

.chat-react {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-rounded);
  padding: 4px 12px;
  font-size: 14px;
}

.chat-react span {
  color: var(--theme-surface-on-surface-variant);
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .chat-wall {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .chat-wall {
    column-count: 1;
  }
}

/* ========================================================
   Opt-in (Willkommensgeschenk gegen E-Mail) — Funnel-Lead-Capture
   ======================================================== */
.optin[hidden] {
  display: none;
}
.optin {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.optin__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 56, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.optin__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--shape-corner-2xl);
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(28, 24, 56, 0.5);
  animation: optin-in 0.35s var(--ease2);
}
@keyframes optin-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.optin__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--theme-surface-on-surface-variant);
  cursor: pointer;
}
.optin__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.optin__mark svg {
  width: 30px;
  height: 30px;
}
.optin__title {
  font-size: var(--3xl-size);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  font-weight: 500;
  font-variation-settings: "wdth" 100, "opsz" 32;
}
.optin__text {
  color: var(--theme-surface-on-surface-variant);
  margin: 0 0 var(--space-lg);
  font-size: var(--base-size);
  line-height: 1.5;
}
.optin__text a {
  color: var(--violet);
  font-weight: 500;
}
.optin__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.optin__input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-rounded);
  font: inherit;
  font-size: var(--base-size);
  background: var(--theme-background);
  color: var(--theme-surface-on-surface);
  text-align: center;
}
.optin__input:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.15);
}
.optin__input.invalid {
  border-color: #e0564f;
  box-shadow: 0 0 0 3px rgba(224, 86, 79, 0.12);
}
.optin__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.optin__note {
  font-size: var(--cta-sm-size);
  color: var(--theme-surface-on-surface-variant);
  margin: var(--space-md) 0 0;
}
body.optin-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .optin__card {
    animation: none;
  }
}

/* ---- VSL-Video-Player ---- */
.vsl-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--shape-corner-lg);
  object-fit: cover;
  background: #000;
}

/* ========================================================
   ====  FUNNEL-ARCHITEKTUR (Gottlebe) — additives Styling  ====
   Nutzt bestehende Tokens/Komponenten. Kein Redesign.
   ======================================================== */

/* Statischer Header für die inneren Funnel-Stages */
.header--static {
  position: static;
  background: var(--theme-background);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--theme-outline-variant);
}
.page-pad {
  min-height: 62vh;
}
.section--top {
  padding-top: var(--space-3xl);
}
.section-microcopy {
  margin: var(--space-md) auto 0;
  max-width: 46ch;
  font-size: var(--cta-sm-size);
  color: var(--theme-surface-on-surface-variant);
}

/* Hero-Mikrotext unter CTA */
.hero-microcopy {
  margin: var(--space-md) auto 0;
  max-width: 32ch;
  font-size: var(--cta-sm-size);
  color: var(--theme-surface-on-surface-variant);
}
.js .hero-microcopy {
  opacity: 0;
}

/* VSL-Teaser (Klick → Opt-in) */
.vsl-teaser {
  position: relative;
  display: block;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--shape-corner-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 50px -20px rgba(28, 24, 56, 0.4);
}
.vsl-teaser__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vsl-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 56, 0.18);
  transition: background 0.2s var(--ease2);
}
.vsl-teaser:hover::after {
  background: rgba(28, 24, 56, 0.28);
}
.vsl-teaser__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-primary-primary), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 10px 30px -8px rgba(74, 47, 143, 0.6);
  transition: transform 0.2s var(--ease2);
}
.vsl-teaser:hover .vsl-teaser__play {
  transform: scale(1.06);
}
.vsl-teaser__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}
.vsl-teaser__badge {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(251, 250, 246, 0.92);
  color: var(--theme-surface-on-surface);
  font-size: var(--cta-sm-size);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--shape-corner-rounded);
  white-space: nowrap;
}

/* „Das lernst du"-Karte */
.lern-card {
  max-width: 680px;
  margin: 0 auto;
}

/* Fortschrittsanzeige */
.progress {
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}
.progress__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(28, 24, 56, 0.08);
  overflow: hidden;
}
.progress__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}
.progress__label {
  margin: 10px 0 0;
  font-size: var(--cta-sm-size);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-surface-on-surface-variant);
}

/* Wert-Wiederholung */
.value-block {
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}
.value-block__title {
  font-size: var(--xl-size, 24px);
  font-weight: 500;
  margin: 0 0 var(--space-md);
}

/* Scheduler */
.scheduler {
  max-width: 820px;
  margin: 0 auto;
}
.scheduler__mount {
  min-height: 320px;
}
.scheduler-ph {
  min-height: 320px;
  padding: var(--space-2xl);
}
.scheduler-ph__hint {
  color: var(--theme-surface-on-surface-variant);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 42ch;
}

/* Danke / Show-up */
.danke-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.danke-mark {
  display: inline-flex;
  margin-bottom: var(--space-md);
}
.danke-mark svg {
  width: 64px;
  height: 64px;
}
.danke-actions {
  margin: var(--space-xl) 0 var(--space-2xl);
}
.danke-precall {
  text-align: left;
  margin-top: var(--space-lg);
}
.danke-reminder {
  text-align: center;
  margin-top: var(--space-lg);
}
.danke-reminder__text {
  margin: 0 0 var(--space-md);
  color: var(--theme-surface-on-surface-variant);
}

/* Consent-Banner (Consent Mode v2) */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-lg);
  padding: var(--space-lg);
  box-shadow: 0 20px 60px -20px rgba(28, 24, 56, 0.45);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.consent-banner__text {
  margin: 0;
  flex: 1 1 260px;
  font-size: var(--base-size);
  color: var(--theme-surface-on-surface-variant);
}
.consent-banner__text a {
  color: var(--violet);
}
.consent-banner__actions {
  display: flex;
  gap: var(--space-sm);
}
.consent-banner__actions .button {
  padding: 10px 20px;
}

/* Opt-in: Consent-Checkbox-Zeile */
.optin__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: var(--cta-sm-size);
  color: var(--theme-surface-on-surface-variant);
  padding: 4px 2px 0;
}
.optin__consent input {
  margin-top: 3px;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--violet);
}
.optin__consent a {
  color: var(--violet);
}
.optin__consent.invalid {
  color: #c0463f;
}

@media (prefers-reduced-motion: reduce) {
  .js .hero-microcopy {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- 12-Sternzeichen-Marquee (Kreis-Chips wie Antigravity „bouncer") ---- */
.zodiac-section {
  overflow-x: clip;
  padding: var(--space-5xl) 0;
  position: relative;
}
.zodiac-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.zodiac-track {
  display: flex;
  gap: 8px;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  will-change: transform;
}
.zodiac-chip {
  flex: 0 0 auto;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 92, 255, 0.06);
  border: 1px solid var(--theme-outline-variant);
  color: var(--theme-surface-on-surface);
  font-size: 42px;
  line-height: 1;
  font-variant-emoji: text;
  will-change: transform;
  backface-visibility: hidden;
}
@media (max-width: 1024px) {
  .zodiac-track {
    gap: 6px;
  }
  .zodiac-chip {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}

/* =========================================================
   Variante v2 — „Ein Erdling sein ist cool. Die Galaxie lenken ist cooler."
   (kompakter Hero, Video ungated, Journey, Danke-Geschenk)
   ========================================================= */
.welcome-wrapper--compact {
  min-height: auto;
  padding: clamp(56px, 12vh, 128px) 0 clamp(24px, 5vh, 56px);
}
.hero-scrollhint {
  text-align: center; margin: 18px 0 0;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--theme-surface-on-surface-variant); opacity: 0.75;
}
.section--tight { padding-top: 0; }

/* --- „Das lernst du auf deiner Reise" (Journey · Benefit · Outcome) --- */
.journey {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl); max-width: 1000px; margin: 44px auto 0;
}
.journey__step { display: flex; flex-direction: column; gap: 6px; }
.journey__num {
  font-size: 1.5rem; font-weight: 500; color: var(--gold);
  font-variation-settings: "wdth" 100, "opsz" 42;
}
.journey__phase { font-size: 1.22rem; font-weight: 600; margin: 0; }
.journey .journey__learn {
  margin: 4px 0 12px; line-height: 1.62;
  color: var(--theme-surface-on-surface-variant); flex: 1 1 auto;
}
.journey .journey__benefit, .journey .journey__outcome {
  margin: 0; font-size: 0.9rem; line-height: 1.5;
  color: var(--theme-surface-on-surface-variant);
}
.journey .journey__outcome { margin-top: 4px; }
.journey__benefit span, .journey__outcome span {
  display: inline-block; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; padding: 1px 7px;
  border-radius: 999px; margin-right: 6px; vertical-align: middle;
}
.journey__benefit span { background: rgba(124, 92, 255, 0.12); color: #6a46e0; }
.journey__outcome span { background: rgba(201, 162, 39, 0.16); color: #a5811a; }
@media (max-width: 860px) {
  .journey { grid-template-columns: 1fr; max-width: 460px; }
}

/* --- Danke-Seite: Briefing-Geschenk-Karte --- */
.danke-gift {
  text-align: center; margin-top: 20px;
  border-color: rgba(201, 162, 39, 0.32);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(240,216,137,0.14) 0%, rgba(251,250,246,0) 60%),
    #fffdf7;
}
.danke-gift__label {
  margin: 0 0 4px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: #a5811a;
}
.danke-gift .button { margin-top: 14px; }

/* --- Sternzeichen-Rad (interaktiv): wählen → Sternbild erscheint --- */
.zodiac-picker {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(22px, 4vw, 36px);
}
.zodiac-wheel {
  --r: clamp(118px, 30vw, 172px);
  position: relative;
  width: calc(var(--r) * 2 + 74px);
  height: calc(var(--r) * 2 + 74px);
  margin: 8px auto 0;
}
.zodiac-picker[hidden] { display: none; } /* no-JS: leeres Rad nicht zeigen */
.zodiac-wheel__ring {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; /* statt inset (Safari <14.1) */
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.zodiac-spoke {
  position: absolute; top: 50%; left: 50%;
  width: clamp(52px, 12vw, 66px); height: clamp(52px, 12vw, 66px);
  margin: calc(clamp(52px, 12vw, 66px) / -2) 0 0 calc(clamp(52px, 12vw, 66px) / -2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124, 92, 255, 0.06);
  border: 1px solid var(--theme-outline-variant);
  color: var(--theme-surface-on-surface);
  font: inherit; cursor: pointer; padding: 0;
  transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a) - var(--rot, 0deg)));
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.zodiac-spoke__g { font-size: clamp(22px, 5vw, 28px); line-height: 1; }
.zodiac-spoke { touch-action: manipulation; } /* kein Doppeltipp-Zoom auf iOS */
.zodiac-wheel__ring.is-spinning .zodiac-spoke { pointer-events: none; } /* Chips sind während der Drehung bewegliche Ziele */
.zodiac-spoke:hover { background: rgba(124, 92, 255, 0.14); border-color: rgba(124, 92, 255, 0.5); }
.zodiac-spoke:focus-visible { outline: 2px solid var(--violet, #7c5cff); outline-offset: 3px; }
.zodiac-spoke.is-active {
  background: rgba(201, 162, 39, 0.14);
  border-color: var(--gold, #c9a227);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18), 0 10px 26px -12px rgba(201, 162, 39, 0.55);
  color: #7a5f13; /* dunkleres Gold: ≥4.5:1 Kontrast auch bei kleiner Glyphe */
}
.zodiac-wheel__center {
  position: absolute; top: 50%; left: 50%;
  width: clamp(104px, 24vw, 132px); height: clamp(104px, 24vw, 132px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(124, 92, 255, 0.1), rgba(251, 250, 246, 0)), #fffdf7;
  border: 1px solid var(--theme-outline-variant);
  box-shadow: 0 18px 40px -22px rgba(28, 24, 56, 0.4);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--theme-surface-on-surface-variant);
  pointer-events: none;
}
.zodiac-wheel__center.is-chosen { border-color: rgba(201, 162, 39, 0.55); }
.zodiac-wheel__glyph { font-size: clamp(40px, 9vw, 54px); line-height: 1; color: var(--theme-surface-on-surface); }
.zodiac-wheel__peek { font-size: 0.9rem; letter-spacing: 0.04em; text-transform: none; color: var(--theme-surface-on-surface); padding: 0 10px; }

/* Ergebnis: Sternbild-Karte (Nachthimmel) */
.zodiac-result { width: 100%; display: flex; justify-content: center; }
.zodiac-result[hidden] { display: none; } /* hidden gewinnt gegen display:flex (wie .optin[hidden]) */
.zodiac-result__card {
  width: min(440px, 100%);
  border-radius: var(--shape-corner-lg, 24px);
  overflow: hidden;
  background: radial-gradient(140% 120% at 50% 0%, #2a2254 0%, #1c1838 58%, #14112b 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 60px -28px rgba(28, 24, 56, 0.65);
  opacity: 0; transform: translateY(14px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.zodiac-result.is-live .zodiac-result__card { opacity: 1; transform: none; }
.zodiac-result__sky { display: block; width: 100%; height: auto; }
.zodiac-result__name {
  margin: 0; padding: 12px 18px 16px;
  text-align: center; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.04em;
  color: #f3e7bf;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.zodiac-result__glyph { font-size: 1.35em; line-height: 1; color: var(--gold, #c9a227); }
.zodiac-result__text { padding: 0 clamp(18px, 5vw, 32px) 22px; }
.zodiac-result__text p {
  margin: 0 0 8px; text-align: center;
  font-size: 0.92rem; line-height: 1.55;
  color: #cfc6f5;
}
.zodiac-result__text p:last-child {
  margin-bottom: 0; color: #f3e7bf; font-weight: 500; /* Signatur-Zeile in Gold */
}
.zsky-bg { fill: #cfc6f5; }
.zsky-line {
  stroke: rgba(201, 162, 39, 0.8); stroke-width: 1.3; stroke-linecap: round;
  transition: stroke-dashoffset 0.7s ease;
}
.zodiac-result.is-live .zsky-line { stroke-dashoffset: 0 !important; }
.zsky-halo { fill: rgba(255, 217, 102, 0.16); }
.zsky-star { fill: #f6edd0; animation: zsky-twinkle 2.8s ease-in-out infinite; }
@keyframes zsky-twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
@media (max-width: 520px) {
  /* Rad darf nie breiter als der Content-Bereich werden (16px Seitenrand) */
  .zodiac-wheel {
    --r: min(132px, calc(50vw - 44px));
    width: calc(var(--r) * 2 + 56px);
    height: calc(var(--r) * 2 + 56px);
  }
}
@media (max-width: 380px) {
  .zodiac-spoke { width: 48px; height: 48px; margin: -24px 0 0 -24px; }
  .zodiac-spoke__g { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .zodiac-wheel__ring, .zodiac-spoke, .zodiac-result__card { transition: none; }
  .zsky-star { animation: none; }
  .zsky-line { transition: none; stroke-dashoffset: 0 !important; }
}

/* --- Journey interaktiv: goldener Pfad + wandernder Lichtpunkt + aktive Phasen --- */
.journey { position: relative; }
.journey__line {
  position: absolute; top: 46px; left: 4%; right: 4%; height: 2px;
  z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(201, 162, 39, 0.55) 0 7px, rgba(201, 162, 39, 0) 7px 15px);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.journey.in-view .journey__line { transform: scaleX(1); }
.journey__fill {
  position: absolute; top: 0; left: 0; height: 100%;
  width: var(--journey-p, 0%);
  background: linear-gradient(90deg, var(--gold, #c9a227), #e3c766);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.55);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey__spark {
  position: absolute; top: 50%; left: 0;
  width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%;
  background: #f0d889;
  box-shadow: 0 0 12px 3px rgba(201, 162, 39, 0.65);
  opacity: 0;
}
.journey.in-view .journey__spark { opacity: 1; animation: journey-spark 7.5s ease-in-out infinite alternate; }
@keyframes journey-spark {
  from { left: 2%; }
  to { left: 97%; }
}
.journey__step {
  position: relative; z-index: 1; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
}
.journey.in-view .journey__step { opacity: 1; transform: translateY(0); }
.journey.in-view .journey__step:nth-child(3) { transition-delay: 0.12s; }
.journey.in-view .journey__step:nth-child(4) { transition-delay: 0.24s; }
.journey__step:focus-visible { outline: 2px solid var(--violet, #7c5cff); outline-offset: 3px; }
.journey.in-view .journey__step.is-active {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12), 0 24px 44px -24px rgba(28, 24, 56, 0.4);
}
.journey__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.15rem !important;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.35);
  transition: background 0.35s, color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.journey__step.is-active .journey__num {
  background: linear-gradient(135deg, var(--gold, #c9a227), #a5811a);
  color: #fffdf5;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.16), 0 8px 20px -8px rgba(201, 162, 39, 0.7);
}
.journey__step .journey__benefit,
.journey__step .journey__outcome { transition: transform 0.4s ease, opacity 0.4s ease; opacity: 0.72; }
.journey__step.is-active .journey__benefit { opacity: 1; transform: translateX(3px); }
.journey__step.is-active .journey__outcome { opacity: 1; transform: translateX(3px); transition-delay: 0.08s; }
@media (max-width: 860px) {
  /* mobil: vertikaler Pfad links durch die Nummern-Orbs */
  .journey__line {
    top: 28px; bottom: 28px; left: 47px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, rgba(201, 162, 39, 0.55) 0 7px, rgba(201, 162, 39, 0) 7px 15px);
    transform: scaleY(0); transform-origin: top center;
  }
  .journey.in-view .journey__line { transform: scaleY(1); }
  .journey__fill { width: 100%; height: var(--journey-p, 0%); background: linear-gradient(180deg, var(--gold, #c9a227), #e3c766); }
  .journey__spark { left: 50%; top: 0; margin: 0 0 0 -4.5px; }
  @keyframes journey-spark {
    from { top: 2%; }
    to { top: 96%; }
  }
  .journey__step { padding-left: 76px; }
  .journey__step .journey__num { position: absolute; left: 24px; top: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .journey__line, .journey__fill, .journey__step, .journey__num { transition: none; }
  .journey__line { transform: none; }
  .journey__spark { animation: none; opacity: 0; }
  .journey__step { opacity: 1; transform: none; }
}

/* --- Final-CTA um ~20 % komprimiert (Okans Ansage) --- */
.final-cta--compact .final-cta__inner { padding: clamp(34px, 6vw, 58px) clamp(22px, 4vw, 40px); }
.final-cta--compact .heading-2 { font-size: clamp(26px, 3.4vw, 42px); line-height: 1.12; }
.final-cta--compact .final-scarcity { margin-bottom: 14px; padding: 5px 13px; font-size: 12.5px; }
.final-cta--compact .final-lead { margin: 12px auto 26px; font-size: 0.95em; }
.final-cta--compact .final-note { margin-top: 16px; font-size: 12.5px; }

/* --- Bildercollage „Warum Liakim" (5 Bilder, gestaffelt eingeblendet) --- */
.two-col__media--collage { aspect-ratio: auto; }
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.collage__tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: 0 16px 34px -20px rgba(28, 24, 56, 0.5);
  background: #efece4;
}
.collage__tile img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s var(--ease2);
}
.collage__tile--wide { grid-column: 1 / -1; }
/* Kirche: Liakim steht unten im Bild → Ausschnitt nach unten schieben */
.collage__tile--kirche img { object-position: 50% 72%; }
.collage__tile--wide img { aspect-ratio: 16 / 10; }
.collage__tile:hover img { transform: scale(1.06); }
/* gestaffeltes Auftauchen, sobald die Sektion sichtbar wird */
.js .collage__tile {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.7s var(--ease2), transform 0.7s var(--ease2);
}
.reveal.in .collage__tile { opacity: 1; transform: none; }
.reveal.in .collage__tile:nth-child(2) { transition-delay: 0.09s; }
.reveal.in .collage__tile:nth-child(3) { transition-delay: 0.16s; }
.reveal.in .collage__tile:nth-child(4) { transition-delay: 0.23s; }
.reveal.in .collage__tile:nth-child(5) { transition-delay: 0.3s; }

/* --- Akademie-Karte (Patreon, statt Produkt) --- */
.produkt-card--akademie {
  border-color: rgba(201, 162, 39, 0.42);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(240, 216, 137, 0.18) 0%, rgba(251, 250, 246, 0) 62%),
    #fffdf7;
  justify-content: center;
}
.produkt-card--akademie .produkt-card__body { padding: 30px 26px 28px; gap: 10px; }
.akademie-mark { width: 46px; height: 46px; display: inline-block; }
.akademie-mark svg { width: 100%; height: 100%; display: block; }
.produkt-card__label {
  margin: 2px 0 0;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #a5811a;
}
.akademie-text {
  margin: 0 0 8px;
  font-size: 0.95rem; line-height: 1.6;
  color: var(--theme-surface-on-surface-variant);
}

/* --- VSL-Auftritt (Video steht direkt unter der Headline) --- */
.js .vsl-stage {
  transform: translateY(34px) scale(0.955);
  transition: opacity 0.9s var(--ease2), transform 0.9s var(--ease2), box-shadow 0.9s var(--ease2);
  border-radius: var(--shape-corner-lg);
  overflow: hidden;
}
.vsl-stage.in {
  /* muss die spätere .js .vsl-stage-Regel schlagen, sonst bleibt der Scale hängen */
  transform: none;
  box-shadow: 0 34px 74px -36px rgba(28, 24, 56, 0.6), 0 0 0 1px rgba(201, 162, 39, 0.34);
}
.vsl-stage .vsl-video { border-radius: inherit; }
.vsl-stage__sheen {
  position: absolute; inset: 0; z-index: 2;
  border-radius: inherit; pointer-events: none; opacity: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 238, 180, 0.3) 50%, transparent 64%);
  transform: translateX(-120%);
}
.vsl-stage.in .vsl-stage__sheen { animation: vsl-sheen 1.5s 0.35s ease-out 1; }
@keyframes vsl-sheen {
  0% { transform: translateX(-120%); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .js .collage__tile, .js .vsl-stage { opacity: 1; transform: none; transition: none; }
  .collage__tile img { transition: none; }
  .vsl-stage.in .vsl-stage__sheen { animation: none; }
}

/* --- Schlanke Erstgespräch-Leisten (zwischen den Sektionen) --- */
.cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  max-width: 940px;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: var(--shape-corner-lg);
  border: 1px solid rgba(201, 162, 39, 0.34);
  background:
    radial-gradient(120% 160% at 0% 50%, rgba(240, 216, 137, 0.16) 0%, rgba(251, 250, 246, 0) 62%),
    #fffdf7;
  box-shadow: 0 14px 34px -24px rgba(28, 24, 56, 0.4);
}
.cta-bar__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--theme-surface-on-surface);
}
.cta-bar__text strong { font-weight: 500; }
.cta-bar .cta-bar__btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 720px) {
  .cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
    padding: 20px 18px;
  }
  .cta-bar .cta-bar__btn { white-space: normal; }
}

/* --- Special Offer (Produktseite): Nachthimmel statt Rabatt-Optik --- */
.special-offer {
  max-width: 620px;
  margin: 34px auto 0;
  padding: clamp(28px, 5vw, 40px) clamp(22px, 5vw, 40px);
  text-align: center;
  border-radius: var(--shape-corner-lg);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #f4f1ff;
  /* feiner Sternenstaub über dem Indigo-Verlauf */
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.2px 1.2px at 78% 16%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.1px 1.1px at 30% 74%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.4px 1.4px at 88% 66%, rgba(240, 216, 137, 0.55), transparent),
    radial-gradient(1px 1px at 58% 40%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.2px 1.2px at 44% 12%, rgba(240, 216, 137, 0.4), transparent),
    radial-gradient(1px 1px at 20% 52%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(140% 120% at 50% 0%, #2a2254 0%, #1c1838 58%, #14112b 100%);
  box-shadow: 0 26px 60px -30px rgba(28, 24, 56, 0.65), inset 0 0 60px -30px rgba(124, 92, 255, 0.5);
}
.special-offer__label {
  margin: 0 0 14px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.special-offer__label span { margin: 0 4px; opacity: 0.8; }
.special-offer__headline {
  margin: 0 0 22px;
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.28; font-weight: 500;
  color: #fff;
}
.special-offer__note {
  margin: 12px 0 0;
  font-size: var(--cta-sm-size);
  color: rgba(244, 241, 255, 0.6);
}
.special-offer__bonus {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 162, 39, 0.24);
  font-size: 0.97rem;
  color: rgba(244, 241, 255, 0.85);
}
.special-offer__bonus strong { color: #fff; font-weight: 500; }

/* Akademie-Karte über die volle Breite (2 Produkte oben, Mitgliedschaft darunter) */
@media (min-width: 761px) {
  .produkt-card--akademie { grid-column: 1 / -1; }
  .produkt-card--akademie .produkt-card__body { max-width: 560px; margin-inline: auto; }
}

/* --- Streichpreis-Darstellung (Muster aus dem Ads-Funnel: "X € statt Y €") --- */
.produkt-card__price-old {
  font-weight: 400;
  font-size: 0.86em;
  color: var(--theme-surface-on-surface-variant);
  opacity: 0.85;
}
.button strong { font-weight: 500; }

/* =========================================================
   Buchung — eigener Kalender im Scheduler-Mount (/termin)
   Nutzt die vorhandenen Bausteine (.card, .button, .optin__input) und
   ergänzt nur, was es bisher nicht gab: Tages- und Uhrzeit-Auswahl.
   ========================================================= */
.buchung {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
/* Schritt 1 ist ein eigener Wrapper — ohne eigenes gap kleben Tages- und
   Uhrzeit-Gruppe direkt aufeinander (der gap von .buchung greift nur zwischen
   dessen direkten Kindern). */
.buchung > [data-schritt1] {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.buchung__hinweis {
  margin: 0;
  text-align: center;
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--base-size);
}
.buchung__hinweis strong {
  color: var(--theme-surface-on-surface);
  font-weight: 500;
}

/* =========================================================================
   BUCHUNGSKARTE — der Terminbereich soll wie ein echtes Terminwerkzeug
   wirken, nicht wie ein Formularfragment auf der Seite. Deshalb: eine
   umschlossene Karte mit Meeting-Kopf (Gastgeber, Plattform), einer
   Meta-Zeile (Dauer · Zoom · Zeitzone) und nummerierten Schritten.
   ========================================================================= */
.buchung__karte {
  background: var(--theme-surface-surface, #fff);
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-lg, 28px);
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 1px 2px rgba(28, 24, 56, 0.04), 0 18px 44px rgba(28, 24, 56, 0.07);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: left;
}
.buchung__kopf {
  display: flex;
  align-items: center;
  gap: 14px;
}
.buchung__plattform {
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11, 92, 255, 0.28);
}
.buchung__kopf-titel {
  margin: 0;
  font-size: var(--h3-size, 20px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--theme-surface-on-surface);
}
.buchung__kopf-sub {
  margin: 3px 0 0;
  font-size: var(--cta-sm-size);
  line-height: 1.4;
  color: var(--theme-surface-on-surface-variant);
}

/* Meta-Zeile: die harten Fakten zuerst, wie im Kalender-Eintrag selbst. */
.buchung__meta {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--theme-outline-variant);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.buchung__meta-el {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--cta-sm-size);
  line-height: 1.3;
  color: var(--theme-surface-on-surface-variant);
}
.buchung__meta-el svg {
  flex: 0 0 auto;
  opacity: 0.75;
}
[data-meta-dauer] span {
  color: var(--theme-surface-on-surface);
  font-weight: 500;
}

/* Schrittzahl vor der Gruppenueberschrift — macht aus zwei Listen einen Weg. */
.buchung__schritt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--theme-primary-primary);
  color: var(--theme-primary-on-primary);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: middle;
}

.buchung__meldung {
  margin: 0;
  padding: 12px 18px;
  border-radius: var(--shape-corner-md);
  font-size: var(--cta-sm-size);
  line-height: 1.5;
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid var(--theme-outline-variant);
  color: var(--theme-surface-on-surface);
}
.buchung__meldung--fehler {
  background: rgba(224, 86, 79, 0.09);
  border-color: rgba(224, 86, 79, 0.28);
  color: #a83b35;
}

.buchung__ladend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  color: var(--theme-surface-on-surface-variant);
  font-size: var(--cta-sm-size);
}
.buchung__spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 255, 0.25);
  border-top-color: var(--violet);
  animation: buchung-dreh 0.8s linear infinite;
}
@keyframes buchung-dreh {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .buchung__spinner {
    animation: none;
    border-top-color: rgba(124, 92, 255, 0.25);
  }
}

/* Fieldset ohne den Browser-Rahmen — das Gerüst ist trotzdem semantisch,
   damit Screenreader „Tag wählen" als Gruppenüberschrift ansagen. */
.buchung__gruppe {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.buchung__legende {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
  font-size: var(--cta-sm-size);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-surface-on-surface-variant);
}

.buchung__tage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: var(--space-sm);
}
.buchung__tag {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 60px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--theme-surface-on-surface);
  background: var(--card-bg);
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-md);
  transition: 0.15s all ease-out;
}
.buchung__tag-wtag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-surface-on-surface-variant);
}
.buchung__tag-datum {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}
.buchung__tag-anzahl {
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--theme-surface-on-surface-variant);
}
.buchung__tag:hover {
  border-color: rgba(124, 92, 255, 0.4);
  transform: translateY(-1px);
}
.buchung__tag[aria-pressed="true"] .buchung__tag-wtag {
  color: rgba(255, 255, 255, 0.72);
}
.buchung__tag[aria-pressed="true"] {
  background: var(--theme-primary-primary);
  border-color: var(--theme-primary-primary);
  color: var(--theme-primary-on-primary);
}
.buchung__tag[aria-pressed="true"] .buchung__tag-anzahl {
  color: rgba(255, 255, 255, 0.72);
}

.buchung__zeiten {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: var(--space-sm);
}
.buchung__zeit {
  /* 48px: sicher mit dem Daumen zu treffen, auch mit dicken Fingern. */
  min-height: 48px;
  padding: 12px 16px;
  cursor: pointer;
  font: inherit;
  font-size: var(--base-size);
  font-weight: 500;
  color: var(--theme-surface-on-surface);
  background: rgba(124, 92, 255, 0.06);
  border: 1px solid var(--theme-outline-variant);
  border-radius: var(--shape-corner-rounded);
  transition: 0.15s all ease-out;
}
.buchung__zeit:hover {
  border-color: rgba(124, 92, 255, 0.45);
}
.buchung__zeit[aria-pressed="true"] {
  background: var(--theme-primary-primary);
  border-color: var(--theme-primary-primary);
  color: var(--theme-primary-on-primary);
}
.buchung__tag:focus-visible,
.buchung__zeit:focus-visible {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.22);
}

.buchung__leer p {
  margin: 0 0 12px;
}
.buchung__leer p:last-child {
  margin: 0;
}
.buchung__wiederholen {
  margin: 0;
  text-align: center;
}

.buchung__bestaetigen {
  padding: var(--space-lg);
}
.buchung__gewaehlt-label {
  margin: 0 0 4px;
  font-size: var(--cta-sm-size);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-surface-on-surface-variant);
}
.buchung__gewaehlt {
  margin: 0;
  font-size: var(--lg-size);
  line-height: 1.25;
  font-weight: 500;
  color: var(--theme-surface-on-surface);
}
.buchung__gewaehlt-zusatz {
  margin: 4px 0 var(--space-lg);
  font-size: var(--cta-sm-size);
  color: var(--theme-surface-on-surface-variant);
}
.buchung__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.buchung__form .optin__input {
  text-align: left;
}
.buchung__zeile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.buchung__textarea {
  border-radius: var(--shape-corner-md);
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
}
/* Honigtopf: nie sichtbar, nie fokussierbar, aber im DOM.
   display:none würde manche Roboter abschrecken — genau das wollen wir nicht. */
.buchung__honig {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.buchung__consent {
  margin-top: 4px;
}
.buchung__absenden {
  width: 100%;
  margin-top: var(--space-sm);
  min-height: 52px;
}
.buchung__fehler {
  margin: 0;
  font-size: var(--cta-sm-size);
  line-height: 1.5;
  color: #a83b35;
}

@media (max-width: 560px) {
  .buchung__zeile {
    grid-template-columns: 1fr;
  }
  .buchung__tage {
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  }
  .buchung__bestaetigen {
    padding: var(--space-md);
  }
}

/* Interner CRM-Einstieg im Footer — bewusst zurueckhaltend: er soll fuer Ogün
   und Okan von jeder Seite aus erreichbar sein, ohne Besuchern ins Auge zu
   springen. Die CRM-Seite selbst gibt ohne Zugangslink nichts preis. */
.footer-intern {
  opacity: 0.45;
}
.footer-intern:hover {
  opacity: 1;
}
