/**
 * Flow to Freedom — Marketing-Landing (öffentliche Conversion-Seite)
 */
.mkt-page {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-void);
  color: var(--text-primary);
  overflow-x: clip;
  padding-top: var(--mkt-nav-h, 76px);
  /* Warme Untertitel — kein Cyber-Blau (passt zur Karten-Ästhetik) */
  --mkt-sub: rgba(196, 184, 162, 0.92);
  --mkt-sub-soft: rgba(168, 156, 138, 0.88);
  --mkt-kicker: var(--gold);
  --text-muted: var(--mkt-sub-soft);
}

.mkt-section--visual {
  position: relative;
  overflow: hidden;
}

.mkt-section--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.mkt-section--visual > * {
  position: relative;
  z-index: 1;
}

.mkt-section--mountains::before {
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(255, 101, 53, 0.1), transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(64, 208, 232, 0.06), transparent 55%);
  opacity: 1;
}

.mkt-section--serenia::before {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(240, 176, 64, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 80%, rgba(255, 101, 53, 0.06), transparent 55%);
  opacity: 1;
}

.mkt-atmo {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 101, 53, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(64, 208, 232, 0.08), transparent 50%);
}

.mkt-page > *:not(.mkt-atmo):not(.welcome-video-overlay):not(.mkt-nav-shell):not(.mkt-booking-modal):not(.mkt-cookie-banner) {
  position: relative;
  z-index: 1;
}

.mkt-page [id] {
  scroll-margin-top: calc(var(--mkt-nav-h, 76px) + 12px);
}

/* Nav — immer sichtbar, Navigation jederzeit erreichbar */
.mkt-nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(6, 14, 24, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.mkt-nav {
  --mkt-nav-h: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  position: relative;
  z-index: 1;
}

.mkt-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mkt-logo-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-fire);
}

.mkt-logo-eyebrow em {
  font-style: normal;
  color: var(--gold);
}

.mkt-logo-title {
  font-family: Cormorant, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.mkt-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mkt-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.mkt-nav-links a:hover {
  color: var(--text-primary);
}

.mkt-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mkt-lang-switch.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.mkt-lang-switch .lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  line-height: 1;
}

.mkt-lang-switch .lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mkt-lang-switch .lang-btn.active {
  background: var(--ftf-brand, #ffb86b);
  color: #fff;
}

.mkt-nav-cta {
  padding: 10px 18px !important;
  font-size: 14px !important;
  white-space: nowrap;
}

.mkt-nav-preview {
  padding: 10px 16px !important;
  font-size: 14px !important;
  white-space: nowrap;
}

/* Typography helpers */
.mkt-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mkt-kicker);
  margin: 0 0 12px;
}

.mkt-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px;
}

.mkt-section-head h2 {
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  margin: 0;
  font-weight: 700;
}

.mkt-section-head h2 span {
  color: var(--brand-fire);
}

.mkt-section-head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mkt-sub {
  color: var(--mkt-sub);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 14px;
}

.mkt-sub--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero — Startbanner volle Breite, Titel links auf der Karte sichtbar */
.mkt-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}

.mkt-hero-banner-wrap {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw) 28px;
  padding: 0;
  background: #030508;
  border-block: 1px solid var(--border-subtle);
}

.mkt-hero-banner {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1024 / 576;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  border: none;
}

.mkt-hero-banner--desk {
  aspect-ratio: 1024 / 576;
  object-fit: cover;
  object-position: center 42%;
}

.mkt-hero-body {
  max-width: 720px;
}

.mkt-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 32px;
}

.mkt-hero h1 {
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 700;
}

.mkt-hero h1 span {
  color: var(--brand-fire);
}

.mkt-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(220, 232, 240, 0.9);
  margin: 0 0 28px;
  max-width: 520px;
}

.mkt-hero-body .mkt-kicker {
  margin-bottom: 16px;
}

.mkt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

