/* ══════════════════════════════════════════════════════════
   FIVE MOVES — Weibliche Intimität · FUNKE (Free-Trial Landing)
   Cinematic Aubergine Stage. Frosted Cards. Light Type.
   Kontrast-optimiert: Gradient beginnt dunkel, Meta-Text lesbar.
   ══════════════════════════════════════════════════════════ */

/* ── Body Takeover ────────────────────────────────────── */
html:has(body.wi-funke) {
  height: auto !important;
  overflow-x: hidden;
}
body.wi-funke {
  background: #4a2738 !important;
  color: #F5EDE8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Top-Nav transparent über Aubergine */
body.wi-funke #fmHeader {
  background: rgba(30,14,22,0.75) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
body.wi-funke #fmHeader a,
body.wi-funke #fmHeader span,
body.wi-funke #fmHeader div { color: rgba(255,255,255,0.9) !important; }

/* Sprachauswahl + App-Button + Burger im Kurs-Kontext ausblenden */
body.wi-funke .fm-lang,
body.wi-funke .fm-header-cta,
body.wi-funke #fmHamburger { display: none !important; }

/* Kein Italic. em = Pink-Akzent. */
body.wi-funke em,
body.wi-funke i {
  font-style: normal !important;
  color: #F58FBC;
  font-weight: inherit;
}

/* ══════════════════════════════════════════════════════════
   STAGE — Dunkel-Aubergine, Gradient ohne hellen Top-Bereich
   ══════════════════════════════════════════════════════════ */
.fk-stage {
  position: relative;
  min-height: 100vh;
  padding: 89px 0 89px;
}
.fk-stage-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 100%, rgba(245,143,188,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(193,29,111,0.10) 0%, transparent 55%),
    linear-gradient(180deg, #5a3045 0%, #4a2738 55%, #2a1322 100%);
}
.fk-stage-bg::before {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(193,29,111,0.16) 0%, transparent 65%);
  animation: fk-drift 22s ease-in-out infinite alternate;
}
.fk-stage-bg::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 6%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,166,140,0.08) 0%, transparent 65%);
  animation: fk-drift 28s ease-in-out 4s infinite alternate-reverse;
}
@keyframes fk-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50%  { transform: translate(40px, -25px) scale(1.12); opacity: 1; }
  100% { transform: translate(-25px, 20px) scale(0.95); opacity: 0.7; }
}

.fk-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 21px;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.fk-hero {
  text-align: center;
  margin-bottom: 55px;
}
.fk-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5EDE8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 34px;
}
.fk-hero-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  color: #F5EDE8;
  margin: 0 0 13px 0;
  letter-spacing: -0.02em;
}
.fk-hero-accent {
  color: #F58FBC;
}
.fk-hero-claim {
  font-size: 19px;
  font-weight: 300;
  color: #F58FBC;
  margin: 0 0 34px 0;
  letter-spacing: 0.02em;
}
.fk-hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(245,237,232,0.92);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}

/* ══════════════════════════════════════════════════════════
   VIDEO CARD (Placeholder bis Drehtag 1. Mai)
   ══════════════════════════════════════════════════════════ */
.fk-video-card { margin-bottom: 55px; }
.fk-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(74,39,56,0.85) 0%, rgba(30,14,22,0.95) 70%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 48px rgba(20,10,16,0.4);
}
.fk-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 21px;
  text-align: center;
}
.fk-video-icon {
  width: 72px;
  height: 72px;
  color: #F58FBC;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.fk-video-icon svg { width: 100%; height: 100%; }
.fk-video-frame:hover .fk-video-icon { opacity: 1; }
.fk-video-label {
  font-size: 17px;
  font-weight: 500;
  color: rgba(245,237,232,0.95);
}
.fk-video-hint {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,237,232,0.72);
  max-width: 280px;
}

/* ══════════════════════════════════════════════════════════
   INTRO PROSE BLOCK
   ══════════════════════════════════════════════════════════ */
.fk-intro {
  margin: 0 auto 55px;
  max-width: 620px;
}
.fk-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,237,232,0.92);
  margin: 0 0 21px 0;
  text-align: left;
}
.fk-intro p:last-child { margin-bottom: 0; }
.fk-intro strong { font-weight: 600; color: #F58FBC; }

/* ══════════════════════════════════════════════════════════
   SECTION
   ══════════════════════════════════════════════════════════ */
.fk-section { margin: 0 0 55px 0; }
.fk-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F58FBC;
  text-align: center;
  margin-bottom: 13px;
}
.fk-section-title {
  font-size: 26px;
  font-weight: 600;
  color: #F5EDE8;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 21px 0;
  letter-spacing: -0.01em;
}
.fk-section-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,237,232,0.92);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 34px;
}