/* Nutzen — Was passiert (Hero-Follow-up) */
.mkt-section--spotlight {
  padding-top: 48px;
  padding-bottom: 56px;
}

.mkt-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.mkt-spotlight h2 {
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 16px;
  font-weight: 700;
}

.mkt-spotlight-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-spotlight-points li {
  position: relative;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 1.55;
  color: var(--mkt-sub);
}

.mkt-spotlight-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-fire);
  font-weight: 700;
}

.mkt-spotlight-punch {
  margin: 20px 0 0;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
}

.mkt-spotlight__visual {
  margin: 0;
}

.mkt-spotlight__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

.mkt-btn-primary {
  background: linear-gradient(135deg, var(--brand-fire), #e84a18) !important;
  padding: 14px 26px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 28px rgba(255, 101, 53, 0.35);
}

.mkt-btn-ghost {
  padding: 14px 22px !important;
}

.mkt-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--mkt-sub-soft);
}

.mkt-hero-bullets li::before {
  content: "◆ ";
  color: var(--gold);
  font-size: 8px;
  vertical-align: middle;
}

/* Hero collage */
.mkt-hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 340px;
  border-radius: 20px;
  overflow: hidden;
}

.mkt-collage-tile {
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  border: 1px solid rgba(30, 58, 90, 0.5);
}

.mkt-tile-a { grid-row: span 2; }
.mkt-tile-c {
  background-size: 100% 700%;
  background-position: center 35%;
}

.mkt-collage-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(40, 168, 80, 0.9);
  color: #060e18;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Strip */
.mkt-strip {
  border-block: 1px solid var(--border-subtle);
  background: rgba(12, 24, 36, 0.6);
  overflow: hidden;
}

.mkt-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  padding: 16px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

/* Two col */
.mkt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(220, 232, 240, 0.88);
}

/* Photo collage */
.mkt-photo-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
  margin-top: 36px;
}

.mkt-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  background: var(--bg-panel);
}

.mkt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mkt-photo--tall {
  grid-row: span 2;
  grid-column: span 1;
}

.mkt-photo--wide {
  grid-column: span 2;
}

.mkt-photo--strip {
  grid-row: span 2;
}

.mkt-photo--strip figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(6, 14, 24, 0.9));
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}

.mkt-photo--strip img {
  object-fit: cover;
  object-position: center 30%;
}

/* Challenges */
.mkt-challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.mkt-challenge {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(160deg, var(--bg-surface), var(--bg-panel));
}

.mkt-challenge--featured {
  grid-column: 1 / -1;
  border-color: rgba(255, 101, 53, 0.4);
  background: linear-gradient(135deg, rgba(255, 101, 53, 0.08), var(--bg-surface));
}

.mkt-challenge-level {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.mkt-challenge h3 {
  font-family: Cormorant, Georgia, serif;
  font-size: 24px;
  margin: 8px 0 10px;
}

.mkt-challenge p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Journey — monochrome */
.mkt-journey-card {
  margin-top: 32px;
  padding: 8px 0;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  overflow: hidden;
}

.mkt-journey-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
}

.mkt-journey-row:last-child {
  border-bottom: none;
}

.mkt-journey-num {
  font-family: Cormorant, Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.mkt-journey-row h3 {
  margin: 0 0 4px;
  font-family: Cormorant, Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.mkt-journey-world {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.mkt-journey-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Termine — GoHighLevel Buchungsbereich */
.mkt-section--booking {
  max-width: 980px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.mkt-section--booking::before {
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(240, 176, 64, 0.1), transparent 62%),
    radial-gradient(ellipse 55% 45% at 8% 85%, rgba(255, 101, 53, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 40% at 92% 70%, rgba(64, 208, 232, 0.05), transparent 50%);
  opacity: 1;
}

.mkt-booking {
  display: grid;
  gap: 28px;
}

.mkt-booking-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.mkt-booking-title {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
}

.mkt-booking-title span {
  color: var(--brand-fire);
}

.mkt-booking-subtitle {
  margin: 10px 0 0;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.mkt-booking-lead {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: var(--mkt-sub);
}

.mkt-booking-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-booking-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: var(--ftf-radius-md, 14px);
  border: 1px solid rgba(240, 176, 64, 0.28);
  background: linear-gradient(165deg, rgba(240, 176, 64, 0.08), rgba(8, 18, 32, 0.72));
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mkt-booking-benefit-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--ftf-radius-pill, 999px);
  border: 1px solid rgba(240, 176, 64, 0.45);
  background: rgba(240, 176, 64, 0.12);
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}

.mkt-booking-benefit-label {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  color: rgba(220, 210, 190, 0.96);
}

.mkt-booking-calendar-shell {
  position: relative;
  margin-top: 4px;
}

.mkt-booking-calendar-frame {
  position: relative;
  padding: 14px;
  border-radius: var(--ftf-radius-xl, 22px);
  border: 1px solid rgba(240, 176, 64, 0.42);
  background:
    linear-gradient(145deg, rgba(240, 176, 64, 0.14), rgba(240, 176, 64, 0.03)),
    rgba(6, 14, 24, 0.55);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mkt-booking-calendar-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(196, 148, 48, 0.75);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.mkt-booking-calendar-corner--tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.mkt-booking-calendar-corner--tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
  border-radius: 0 4px 0 0;
}

.mkt-booking-calendar-corner--bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 4px;
}

.mkt-booking-calendar-corner--br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.mkt-booking-calendar-inner {
  position: relative;
  z-index: 1;
  min-height: 760px;
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: var(--ftf-radius-lg, 18px);
  border: 1px solid rgba(196, 148, 48, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98) 0%, rgba(247, 239, 226, 0.96) 48%, rgba(235, 224, 207, 0.94) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    inset 0 -12px 32px rgba(139, 112, 64, 0.08);
  overflow: visible;
  scroll-margin-top: calc(var(--mkt-nav-h, 76px) + 20px);
}

#booking-calendar-widget {
  scroll-margin-top: calc(var(--mkt-nav-h, 76px) + 20px);
}

.mkt-booking-calendar-inner iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  height: auto;
  border: 0;
  background: transparent;
}

.mkt-booking-calendar-inner:has(iframe) .mkt-booking-calendar-placeholder {
  display: none;
}

.mkt-booking-calendar-placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  min-height: 720px;
  padding: 24px;
  text-align: center;
  border: 2px dashed rgba(139, 112, 64, 0.35);
  border-radius: var(--ftf-radius-md, 14px);
  background: rgba(255, 255, 255, 0.35);
}

.mkt-booking-calendar-placeholder-title {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-main, #102a43);
}

.mkt-booking-calendar-placeholder-hint {
  margin: 0;
  max-width: 36ch;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(16, 42, 67, 0.72);
}

.mkt-booking-privacy {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  color: var(--mkt-sub-soft);
}

.mkt-booking-privacy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mkt-booking-privacy a:hover {
  color: var(--brand-fire);
}

.mkt-booking .mkt-booking-privacy {
  margin-top: 20px;
}

.mkt-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10040;
  width: min(920px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  height: min(900px, calc(100dvh - 24px));
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  overscroll-behavior: contain;
}

.mkt-booking-modal:not([open]) {
  display: none;
}

html.mkt-booking-modal-open,
body.mkt-booking-modal-open {
  overflow: hidden;
  touch-action: none;
}

.mkt-booking-modal::backdrop {
  background: rgba(4, 12, 22, 0.82);
  backdrop-filter: blur(4px);
}

.mkt-booking-modal__panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 28, 46, 0.98), rgba(8, 20, 34, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.mkt-booking-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-booking-modal__title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.2;
  color: var(--mkt-text);
}

.mkt-booking-modal__title span {
  color: var(--gold);
}