/* ══════════════════════════════════════════════════════════
   SEVI-STORIES
   ══════════════════════════════════════════════════════════ */
.fk-stories { display: grid; gap: 21px; }
.fk-story {
  background: rgba(20,10,16,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.fk-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, #F58FBC 0%, rgba(193,29,111,0.4) 100%);
}
.fk-story-word {
  font-size: 22px;
  font-weight: 500;
  color: #F58FBC;
  margin-bottom: 13px;
}
.fk-story-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,237,232,0.95);
  margin: 0 0 13px 0;
  text-align: left;
}
.fk-story-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,232,0.72);
}

/* ══════════════════════════════════════════════════════════
   FORSCHUNG
   ══════════════════════════════════════════════════════════ */
.fk-research { display: grid; gap: 21px; }
.fk-research-card {
  background: rgba(20,10,16,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fk-research-head { margin-bottom: 16px; }
.fk-research-name {
  font-size: 17px;
  font-weight: 600;
  color: #F5EDE8;
}
.fk-research-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,232,0.72);
  margin-top: 4px;
}
.fk-research-quote {
  font-size: 19px;
  font-weight: 300;
  color: #F5EDE8;
  line-height: 1.45;
  padding: 13px 0 16px 16px;
  border-left: 2px solid #F58FBC;
  margin-bottom: 16px;
}
.fk-research-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,237,232,0.88);
  margin: 0;
  text-align: left;
}

/* ══════════════════════════════════════════════════════════
   BRIDGE (Ehrlich gesagt / Core-Frage)
   ══════════════════════════════════════════════════════════ */
.fk-bridge { margin: 0 0 55px 0; }
.fk-bridge-inner {
  background: rgba(20,10,16,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 34px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.fk-bridge-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, #F58FBC 0%, rgba(193,29,111,0.4) 100%);
}
.fk-bridge-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F58FBC;
  margin-bottom: 13px;
}
.fk-bridge-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #F5EDE8;
  margin: 0 0 21px 0;
  letter-spacing: -0.01em;
}
.fk-bridge-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,237,232,0.92);
  margin: 0 0 16px 0;
  text-align: left;
}
.fk-bridge-text:last-child { margin-bottom: 0; }
.fk-bridge-text strong { color: #F58FBC; font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   FUNKE-BOX (Sevi-Chat)
   ══════════════════════════════════════════════════════════ */
.fk-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ── Gate (Bot-Schutz vor dem Chat) ─────────────────── */
.fk-gate {
  border-color: rgba(245,143,188,0.3);
}
.fk-gate-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F58FBC;
  margin-bottom: 10px;
}
.fk-gate-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,237,232,0.92);
  margin: 0 0 21px 0;
}
.fk-gate-text strong {
  color: #F58FBC;
  font-weight: 600;
}

.fk-transparent {
  background: rgba(20,10,16,0.5);
  border: 1px solid rgba(245,143,188,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 21px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,237,232,0.9);
}
.fk-transparent strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F58FBC;
  margin-bottom: 6px;
}

.fk-box-chat {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 21px;
}
.fk-box-chat:empty { display: none; }

.fk-msg {
  max-width: 85%;
  padding: 13px 18px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
}
.fk-msg-sevi {
  align-self: flex-start;
  background: rgba(245,143,188,0.14);
  border: 1px solid rgba(245,143,188,0.25);
  color: #F5EDE8;
  border-top-left-radius: 6px;
}
.fk-msg-user {
  align-self: flex-end;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #F5EDE8;
  border-top-right-radius: 6px;
}
.fk-msg-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F58FBC;
  margin-bottom: 4px;
}

.fk-typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 6px 0;
}
.fk-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #F58FBC;
  animation: fk-typing 1.2s infinite ease-in-out;
}
.fk-typing span:nth-child(2) { animation-delay: 0.15s; }
.fk-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes fk-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.fk-box-form { display: block; }
.fk-box-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F58FBC;
  margin-bottom: 8px;
}
.fk-box-def {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,237,232,0.85);
  margin: 0 0 13px 0;
}
.fk-box-def strong { color: #F58FBC; font-weight: 600; }

.fk-box-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.fk-box-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(245,143,188,0.35);
  border-radius: 14px;
  color: #F5EDE8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.fk-box-input::placeholder {
  color: rgba(245,237,232,0.5);
  font-weight: 300;
}
.fk-box-input:focus {
  border-color: #F58FBC;
  background: rgba(255,255,255,0.1);
}
.fk-box-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 56px;
  padding: 0 18px;
  background: #C11D6F;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.fk-box-submit:hover { background: #a51560; }