.mkt-booking-modal__close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--mkt-text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mkt-booking-modal__close:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.mkt-booking-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.mkt-booking-modal__body iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  .mkt-booking-modal {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    height: min(860px, calc(100dvh - max(16px, env(safe-area-inset-top)) - max(16px, env(safe-area-inset-bottom))));
    max-height: calc(100dvh - max(16px, env(safe-area-inset-top)) - max(16px, env(safe-area-inset-bottom)));
  }
}

@media (max-width: 640px) {
  .mkt-booking-modal {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
  }

  .mkt-booking-modal__panel {
    border-radius: 0;
  }
}

/* Termin-Karten über dem Buchungskalender */
.mkt-booking .mkt-date-grid {
  margin-top: 0;
  margin-bottom: 8px;
}

.mkt-section--booking-calendar {
  max-width: 980px;
  padding-top: 48px;
  padding-bottom: 72px;
}

.mkt-booking-calendar-block {
  display: grid;
  gap: 24px;
}

.mkt-date-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed rgba(139, 112, 64, 0.35);
  border-radius: 14px;
}

.mkt-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.mkt-date-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-date-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mkt-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}

.mkt-badge--offline {
  color: var(--gold);
  border-color: rgba(240, 176, 64, 0.35);
}

.mkt-badge--online {
  color: rgba(196, 184, 162, 0.95);
  border-color: rgba(196, 184, 162, 0.35);
}

.mkt-badge--price {
  color: #fff;
  background: rgba(255, 101, 53, 0.22);
  border-color: rgba(255, 101, 53, 0.45);
}

.mkt-badge--free {
  color: #dff7e8;
  background: rgba(72, 187, 120, 0.18);
  border-color: rgba(72, 187, 120, 0.4);
}

.mkt-badge--soon {
  color: var(--mkt-sub);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Produkt-Stufen (Phase 1) */
.mkt-products-layout {
  width: 100%;
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mkt-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 0;
  justify-items: stretch;
  box-sizing: border-box;
}

.mkt-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 22px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  min-height: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.mkt-product-card--featured {
  border-color: rgba(240, 176, 64, 0.5);
  background:
    linear-gradient(160deg, rgba(240, 176, 64, 0.12), rgba(255, 101, 53, 0.05)),
    var(--bg-surface);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.mkt-product-card--soon {
  opacity: 0.88;
}

.mkt-product-card__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.mkt-product-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-sub-soft);
}

.mkt-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.mkt-product-card__title {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 1.15;
}

.mkt-product-card__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--mkt-sub);
}

.mkt-product-card__meta {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.mkt-product-card__inhalt {
  margin: 8px 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mkt-sub-soft);
}

.mkt-product-card__bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--mkt-sub);
  font-size: 14px;
  line-height: 1.5;
}

.mkt-product-card__bullets li + li {
  margin-top: 5px;
}

.mkt-product-card__claim {
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 0;
  border-left: 3px solid rgba(240, 176, 64, 0.45);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  line-height: 1.55;
  color: var(--mkt-sub);
  text-align: left;
}

.mkt-product-card__claim p {
  margin: 0;
  font-style: italic;
}

.mkt-product-card__claim p + p {
  margin-top: 10px;
}

.mkt-product-card__cta {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
}

.mkt-product-card__cta--disabled {
  pointer-events: none;
  opacity: 0.72;
}

.mkt-product-card__access {
  margin: 4px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(240, 176, 64, 0.22);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  line-height: 1.5;
  color: var(--mkt-sub-soft);
}

.mkt-product-card__access a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.mkt-product-card__access a:hover {
  text-decoration: underline;
}

.mkt-product-note {
  width: 100%;
  max-width: 36rem;
  margin: 20px 0 0;
  padding: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mkt-sub-soft);
}

@media (max-width: 1024px) {
  .mkt-product-grid {
    grid-template-columns: 1fr;
    width: min(440px, 100%);
    max-width: 100%;
    margin-inline: auto;
  }

  .mkt-product-card__ribbon {
    position: static;
    align-self: flex-start;
    margin: 0 0 2px;
  }

  .mkt-product-card__head {
    padding-right: 0;
  }
}

.mkt-date-card h3 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: 24px;
}

.mkt-date-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.mkt-date-spots {
  font-size: 13px;
  font-weight: 700;
  color: var(--good);
}

.mkt-date-spots--full {
  color: var(--text-muted);
}

.mkt-date-card .btn {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
}

/* Organisationen — zurückhaltend */
.mkt-orgs {
  opacity: 0.92;
}

.mkt-orgs .mkt-section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.mkt-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mkt-pain-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.mkt-pain-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--gold);
}

.mkt-pain-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mkt-sub);
}

.mkt-pain-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(220, 210, 190, 0.95);
  margin: 0 0 8px;
  max-width: 680px;
}

.mkt-pain-lead em {
  font-style: normal;
  color: var(--gold);
}

/* Hero-Story — Problem → falsche Lösung → größeres Problem → echte Lösung */
.mkt-story-arc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.mkt-story-beat {
  padding: 22px 24px 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(155deg, rgba(18, 30, 44, 0.9), rgba(10, 18, 28, 0.95));
  border-left: 4px solid rgba(168, 156, 138, 0.45);
}

.mkt-story-beat-step {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mkt-sub-soft);
  margin-bottom: 8px;
}

.mkt-story-beat h3 {
  margin: 0 0 10px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.15;
}

.mkt-story-beat p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mkt-sub);
}

.mkt-story-beat p + p {
  margin-top: 12px;
}

.mkt-story-beat-closing {
  font-style: italic;
  color: rgba(220, 210, 190, 0.92);
}

.mkt-story-beat--false {
  border-left-color: rgba(196, 160, 120, 0.55);
}

.mkt-story-beat--worse {
  border-left-color: rgba(220, 100, 80, 0.5);
  background: linear-gradient(155deg, rgba(40, 20, 24, 0.5), rgba(10, 18, 28, 0.95));
}

.mkt-story-beat--real {
  border-left-color: var(--brand-fire);
  border-color: rgba(255, 101, 53, 0.28);
  background: linear-gradient(155deg, rgba(255, 101, 53, 0.08), rgba(10, 18, 28, 0.98));
  box-shadow: 0 0 40px rgba(255, 101, 53, 0.06);
}

.mkt-story-beat--real h3 span {
  color: var(--brand-fire);
}

.mkt-story-bridge {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(240, 176, 64, 0.3);
  background: rgba(240, 176, 64, 0.06);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(220, 210, 190, 0.95);
  text-align: center;
}

.mkt-takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mkt-takeaway-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.mkt-takeaway-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.mkt-takeaway-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Reise Limitia → Serenia */
.mkt-journey-hero {
  margin-top: 36px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.mkt-journey-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 576;
  object-fit: contain;
  object-position: center center;
  background: #030508;
}

.mkt-journey-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(12, 24, 36, 0.85);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mkt-journey-route span:first-child { color: rgba(196, 160, 120, 0.95); }
.mkt-journey-route span:last-child { color: var(--gold); }
.mkt-journey-route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 140, 90, 0.7), var(--gold));
  border-radius: 2px;
  min-width: 40px;
}

.mkt-journey-stations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mkt-journey-station {
  padding: 18px 14px 20px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(165deg, rgba(21, 36, 54, 0.95), rgba(12, 24, 36, 0.98));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mkt-journey-station img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.mkt-journey-station-num {
  font-family: Cormorant, Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.mkt-journey-station-world {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.mkt-journey-station h3 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: 17px;
  line-height: 1.2;
}

.mkt-journey-station p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

.mkt-journey-station--finale {
  border-color: rgba(240, 176, 64, 0.45);
  background: linear-gradient(165deg, rgba(240, 176, 64, 0.1), rgba(12, 24, 36, 0.98));
}

.mkt-how-visual {
  margin-top: 32px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  min-height: clamp(180px, 28vw, 280px);
  background:
    linear-gradient(155deg, rgba(18, 32, 48, 0.95), rgba(8, 14, 24, 0.98)),
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(255, 101, 53, 0.12), transparent 55%);
}

.mkt-how-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.mkt-format-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(240, 176, 64, 0.06);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(220, 232, 240, 0.92);
}