.fk-box-submit:active { transform: scale(0.97); }
.fk-box-submit:disabled { opacity: 0.45; cursor: not-allowed; }
.fk-box-submit-icon { width: 16px; height: 16px; flex-shrink: 0; }

.fk-box-hint {
  font-size: 12px;
  color: rgba(245,237,232,0.7);
  text-align: center;
  margin-top: 13px;
}

.fk-box-error {
  margin-top: 13px;
  padding: 11px 14px;
  background: rgba(220,80,80,0.14);
  border: 1px solid rgba(220,80,80,0.3);
  border-radius: 10px;
  color: #ffb0b0;
  font-size: 14px;
}

/* ══════════════════════════════════════════════════════════
   CTA (Warm Rebel Hook)
   ══════════════════════════════════════════════════════════ */
.fk-cta {
  margin: 34px 0 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fk-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F58FBC;
  text-align: center;
  margin-bottom: 13px;
}
.fk-cta-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  color: #F5EDE8;
  text-align: center;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.fk-cta-text {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,237,232,0.92);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 34px;
}

.fk-cta-card {
  background: rgba(20,10,16,0.55);
  border: 1px solid rgba(245,143,188,0.25);
  border-radius: 24px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(20,10,16,0.45);
}
.fk-cta-card-head { margin-bottom: 21px; }
.fk-cta-card-name {
  font-size: 22px;
  font-weight: 600;
  color: #F5EDE8;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.fk-cta-card-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,237,232,0.75);
}
.fk-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 21px 0;
}
.fk-cta-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,237,232,0.92);
}
.fk-cta-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #F58FBC;
  opacity: 0.85;
}
.fk-cta-price {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-bottom: 21px;
}
.fk-cta-price-amount {
  font-size: 34px;
  font-weight: 600;
  color: #F5EDE8;
  letter-spacing: -0.01em;
}
.fk-cta-price-meta {
  font-size: 12px;
  color: rgba(245,237,232,0.72);
  margin-top: 4px;
}
.fk-cta-button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #C11D6F;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.fk-cta-button:hover { background: #a51560; }
.fk-cta-button:active { transform: scale(0.98); }
.fk-cta-button:disabled { opacity: 0.55; cursor: not-allowed; }
.fk-cta-trust {
  font-size: 12px;
  color: rgba(245,237,232,0.7);
  text-align: center;
  margin-top: 13px;
}
.fk-cta-error {
  margin-top: 13px;
  padding: 11px 14px;
  background: rgba(220,80,80,0.14);
  border: 1px solid rgba(220,80,80,0.3);
  border-radius: 10px;
  color: #ffb0b0;
  font-size: 14px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.fk-footer {
  margin-top: 55px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.fk-footer-text {
  font-size: 17px;
  font-weight: 500;
  color: #F58FBC;
  margin-bottom: 6px;
}
.fk-footer-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,232,0.72);
}

/* ══════════════════════════════════════════════════════════
   Zusätzliche Intro-Section fürs Willkommen-Template
   ══════════════════════════════════════════════════════════ */
.fk-intro strong { color: #F58FBC; }

/* ══════════════════════════════════════════════════════════
   TABLET / DESKTOP
   ══════════════════════════════════════════════════════════ */
@media (min-width: 700px) {
  .fk-content { padding: 0 34px; }
  .fk-hero-title { font-size: 72px; }
  .fk-section-title { font-size: 34px; }
  .fk-bridge-title { font-size: 26px; }
  .fk-cta-title { font-size: 34px; }
  .fk-box { padding: 34px; }
  .fk-cta-card { padding: 34px; }
}

@media (min-width: 900px) {
  .fk-stage { padding-top: 110px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .fk-stage-bg::before,
  .fk-stage-bg::after { animation: none; }
  .fk-typing span { animation: none; opacity: 0.7; }
}

/* ══════════════════════════════════════════════════════════
   KURS-NAVIGATION (Sidebar)
   ══════════════════════════════════════════════════════════ */

/* Prominenter Pink-Burger rechts oben — konsistent mit Lektions-Nav */
.fk-nav-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  left: auto;
  z-index: 1100;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #C11D6F;
  border: 1px solid #C11D6F;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 16px rgba(193,29,111,0.35);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.fk-nav-toggle:hover {
  background: #9E1759;
  border-color: #9E1759;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193,29,111,0.45);
}
.fk-nav-toggle svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 2; fill: none; }
@media (max-width: 720px) {
  .fk-nav-toggle { width: 44px; height: 44px; top: 14px; right: 14px; }
  .fk-nav-toggle svg { width: 20px; height: 20px; }
}