.mkt-center-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

/* Steps */
.mkt-step-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mkt-step-list li {
  padding: 24px;
  border-radius: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-step-list strong {
  font-size: 18px;
  color: var(--gold);
}

.mkt-step-list span {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Trust */
.mkt-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mkt-trust-card {
  padding: 22px;
  border-radius: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.mkt-trust-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.mkt-trust-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.mkt-quote {
  margin: 40px 0 0;
  padding: 28px 32px;
  border-radius: 18px;
  border-left: 4px solid var(--brand-fire);
  background: rgba(255, 101, 53, 0.06);
  font-family: Cormorant, Georgia, serif;
  font-size: 22px;
  line-height: 1.45;
}

.mkt-quote cite {
  display: block;
  margin-top: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
}

/* Offer */
.mkt-offer-card {
  padding: 40px 36px;
  border-radius: 22px;
  border: 1px solid rgba(240, 176, 64, 0.25);
  background: linear-gradient(145deg, rgba(240, 176, 64, 0.06), var(--bg-surface));
}

.mkt-offer-card h2 {
  font-family: Cormorant, Georgia, serif;
  font-size: 32px;
  margin: 0 0 16px;
}

.mkt-offer-card ul {
  margin: 20px 0 28px;
  padding-left: 20px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Form — Überschrift oben, GoHighLevel-Formular volle Breite */
.mkt-form-section {
  padding-bottom: 80px;
}

.mkt-form-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.mkt-form-head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mkt-form-head__title {
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
  font-weight: 700;
  line-height: 1.12;
}

.mkt-form-head__title span {
  color: var(--brand-fire);
}

.mkt-form-head__text {
  margin-top: 14px;
}

.mkt-form-head__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mkt-form-head__text a:hover {
  color: var(--brand-fire);
}

.mkt-form-embed {
  width: 100%;
  min-height: 627px;
  height: 627px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-form-embed iframe {
  display: block;
  min-height: 627px;
}

.mkt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mkt-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mkt-form label span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.mkt-form input,
.mkt-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-main);
  background: var(--bg-void);
  color: var(--text-primary);
  font: inherit;
  font-size: 15px;
}

.mkt-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.mkt-check input {
  margin-top: 3px;
  width: auto;
}

.mkt-check a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mkt-check a:hover {
  color: var(--brand-fire);
}

.mkt-btn-full {
  width: 100%;
  margin-top: 8px;
}

.mkt-form-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  min-height: 1.2em;
}

.mkt-form-hint--ok {
  color: var(--good);
}

/* Footer */
.mkt-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 48px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.mkt-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0;
}

.mkt-footer-links a {
  color: var(--gold);
  text-decoration: none;
}

.mkt-footer-links a:hover {
  color: var(--brand-fire);
}

.mkt-footer-copy {
  font-size: 12px;
  opacity: 0.7;
}

/* Journey-Vorschau — Level-Karten + Video-Links */
.mkt-showcase-page .mkt-showcase-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.mkt-showcase-head {
  text-align: center;
  margin-bottom: 8px;
}

.mkt-showcase-title {
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 12px;
}

.mkt-showcase-title span {
  color: var(--brand-fire);
}

.mkt-showcase-lead {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.mkt-showcase-route {
  margin-top: 24px;
  margin-bottom: 28px;
}

.mkt-showcase-level-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mkt-showcase-card {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(155deg, rgba(24, 40, 58, 0.95), rgba(10, 18, 28, 0.98));
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mkt-showcase-card.is-info-open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.mkt-showcase-card[data-color="violet"] { border-color: rgba(160, 120, 200, 0.35); }
.mkt-showcase-card[data-color="blue-gold"] { border-color: rgba(100, 150, 210, 0.35); }
.mkt-showcase-card[data-color="red-orange"] { border-color: rgba(220, 100, 80, 0.35); }
.mkt-showcase-card[data-color="green-gold"] { border-color: rgba(90, 180, 120, 0.35); }
.mkt-showcase-card[data-color="gold"],
.mkt-showcase-card--finale {
  border-color: rgba(240, 176, 64, 0.45);
  background: linear-gradient(155deg, rgba(240, 176, 64, 0.08), rgba(10, 18, 28, 0.98));
  box-shadow: 0 0 32px rgba(240, 176, 64, 0.06);
}

.mkt-showcase-card-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.mkt-showcase-badge {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.mkt-showcase-card-copy {
  flex: 1;
  min-width: 0;
}

.mkt-showcase-card-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mkt-sub-soft);
}

.mkt-showcase-card-num {
  color: var(--gold);
  font-family: Cormorant, Georgia, serif;
  font-size: 14px;
}

.mkt-showcase-card-title {
  margin: 0 0 8px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.15;
}

.mkt-showcase-card-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mkt-sub);
}

.mkt-showcase-video-btn {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(240, 176, 64, 0.35);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mkt-showcase-video-btn:hover,
.mkt-showcase-video-btn:focus-visible {
  border-color: rgba(255, 101, 53, 0.65);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 101, 53, 0.12);
  outline: none;
}

.mkt-showcase-video-thumb {
  position: relative;
  width: 168px;
  flex-shrink: 0;
  background: #060e18;
}

.mkt-showcase-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}

.mkt-showcase-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 14, 24, 0.45);
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}

.mkt-showcase-video-btn:hover .mkt-showcase-video-play {
  background: rgba(255, 101, 53, 0.35);
  color: #fff;
}

.mkt-showcase-video-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px 18px;
}

.mkt-showcase-video-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-fire);
}

.mkt-showcase-video-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(230, 220, 200, 0.95);
}

.mkt-showcase-games {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mkt-showcase-games-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(180, 190, 200, 0.75);
}

.mkt-showcase-pills.ftf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.mkt-showcase-page .ftf-pill {
  padding: 8px 12px;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #c8d8e4;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.mkt-showcase-page .ftf-pill:hover,
.mkt-showcase-page .ftf-pill:focus-visible {
  background: rgba(240, 176, 64, 0.15);
  border-color: rgba(240, 176, 64, 0.35);
  outline: none;
}

.mkt-showcase-page .ftf-pill.is-active {
  background: rgba(240, 176, 64, 0.22);
  border-color: rgba(240, 176, 64, 0.55);
  color: #f6e5bd;
}

.mkt-showcase-page .ftf-pill--soon {
  opacity: 0.65;
}

.mkt-showcase-page .ftf-pill--gold {
  border-color: rgba(255, 209, 102, 0.4);
  color: #ffd166;
}

.mkt-showcase-info-stash {
  display: none;
}

.mkt-showcase-info-slot {
  min-width: 0;
}

.mkt-showcase-info-slot:not([hidden]) {
  margin: 4px -20px -20px;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.mkt-showcase-card[data-color="violet"] .mkt-showcase-info-slot:not([hidden]) {
  background: rgba(80, 50, 110, 0.18);
  border-top-color: rgba(160, 120, 200, 0.28);
}

.mkt-showcase-card[data-color="blue-gold"] .mkt-showcase-info-slot:not([hidden]) {
  background: rgba(40, 70, 110, 0.18);
  border-top-color: rgba(100, 150, 210, 0.28);
}

.mkt-showcase-card[data-color="red-orange"] .mkt-showcase-info-slot:not([hidden]) {
  background: rgba(110, 40, 35, 0.16);
  border-top-color: rgba(220, 100, 80, 0.28);
}

.mkt-showcase-card[data-color="green-gold"] .mkt-showcase-info-slot:not([hidden]) {
  background: rgba(30, 80, 50, 0.16);
  border-top-color: rgba(90, 180, 120, 0.28);
}

.mkt-showcase-card[data-color="gold"] .mkt-showcase-info-slot:not([hidden]),
.mkt-showcase-card--finale .mkt-showcase-info-slot:not([hidden]) {
  background: rgba(120, 90, 20, 0.14);
  border-top-color: rgba(240, 176, 64, 0.32);
}

.mkt-showcase-info-panel {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: mkt-showcase-info-in 0.16s ease-out;
}

@keyframes mkt-showcase-info-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mkt-showcase-info-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #c8d8e8;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.mkt-showcase-info-title {
  margin: 0 36px 12px 0;
  font-size: 17px;
  line-height: 1.25;
  color: #f6e5bd;
}

.mkt-showcase-info-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9a441;
}