/* Zurück-Link im fk-nav-head (nur wenn eingeloggt) */
.fk-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F58FBC;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.15s ease;
}
.fk-nav-back:hover { color: #FFFFFF; }
.fk-nav-back svg { flex-shrink: 0; }

.fk-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(20,10,16,0.7);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fk-nav-overlay.is-open { opacity: 1; visibility: visible; }

.fk-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  z-index: 92;
  background: rgba(30,15,22,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-right: 1px solid rgba(245,143,188,0.15);
  box-shadow: 4px 0 24px rgba(20,10,16,0.3);
  padding: 89px 0 21px 0;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.fk-nav.is-open { transform: translateX(0); }

.fk-nav-head {
  padding: 18px 24px 24px;
  border-bottom: 1px solid rgba(245,143,188,0.12);
  margin-bottom: 13px;
}
.fk-nav-brand {
  font-size: 18px;
  font-weight: 600;
  color: #F5EDE8;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.fk-nav-brand span {
  color: #F58FBC;
}
.fk-nav-subtitle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,232,0.72);
  margin-top: 6px;
}

.fk-nav-group { margin-bottom: 13px; }
.fk-nav-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F58FBC;
  padding: 13px 24px 8px;
}
.fk-nav-group--active .fk-nav-group-label { color: #F58FBC; opacity: 1; }

.fk-nav-akt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,232,0.7);
  padding: 14px 24px 6px;
}

.fk-nav-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 24px;
  color: rgba(245,237,232,0.75);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  border-left: 3px solid transparent;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.fk-nav-item:hover {
  background: rgba(245,143,188,0.08);
  color: #F5EDE8;
}
.fk-nav-item-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: rgba(245,143,188,0.55);
}
.fk-nav-item-icon svg { width: 14px; height: 14px; }
.fk-nav-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.fk-nav-item-title {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
}
.fk-nav-item-sub {
  font-size: 11px;
  color: rgba(245,237,232,0.65);
}

.fk-nav-item--active {
  color: #F5EDE8;
  background: rgba(245,143,188,0.14);
  border-left-color: #F58FBC;
  cursor: pointer;
}
.fk-nav-item--active .fk-nav-item-icon {
  color: #F58FBC;
  font-size: 16px;
  line-height: 1;
}
.fk-nav-item--active:hover {
  background: rgba(245,143,188,0.2);
}

.fk-nav-item--locked {
  cursor: default;
  opacity: 0.75;
}

.fk-nav-foot {
  padding: 21px 24px 13px;
  border-top: 1px solid rgba(245,143,188,0.1);
  margin-top: 13px;
}
.fk-nav-foot-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,232,0.72);
  margin-bottom: 10px;
}
.fk-nav-buy {
  display: block;
  padding: 11px 16px;
  background: #C11D6F;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.18s ease;
}
.fk-nav-buy:hover { background: #a51560; }

/* Desktop: Sidebar immer sichtbar, Content bekommt linken Rand + deutlich Luft */
@media (min-width: 1024px) {
  .fk-nav {
    transform: translateX(0);
  }
  .fk-nav-toggle,
  .fk-nav-overlay { display: none; }
  .fk-stage--with-nav .fk-content {
    margin-left: 380px;
    margin-right: 55px;
    padding-left: 34px;
    padding-right: 34px;
    max-width: none;
  }
}

@media (min-width: 1280px) {
  .fk-stage--with-nav .fk-content {
    margin-left: 420px;
    margin-right: 89px;
  }
}

@media (min-width: 1600px) {
  .fk-stage--with-nav .fk-content {
    margin-left: 460px;
    margin-right: 120px;
  }
}

/* ══════════════════════════════════════════════════════
   Lektion-Pattern: fk-lesson + fk-akt (Szene-Divider)
   Nur in Lektionen verwendet (nicht in Funke selbst).
   ══════════════════════════════════════════════════════ */
.fk-lesson {
  max-width: none;
  padding: 0;
  margin: 0;
}

.fk-akt {
  margin: 89px 0 34px 0;
  text-align: center;
}
.fk-akt:first-of-type { margin-top: 55px; }

.fk-akt-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F58FBC;
  margin-bottom: 13px;
  line-height: 1;
}
.fk-akt-title {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: #F5EDE8;
  margin: 0;
  letter-spacing: -0.3px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