.mkt-showcase-info-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(220, 228, 235, 0.9);
}

.mkt-showcase-info-text--benefit {
  margin-bottom: 0;
  color: rgba(200, 230, 210, 0.95);
}

.mkt-nav--showcase .mkt-nav-links {
  display: none;
}

/* Mobile */
@media (max-width: 900px) {
  .mkt-nav-links { display: none; }
  .mkt-hero-banner {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 35%;
  }
  .mkt-hero-banner--desk {
    aspect-ratio: 4 / 3;
    object-position: center 40%;
  }
  .mkt-hero-body {
    max-width: none;
  }
  .mkt-journey-station img {
    width: 80px;
    height: 80px;
  }
  .mkt-pain-grid,
  .mkt-takeaway-grid {
    grid-template-columns: 1fr;
  }
  .mkt-journey-stations {
    grid-template-columns: 1fr;
  }

  .mkt-spotlight {
    grid-template-columns: 1fr;
  }

  .mkt-showcase-video-btn {
    flex-direction: column;
  }

  .mkt-showcase-video-thumb {
    width: 100%;
    min-height: 140px;
  }

  .mkt-showcase-page .ftf-pill {
    font-size: 11px;
    padding: 7px 10px;
    min-height: 34px;
  }

  .mkt-showcase-games-kicker {
    font-size: 10px;
  }
  .mkt-journey-route {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .mkt-journey-route-line {
    width: 100%;
    flex: none;
  }
  .mkt-hero {
    grid-template-columns: 1fr;
  }
  .mkt-hero-collage { min-height: 260px; }
  .mkt-two-col,
  .mkt-trust-grid,
  .mkt-step-list {
    grid-template-columns: 1fr;
  }
  .mkt-photo-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .mkt-booking-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mkt-booking-benefit {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 14px;
  }

  .mkt-booking-calendar-inner {
    min-height: 820px;
    padding: 12px;
  }

  .mkt-booking-calendar-inner iframe {
    min-height: 820px;
  }

  .mkt-booking-calendar-placeholder {
    min-height: 780px;
  }
}

/* Danke-Seite nach GHL-Buchung */
.mkt-page--thanks {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mkt-thanks {
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  padding: 32px 20px 48px;
}

.mkt-thanks-card {
  width: min(640px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border-radius: 20px;
  border: 1px solid rgba(240, 176, 64, 0.35);
  background:
    linear-gradient(145deg, rgba(240, 176, 64, 0.1), rgba(255, 101, 53, 0.04)),
    rgba(8, 18, 30, 0.92);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.mkt-thanks-card h1 {
  margin: 10px 0 16px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
  color: var(--text-primary);
}

.mkt-thanks-card h1 span {
  color: var(--gold);
}

.mkt-thanks-lead {
  margin: 0 auto 20px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--mkt-sub);
}

.mkt-thanks-notes {
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
  max-width: 48ch;
  text-align: left;
  color: var(--mkt-sub-soft);
  font-size: 14px;
  line-height: 1.55;
}

.mkt-thanks-notes li + li {
  margin-top: 8px;
}

.mkt-thanks-notes li::before {
  content: "✓ ";
  color: var(--gold);
}

.mkt-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
