/* =========================================================
   DESIGN-TOKENS  –  hier zentral umbauen (Farben, Schrift…)
   ========================================================= */
:root {
  --bg:        #0a0b0f;   /* Haupt-Hintergrund (dunkel) */
  --bg-alt:    #101218;   /* abwechselnde Sektion */
  --surface:   #15181f;   /* Karten */
  --surface-2: #1c202a;   /* Karten hover / Borders */
  --text:      #f3f5f8;   /* Haupttext */
  --muted:     #9aa3b2;   /* gedämpfter Text */
  --accent:    #6e51a3;   /* Akzent (Pflaume, Richtung Indigo) – eigenständig, aber nah genug an Vertrauens-Blau */
  --accent-2:  #a68cd1;   /* zweiter Akzent (helles Lavendel) für Verläufe */
  --border:    rgba(255,255,255,.08);
  --radius:    18px;
  --maxw:      1180px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* =========================================================
   RESET / BASIS
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.narrow { max-width: 760px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .8rem 1.4rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 26px -8px var(--accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px var(--accent); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
/* Kurzform für den Unterseiten-Header-Button, siehe .subpage-header-Regeln
   unter RESPONSIVE – standardmäßig unsichtbar, nur auf schmalen Screens im
   Unterseiten-Header sichtbar. */
.btn-text-short { display: none; }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1rem 0; transition: background .3s, padding .3s, border-color .3s, top .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,11,15,.82);
  backdrop-filter: blur(14px);
  border-color: var(--border);
  padding: .6rem 0;
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
/* Logo: Kompass | BÖSING / TRADING & KAPITAL  (firmen-artige Wortmarke) */
.logo { font-family: var(--font-head); display: flex; align-items: center; gap: .65rem; white-space: nowrap; flex: none; }
.logo-divider { width: 1px; height: 26px; background: var(--border); flex: none; }
.logo-word { display: flex; flex-direction: column; line-height: 1.05; }
.logo-word-top { font-weight: 600; font-size: 1.12rem; letter-spacing: 4px; }
.logo-word-desc { font-family: var(--font-body); font-weight: 600; font-size: .58rem; letter-spacing: 3.5px; color: var(--muted); margin-top: 3px; }
/* Logo-Zeichen: MB-Monogramm, zweifarbig. Farben kommen aus --accent / --accent-2. */
.logo-mark {
  display: inline-flex; flex: none;
  width: 2.3em; height: 2.3em;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.nav { display: flex; gap: 1.8rem; margin-inline: auto; align-items: center; }
.nav a { color: var(--muted); font-weight: 500; font-size: .95rem; position: relative; transition: color .2s; white-space: nowrap; }
.nav .nav-cta { display: none; } /* nur im Handy-Menü */
.nav a:hover { color: var(--text); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--accent); transition: width .25s; }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; gap: .6rem; flex: none; }
.header-cta .btn { white-space: nowrap; }

/* Enge Desktops: Abstände verkleinern statt umbrechen */
@media (max-width: 1100px) {
  .nav { gap: 1.2rem; }
  .nav a { font-size: .9rem; }
  .logo-word-top { letter-spacing: 3px; font-size: 1.05rem; }
  .header-inner { gap: 1rem; }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  /* flex-direction:column + justify-content:center statt align-items:center:
     so ist die ganze Gruppe (Inhalt + "Weiterlesen") vertikal zentriert, und
     "Weiterlesen" fließt normal danach statt fix am unteren Rand zu kleben –
     das gab je nach Bildschirmhöhe zu wenig Abstand zum Inhalt darüber. */
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 0 4rem; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(110,81,163,.12), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(166,140,209,.10), transparent 55%),
    var(--bg);
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}

.eyebrow {
  display: inline-block; padding: .4rem .9rem; border-radius: 999px;
  background: rgba(110,81,163,.1); border: 1px solid rgba(110,81,163,.25);
  color: var(--accent); font-size: .82rem; font-weight: 600; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -1px; }
.grad { background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: 1.15rem; max-width: 38ch; margin: 1.4rem 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; flex-wrap: wrap; }
.stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--text); display: block; }
.stat small { color: var(--muted); font-size: .85rem; }

/* ---- Hero-Foto (klickbar → Story-Video) ---- */
.hero-photo {
  position: relative; display: block; width: 100%; max-width: 460px;
  aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface); padding: 0; cursor: pointer;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
  transition: transform .3s, box-shadow .3s;
}
.hero-photo:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -20px rgba(0,0,0,.8); }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 30%;
  display: block; filter: contrast(1.05);
  transition: transform .6s ease;
}
.hero-photo:hover img { transform: scale(1.03); }
/* Verlauf unten, damit die Bildunterschrift lesbar bleibt; leichte Akzent-Tönung bindet das S/W-Foto ins Design ein */
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,11,15,0) 45%, rgba(10,11,15,.92) 100%),
    linear-gradient(135deg, rgba(110,81,163,.10), transparent 60%);
  pointer-events: none;
}
.hero-photo-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(10,11,15,.55); border: 2px solid rgba(255,255,255,.7); color: #fff;
  font-size: 1.4rem; padding-left: 4px; backdrop-filter: blur(4px); z-index: 2;
  transition: background .2s, transform .2s;
}
.hero-photo:hover .hero-photo-play { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.06); }
.hero-photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.2rem 1.3rem;
  text-align: left; color: var(--text); font-family: var(--font-body);
}
.hero-photo-caption strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.hero-photo-caption small { display: block; color: var(--muted); font-size: .85rem; margin-top: .2rem; }

/* ---- Beweis-Videos ---- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.video-card {
  text-align: left; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0 0 1.4rem; cursor: pointer; color: var(--text);
  font-family: var(--font-body); overflow: hidden; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .25s, border-color .25s;
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(110,81,163,.4); }
.video-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
/* YouTube-Thumbnails sind rot/plakativ – hier abgedämpft (S/W, etwas dunkler),
   damit sie zum Hero-Foto passen. Beim Hover kommt leicht Farbe zurück. */
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(.95) brightness(.8);
  transition: transform .5s, filter .4s;
}
.video-thumb::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(110,81,163,.18), rgba(10,11,15,.25));
}
.video-card:hover .video-thumb img { transform: scale(1.04); filter: grayscale(.6) contrast(1) brightness(.9); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(10,11,15,.6); border: 2px solid rgba(255,255,255,.7); color: #fff; padding-left: 3px;
  transition: background .2s;
}
.video-card:hover .video-play { background: var(--accent); border-color: var(--accent); }
.video-tag {
  margin: .9rem 1.3rem 0; align-self: flex-start;
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent);
}
.video-card strong { font-family: var(--font-head); font-size: 1.05rem; line-height: 1.3; margin: 0 1.3rem; }
.video-card small { color: var(--muted); font-size: .9rem; margin: 0 1.3rem; }

/* ---- Video-Lightbox ---- */
.video-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(5,6,9,.88); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.video-overlay.open { display: flex; }
.video-modal { position: relative; width: min(100%, 1000px); }
.video-close { top: -46px; right: 0; }
.video-frame { aspect-ratio: 16 / 9; background: #000; border-radius: 14px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.9); }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-fallback { text-align: center; margin-top: .8rem; font-size: .85rem; }
.video-fallback a { color: var(--muted); border-bottom: 1px solid var(--border); }
.video-fallback a:hover { color: var(--accent); border-color: var(--accent); }

/* ---- Animierte Chart-Karte (nicht mehr im HTML, CSS bleibt für den Fall) ---- */
.hero-visual { display: flex; justify-content: center; }
.chart-card {
  width: 100%; max-width: 420px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.chart-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.dot-row { display: flex; gap: 6px; }
.dot-row i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-2); display: block; }
.chart-pair { color: var(--accent); font-size: .8rem; font-weight: 600; }
.chart-svg { width: 100%; height: 150px; }
.chart-line { filter: drop-shadow(0 0 6px rgba(110,81,163,.5)); }
.chart-dot { fill: var(--accent); filter: drop-shadow(0 0 8px var(--accent)); }
.candles { display: flex; align-items: flex-end; gap: 6px; height: 46px; margin-top: .8rem; }
.candles .candle { flex: 1; border-radius: 2px; transform-origin: bottom; animation: candle 2.4s ease-in-out infinite; }
.candles .up   { background: var(--accent); }
.candles .down { background: #ff5d6c; }
@keyframes candle { 0%,100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }

/* ---- Schwebende Figuren ---- */
.floaties { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.floaty { position: absolute; opacity: .55; animation: drift 11s ease-in-out infinite; }
.floaty--ring     { top: 18%; left: 8%;  width: 70px; height: 70px; border: 3px solid var(--accent); border-radius: 50%; }
.floaty--triangle { top: 64%; left: 14%; width: 0; height: 0; border-left: 22px solid transparent; border-right: 22px solid transparent; border-bottom: 38px solid var(--accent-2); animation-duration: 9s; }
.floaty--square   { top: 30%; right: 10%; width: 46px; height: 46px; border: 3px solid var(--accent-2); border-radius: 8px; animation-duration: 13s; }
.floaty--dot      { top: 78%; right: 18%; width: 18px; height: 18px; background: var(--accent); border-radius: 50%; animation-duration: 8s; }
.floaty--cross    { top: 12%; right: 30%; color: var(--accent); font-size: 2.4rem; font-weight: 700; animation-duration: 10s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33%     { transform: translate(18px,-26px) rotate(120deg); }
  66%     { transform: translate(-16px,16px) rotate(240deg); }
}

.scroll-hint {
  margin-top: 2.6rem; text-align: center;
  color: var(--muted); font-size: .8rem; z-index: 2; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-hint::after { content: ''; display: block; width: 1px; height: 26px; margin: .4rem auto 0; background: var(--muted); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .2; transform: scaleY(.4); } 50% { opacity: 1; transform: scaleY(1); } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-section { padding: 2.6rem 0; background: var(--bg-alt); border-block: 1px solid var(--border); }
.marquee-label { text-align: center; color: var(--muted); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 4rem; width: max-content; animation: scrollX 22s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #5b6472; letter-spacing: 1px; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 6rem 0; }
.section--alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.4rem; }
.kicker { color: var(--accent); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: 1.5px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .6rem 0 .8rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---- Features ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.6rem; transition: transform .25s, border-color .25s, background .25s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(110,81,163,.4); background: var(--surface-2); }
.feature-ico { font-size: 2rem; width: 60px; height: 60px; display: grid; place-items: center; background: rgba(110,81,163,.1); border-radius: 14px; margin-bottom: 1.2rem; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .98rem; }

/* ---- Angebot: Für wen + Preis-Block ---- */
.inline-link { color: var(--accent); border-bottom: 1px solid rgba(110,81,163,.4); transition: border-color .2s; }
.inline-link:hover { border-color: var(--accent); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.4rem; }
.who-col {
  border-radius: var(--radius); padding: 1.6rem;
  background: rgba(110,81,163,.06); border: 1px solid rgba(110,81,163,.25);
}
.who-col h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.who-col p { color: var(--muted); }
.price-note {
  margin-top: 2.4rem; text-align: center; max-width: 720px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.4rem 2rem;
}
.price-note h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.price-note > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem; }
.price-note strong { color: var(--text); }
.price-note .hero-actions { justify-content: center; }

/* ---- Stats-Band ---- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-big .num { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--accent); display: block; }
.stat-big small { color: var(--muted); }

/* ---- Carousel ---- */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.quote-card {
  flex: 0 0 100%; max-width: 720px; margin: 0 auto; text-align: center; padding: 2.4rem 2rem;
}
.quote-card p { font-size: 1.4rem; font-family: var(--font-head); font-weight: 500; line-height: 1.4; }
.quote-card figcaption { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: 1.6rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--bg); font-weight: 700; }
/* Echtes Foto statt Kürzel: gleiche Größe/Form, nur mit object-fit statt Text-Zentrierung */
img.avatar { object-fit: cover; display: block; flex: none; }
.quote-card figcaption strong { display: block; }
.quote-card figcaption small { color: var(--muted); }
.carousel-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.carousel-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 1.4rem; cursor: pointer; transition: .2s; }
.carousel-nav button:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ---- Gründer ---- */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
.founder-photo img {
  aspect-ratio: 4 / 5; max-width: 380px; width: 100%; margin: 0 auto; border-radius: 24px;
  object-fit: cover; object-position: 62% 30%;
  border: 1px solid var(--border); box-shadow: 0 30px 60px -24px rgba(0,0,0,.7);
}
.founder-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .5rem 0 1rem; }
.founder-text p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.6rem; }

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 0 1.4rem; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.2rem 0; font-weight: 600; font-family: var(--font-head); display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 1.5rem; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 1.2rem; }

/* ---- CTA-Band ---- */
.cta-band {
  padding: 5rem 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(110,81,163,.18), transparent 70%), var(--bg);
  text-align: center;
}
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .8rem; }
.cta-inner p { color: var(--muted); font-size: 1.15rem; margin-bottom: 2rem; }
/* Ablauf in 3 Schritten im Abschluss-CTA */
.cta-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 900px; margin: 0 auto 2.2rem; text-align: left;
}
.cta-steps > div {
  display: grid; grid-template-columns: auto 1fr; column-gap: .9rem; align-items: start;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem 1.2rem;
}
.cta-steps span {
  grid-row: 1 / span 2; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.cta-steps strong { font-family: var(--font-head); font-size: 1rem; }
.cta-steps small { color: var(--muted); font-size: .88rem; line-height: 1.4; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 4rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { color: var(--muted); margin-top: 1rem; max-width: 32ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 { margin-bottom: 1rem; font-size: 1rem; }
.footer-cols a { display: block; color: var(--muted); padding: .3rem 0; transition: color .2s; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.6rem 0; border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; }

/* =========================================================
   PSYCHOLOGIE-BAUSTEINE  (persuasive Komponenten)
   ========================================================= */

/* ---- Topbar: Social Proof ganz oben ---- */
.topbar {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff; text-align: center; font-size: .82rem; font-weight: 600;
  padding: .5rem 1rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap;
}
.topbar strong { font-weight: 800; }
.topbar-sep { opacity: .6; }
/* Kurzform für sehr schmale Screens, siehe RESPONSIVE weiter unten –
   standardmäßig unsichtbar, damit auf schmalen Handys noch Reserve bleibt. */
.topbar-text-short { display: none; }
/* Header rückt unter die Topbar – aber nur ganz oben.
   Sobald gescrollt wird, springt er an die Oberkante (top: 0),
   sonst klebt er 34px unter dem Rand, weil die Topbar wegscrollt. */
.site-header { top: 0; }
/* --topbar-h setzt script.js aus der echten Höhe (auf dem Handy bricht die Leiste um) */
.topbar + .site-header { top: var(--topbar-h, 34px); }
.topbar + .site-header.scrolled { top: 0; }

/* ---- Micro-Trust unter Buttons (Risiko-Umkehr) ---- */
.micro-trust { color: var(--muted); font-size: .85rem; margin-top: 1rem; }

/* ---- Schmerz-Liste (Problem-Agitation) ---- */
.pain-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.pain-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: 12px; padding: 1.1rem 1.3rem;
}
.pain-x { color: var(--accent); font-weight: 800; font-size: 1.1rem; line-height: 1.5; }
.pain-item p { margin: 0; color: var(--text); }
.pain-turn {
  margin-top: 2rem; text-align: center; font-size: 1.25rem;
  font-family: var(--font-head); font-weight: 500; line-height: 1.5;
}

/* ---- 3-Schritte-Weg ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.4rem 1.6rem 1.8rem; transition: transform .25s, border-color .25s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(110,81,163,.4); }
.step-num {
  position: absolute; top: -22px; left: 1.6rem;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px -8px var(--accent);
}
.step-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step-card p { color: var(--muted); }

/* ---- Geschenk-Box (Reziprozität) ---- */
.give-box {
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 2.4rem; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.6rem;
  background-image: radial-gradient(500px 200px at 100% 0%, rgba(110,81,163,.10), transparent 70%);
}
.give-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: .5rem 0 .9rem; }
.give-text p { color: var(--muted); margin-bottom: 1.6rem; }
.give-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.give-list li { position: relative; padding-left: 1.8rem; color: var(--text); }
.give-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ---- Beweis-Hinweis ---- */
.proof-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 1.6rem; max-width: 60ch; margin-inline: auto; }

/* ---- Vergleich (Kontrast-Prinzip) ---- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
/* Beide Spalten sind per Grid gleich hoch, auch wenn der Text unterschiedlich
   lang ist (unterschiedlich viele Zeilen pro Punkt) – die Einträge deshalb
   über die volle Höhe verteilen, statt sie oben zu klumpen und unten Leerraum
   entstehen zu lassen. */
.compare-col { border-radius: var(--radius); padding: 1.8rem 1.6rem; border: 1px solid var(--border); display: flex; flex-direction: column; }
.compare-col h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; flex: 1; justify-content: space-between; }
.compare-col li { position: relative; padding-left: 1.7rem; color: var(--muted); }
.compare-bad { background: var(--surface); }
.compare-bad li::before { content: '✕'; position: absolute; left: 0; color: #ff5d6c; font-weight: 800; }
.compare-good { background: rgba(110,81,163,.06); border-color: rgba(110,81,163,.35); }
.compare-good li { color: var(--text); }
.compare-good li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ---- Gründer-Signatur ---- */
.founder-sign { font-family: var(--font-head); font-style: italic; color: var(--text) !important; margin-bottom: 1.6rem !important; }

/* ---- Verfügbarkeits-Badge ---- */
/* Bewusst ruhig statt rot: keine künstliche Dringlichkeit, nur eine ehrliche
   Statusangabe. Der frühere rote "Knappheits"-Badge wurde entfernt. */
.availability-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: 1.2rem; padding: .45rem 1rem; border-radius: 999px;
  background: rgba(110,81,163,.1); border: 1px solid rgba(110,81,163,.3);
  color: var(--accent); font-size: .85rem; font-weight: 600;
}
.availability-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #2ecc8a;
  box-shadow: 0 0 0 3px rgba(46,204,138,.2);
}

/* ---- Trust-Badges (externe Bewertungen) ---- */
.trust-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: .8rem 1.4rem; min-width: 150px;
}
.trust-stars { color: #ffc24b; letter-spacing: 2px; font-size: .9rem; }
.trust-meta { color: var(--muted); font-size: .85rem; }
.trust-meta strong { color: var(--text); }
.trust-link { color: var(--accent); font-size: .8rem; font-weight: 600; margin-top: .2rem; }
a.trust-badge { transition: border-color .2s, transform .2s; }
a.trust-badge:hover { border-color: rgba(110,81,163,.5); transform: translateY(-2px); }

/* Zahlenband mit drei Werten */
.stats-band--3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }

/* ---- "Verifiziert"-Marker auf Testimonials ---- */
.verified {
  display: inline-block; margin-bottom: .8rem; font-size: .78rem; font-weight: 600;
  color: var(--accent); background: rgba(110,81,163,.1); border: 1px solid rgba(110,81,163,.3);
  padding: .25rem .7rem; border-radius: 999px;
}

/* ---- Pratfall / Ehrlichkeits-Block ---- */
.honesty { text-align: center; }
.honesty-lead { color: var(--muted); font-size: 1.1rem; margin: .6rem auto 2rem; max-width: 50ch; }
.honesty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; text-align: left; }
.honesty-col { border-radius: var(--radius); padding: 1.8rem 1.6rem; border: 1px solid var(--border); }
.honesty-col h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.honesty-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.honesty-col li { position: relative; padding-left: 1.7rem; }
.honesty-no { background: var(--surface); }
.honesty-no li { color: var(--muted); }
.honesty-no li::before { content: '✕'; position: absolute; left: 0; color: #ff5d6c; font-weight: 800; }
.honesty-yes { background: rgba(110,81,163,.06); border-color: rgba(110,81,163,.35); }
.honesty-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* =========================================================
   SPRACH-BADGE
   Bewusst KEIN Vollbild-Overlay: verdeckt nichts vom Seiteninhalt, damit es
   nicht als "Intrusive Interstitial" fürs Mobile-Ranking zählt. Schwebt
   dezent in der Ecke, öffnet auf Klick ein kleines Popover.
   ========================================================= */
.lang-badge-wrap {
  position: fixed; left: 1.1rem; bottom: 1.1rem; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-start; gap: .6rem;
}
.lang-badge {
  display: flex; align-items: center; gap: .4rem; padding: .5rem .95rem;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 14px 30px -12px rgba(0,0,0,.6);
  transition: transform .2s, border-color .2s;
}
.lang-badge span { font-size: 1.1rem; }
.lang-badge:hover { transform: translateY(-2px); border-color: rgba(110,81,163,.5); }
.lang-badge-popover {
  position: relative; width: min(260px, 78vw); background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.6rem 1rem 1.1rem;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.7); animation: quizIn .25s cubic-bezier(.2,.8,.2,1);
}
.lang-badge-popover[hidden] { display: none; }
.lang-badge-popover p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.45; }
.lang-badge-close {
  position: absolute; top: .5rem; right: .5rem; width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  font-size: .68rem; cursor: pointer; transition: .2s;
}
.lang-badge-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =========================================================
   WHATSAPP-WIDGET
   Gleiches "kein Overlay"-Prinzip wie beim Sprach-Badge, nur rechts statt
   links, mit dem WhatsApp-typischen Grün statt dem Seiten-Akzent.
   ========================================================= */
.wa-widget-wrap {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: .6rem;
}
.wa-badge {
  position: relative; width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--surface); padding: 0; cursor: pointer; background: none;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.6); transition: transform .2s;
  animation: waBob 2s ease-in-out infinite;
}
/* Dezentes Auf-Ab, damit der Button auffällt – bewusst NUR hier, nicht beim
   Sprach-Badge: das ist reine Utility, die keine Aufmerksamkeit braucht, und
   zwei gleichzeitig wackelnde Ecken würden unruhig wirken. Pausiert bei
   Hover/offenem Popover, damit es sich nicht mit der Hub-Bewegung beißt. */
@keyframes waBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.wa-badge img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.wa-badge:hover, .wa-badge[aria-expanded="true"] { animation-play-state: paused; transform: translateY(-2px); }
.wa-badge-icon {
  position: absolute; bottom: -2px; right: -2px; width: 22px; height: 22px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; font-size: .72rem;
  border: 2px solid var(--bg);
}
.wa-popover {
  position: relative; width: min(280px, 80vw); background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.1rem;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.7); animation: quizIn .25s cubic-bezier(.2,.8,.2,1);
}
.wa-popover[hidden] { display: none; }
.wa-popover-close {
  position: absolute; top: .5rem; right: .5rem; width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  font-size: .68rem; cursor: pointer; transition: .2s;
}
.wa-popover-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.wa-popover-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; padding-right: 1.2rem; }
.wa-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.wa-popover-head strong { display: block; font-size: .92rem; }
.wa-popover-head small { color: var(--muted); font-size: .76rem; }
.wa-preview {
  background: var(--surface-2); border-radius: 10px; padding: .65rem .8rem;
  font-size: .82rem; color: var(--text); line-height: 1.45; margin-bottom: .9rem;
}
.wa-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #25d366; color: #fff; font-weight: 600; font-size: .88rem;
  padding: .7rem 1rem; border-radius: 10px; text-decoration: none; transition: filter .2s;
}
.wa-cta:hover { filter: brightness(1.08); }

/* =========================================================
   QUIZ-FUNNEL (Modal)
   ========================================================= */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(5,6,9,.78); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.quiz-overlay.open { display: flex; }
.quiz-modal {
  position: relative; width: min(100%, 560px);
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 2.4rem 2rem 2rem; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
  animation: quizIn .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes quizIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.quiz-close {
  position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  cursor: pointer; font-size: 1rem; transition: .2s;
}
.quiz-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.quiz-progress { height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; margin-bottom: 1.8rem; }
.quiz-progress-bar { display: block; height: 100%; width: 20%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .4s ease; }

.quiz-step { display: none; animation: quizFade .3s ease; }
.quiz-step.is-active { display: block; }
@keyframes quizFade { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.quiz-kicker { color: var(--accent); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; }
.quiz-step h3 { font-size: 1.4rem; margin: .6rem 0 1.4rem; line-height: 1.3; }

.quiz-options { display: flex; flex-direction: column; gap: .7rem; }
.quiz-opt {
  text-align: left; padding: 1rem 1.2rem; border-radius: 12px; cursor: pointer;
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--text);
  font-size: 1rem; font-family: var(--font-body); transition: .18s;
}
.quiz-opt:hover { border-color: var(--accent); background: rgba(110,81,163,.08); transform: translateX(4px); }

.quiz-result { text-align: center; }
.quiz-result-ico, .quiz-thanks .quiz-result-ico {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.8rem; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.quiz-result p, .quiz-thanks p { color: var(--muted); margin-bottom: 1.4rem; }
.quiz-commit {
  color: var(--text) !important; font-weight: 500;
  background: rgba(110,81,163,.08); border: 1px solid rgba(110,81,163,.3);
  border-radius: 12px; padding: .9rem 1.1rem; font-size: .95rem;
}
.quiz-commit:empty { display: none; }
.quiz-form { display: flex; flex-direction: column; gap: .8rem; }
.quiz-form input {
  padding: .9rem 1.1rem; border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg-alt); color: var(--text); font-size: 1rem; font-family: var(--font-body);
}
.quiz-form input:focus { outline: none; border-color: var(--accent); }
.quiz-form .micro-trust { text-align: center; margin-top: .2rem; }
.quiz-later {
  margin-top: 1.2rem; background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: .9rem; font-family: var(--font-body);
  text-decoration: underline; text-underline-offset: 3px;
}
.quiz-later:hover { color: var(--text); }

/* =========================================================
   SCROLL-REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  /* Unterseiten-Header hat keinen Hamburger (keine Anker-Navigation nötig) –
     der CTA-Button bleibt hier also immer sichtbar, und das Logo schrumpft
     nie (.logo { flex: none }). Damit beides trotzdem in eine Zeile passt:
     nur das MB-Icon zeigen (Schriftzug weg) und den Button-Text kürzen. */
  .subpage-header .logo-divider, .subpage-header .logo-word { display: none; }
  .subpage-header .btn-text-full { display: none; }
  .subpage-header .btn-text-short { display: inline; }
  /* Sicherheitsnetz für sehr schmale Screens / große Systemschrift: lieber
     sauber umbrechen als überlaufen, falls es trotzdem eng wird. */
  .subpage-header .header-inner { flex-wrap: wrap; row-gap: .7rem; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-alt); padding: 1.2rem 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border);
  }
  .nav.open a { font-size: 1.05rem; }
  .nav.open .nav-cta { display: inline-flex; margin-top: .4rem; color: #fff; }
  .nav.open .nav-cta::after { display: none; }
  /* minmax(0,1fr) statt 1fr: sonst weitet der breiteste Button die Spalte über den Viewport hinaus */
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  /* Badge über der Hero-Headline mittig, der übrige Hero-Text bleibt linksbündig */
  .eyebrow { display: block; width: fit-content; margin-inline: auto; text-align: center; }
  .btn { white-space: normal; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { order: -1; }
  .hero-photo { max-width: 340px; aspect-ratio: 1; }
  .video-grid { grid-template-columns: 1fr; }
  .video-close { top: -46px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band--3 { grid-template-columns: 1fr; gap: 2rem; }
  .founder { grid-template-columns: 1fr; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  /* Persuasive Bausteine umbrechen */
  .steps { grid-template-columns: 1fr; }
  .step-num { left: 1.6rem; }
  .give-box { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .cta-steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .honesty-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr; }
  /* Topbar auf einer Zeile halten: Google-Bewertungen samt Trenner ausblenden,
     "Trader seit 2005 · Ex-institutioneller Trader" bleibt stehen – gekürzt,
     damit auch noch kleinere Handys Reserve haben. */
  .topbar span:nth-child(4), .topbar span:nth-child(5) { display: none; }
  .topbar-text-full { display: none; }
  .topbar-text-short { display: inline; }
  .topbar { font-size: .78rem; }
  .hero-stats { gap: 1.4rem; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   WISSEN-BEREICH  (Unterseiten: /wissen/…)
   PSYCHOLOGIE: Echte Reziprozität statt Lead-Magnet – Wissen
   und Material sind komplett frei zugänglich, keine E-Mail,
   keine Paywall. Das Vertrauen entsteht dadurch, dass hier
   etwas ohne Gegenleistung gegeben wird, nicht behauptet wird.
   ========================================================= */

/* ---- schlanker Unterseiten-Header (keine Anker-Navigation, da die
   Sektionen der Startseite von hier aus nicht existieren).
   position:static überschreibt bewusst das "position:fixed" von
   .site-header: ohne script.js gibt es hier keinen Scroll-Effekt, und
   ein fixierter Header würde den Inhalt darunter sonst verdecken. ---- */
.subpage-header {
  position: static;
  padding: 1.2rem 0; border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.subpage-header .header-inner { justify-content: space-between; }
.breadcrumb { padding: 1.6rem 0 0; color: var(--muted); font-size: .88rem; }
.breadcrumb a { color: var(--muted); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.breadcrumb a:hover { color: var(--accent); border-color: var(--accent); }
.breadcrumb span { margin: 0 .4rem; opacity: .5; }

/* ---- Übersicht /wissen/ ---- */
.knowledge-hero { padding: 3.5rem 0 1rem; text-align: center; }
.knowledge-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .6rem 0 .9rem; }
.knowledge-hero p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin-inline: auto; }
.knowledge-promise {
  display: inline-flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.4rem; padding: .6rem 1.1rem; border-radius: 999px;
  background: rgba(110,81,163,.08); border: 1px solid rgba(110,81,163,.28);
  color: var(--text); font-size: .88rem;
}
.knowledge-promise strong { color: var(--accent); }

.knowledge-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  padding: 3rem 0 5rem;
}
.knowledge-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  color: var(--text); transition: transform .25s, border-color .25s;
}
.knowledge-card:hover { transform: translateY(-6px); border-color: rgba(110,81,163,.4); }
.knowledge-card-thumb {
  aspect-ratio: 16/9; background: var(--surface-2); position: relative; overflow: hidden;
  display: grid; place-items: center; color: var(--muted); font-size: .85rem;
}
.knowledge-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(.95) brightness(.8);
  transition: transform .5s, filter .4s;
}
.knowledge-card-thumb::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(110,81,163,.18), rgba(10,11,15,.25));
}
.knowledge-card:hover .knowledge-card-thumb img { transform: scale(1.04); filter: grayscale(.6) contrast(1) brightness(.9); }
.knowledge-card-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(10,11,15,.6); border: 2px solid rgba(255,255,255,.7); color: #fff; padding-left: 3px;
  transition: background .2s;
}
.knowledge-card:hover .knowledge-card-play { background: var(--accent); border-color: var(--accent); }
.knowledge-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.knowledge-card-tag { color: var(--accent); font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }
.knowledge-card h3 { font-size: 1.1rem; line-height: 1.35; }
.knowledge-card p { color: var(--muted); font-size: .92rem; flex: 1; }
.knowledge-card-link { color: var(--accent); font-size: .9rem; font-weight: 600; margin-top: .4rem; }

/* ---- Detailseite eines Wissensbeitrags ---- */
.knowledge-article { padding: 3rem 0 5rem; }
.knowledge-article-head { max-width: 760px; margin: 0 auto 2.4rem; text-align: center; }
.knowledge-article-head h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: .6rem 0 .8rem; }
.knowledge-article-head p { color: var(--muted); font-size: 1.08rem; }

/* Artikel-Video: Klick-zum-Laden-Thumbnail, das sich per JS inline durch das
   echte YouTube-iframe ersetzt (kein Popup, das Video ist der Hauptinhalt). */
.article-video {
  position: relative; display: block; width: 100%; max-width: 860px; margin: 0 auto 2.6rem;
  aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: #000;
  border: 1px solid var(--border); padding: 0; cursor: pointer;
}
/* Gleiche Tönung wie .video-thumb auf der Startseite: YouTube-Thumbnails sind
   rot/plakativ, hier abgedämpft (S/W, Lila-Verlauf), damit sie ins Design
   passen statt fremd zu wirken. Beim Hover kommt leicht Farbe zurück. */
.article-video img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(.95) brightness(.8);
  transition: transform .5s, filter .4s;
}
.article-video::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(110,81,163,.18), rgba(10,11,15,.25));
}
.article-video:hover img { transform: scale(1.03); filter: grayscale(.6) contrast(1) brightness(.9); }
.article-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(0,0,0,.55); border: 2px solid rgba(255,255,255,.85); color: #fff;
  font-size: 1.5rem; transition: background .2s, border-color .2s, transform .2s;
}
.article-video:hover .article-video-play { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.06); }
.article-video iframe { width: 100%; height: 100%; border: 0; display: block; }

.knowledge-body { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.4rem; }
.takeaway-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem 2rem;
}
.takeaway-box h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.takeaway-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.takeaway-list li { position: relative; padding-left: 1.7rem; color: var(--text); }
.takeaway-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ---- Material zum Selbststudium: bewusst OHNE Formular/E-Mail,
   direkt auf der Seite lesbar und über den Browser druckbar ---- */
.material-box {
  background: rgba(110,81,163,.06); border: 1px solid rgba(110,81,163,.3); border-radius: var(--radius);
  padding: 1.8rem 2rem;
}
.material-box h2 { font-size: 1.2rem; margin-bottom: .3rem; }
.material-box .material-note { color: var(--muted); font-size: .88rem; margin-bottom: 1.3rem; }
.material-checklist { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.material-checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text); }
.material-checklist input[type="checkbox"] { margin-top: .3rem; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.material-print {
  margin-top: 1.4rem; background: none; border: 1px solid var(--border); color: var(--muted);
  padding: .6rem 1rem; border-radius: 999px; font-size: .85rem; cursor: pointer; transition: .2s;
}
.material-print:hover { border-color: var(--accent); color: var(--accent); }

.knowledge-cta {
  text-align: center; padding: 2.2rem 2rem; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--border);
}
.knowledge-cta p { color: var(--muted); margin: .6rem 0 1.3rem; }

@media (max-width: 900px) {
  .knowledge-grid { grid-template-columns: 1fr; }
}
@media print {
  .subpage-header, .site-footer, .knowledge-cta, .material-print, .article-video { display: none !important; }
  body { background: #fff; color: #000; }
  .material-box { border-color: #000; background: none; }
}

/* ---- Sonderpunkt: vertiefende Erklärung mit Diagrammen (innerhalb eines Beitrags) ---- */
.special-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem 2rem;
}
.special-box h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.special-box p { color: var(--text); margin-bottom: 1rem; line-height: 1.7; }
.special-box p:last-of-type { margin-bottom: 0; }
.special-box h3 { font-size: 1.02rem; color: var(--accent); margin: 2.4rem 0 .8rem; font-family: var(--font-head); }
.special-box h3:first-of-type { margin-top: 0; }

/* Größere Variante: mehr Luft, etwas größere Schrift, für Beiträge, die
   bewusst nach "mehr" aussehen sollen. */
.special-box--lg { padding: 2.3rem 2.4rem 2.6rem; }
.special-box--lg h2 { font-size: 1.4rem; }
.special-box--lg p { font-size: 1.03rem; }
.entry-diagram--lg { padding: 1.6rem 1.4rem 1rem; }

/* Preis-Diagramm (Primary- vs. Secondary-Entry) */
.entry-diagram {
  margin: 1.8rem 0 .6rem; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.2rem 1rem .6rem;
}
.entry-diagram svg { width: 100%; height: auto; display: block; }
.diagram-caption { color: var(--muted); font-size: .85rem; text-align: center; margin: .9rem 0 1rem; }

/* Verhaltensablauf: Signal → Reaktion, zweimal gegenübergestellt.
   Grid statt Flex: so bekommt jede Spalte (Label, Schritt 1, Pfeil, Schritt 2,
   Pfeil, Schritt 3) über beide Zeilen hinweg dieselbe Breite, auch wenn der
   Text pro Zeile unterschiedlich lang ist – keine wackeligen Boxbreiten mehr. */
.behavior-flow {
  display: grid;
  grid-template-columns: 108px repeat(5, auto);
  align-items: center;
  column-gap: .6rem;
  row-gap: 1.1rem;
  margin: 1.2rem 0 .9rem;
}
.behavior-row { display: contents; }
.behavior-row-label { font-weight: 700; font-size: .85rem; font-family: var(--font-head); }
.behavior-row.is-impulsive .behavior-row-label { color: #ff5d6c; }
.behavior-row.is-patient .behavior-row-label { color: var(--accent); }
.behavior-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: .55rem .9rem; font-size: .87rem; color: var(--text); white-space: nowrap;
  text-align: center;
}
.behavior-row.is-impulsive .behavior-step.is-outcome {
  border-color: rgba(255,93,108,.5); background: rgba(255,93,108,.08); color: #ff5d6c; font-weight: 600;
}
.behavior-row.is-patient .behavior-step.is-outcome {
  border-color: rgba(110,81,163,.5); background: rgba(110,81,163,.08); color: var(--accent); font-weight: 600;
}
.behavior-arrow { color: var(--muted); justify-self: center; }
@media (max-width: 640px) {
  .behavior-flow { grid-template-columns: 1fr; row-gap: .5rem; }
  .behavior-row-label { margin-top: .6rem; }
  .behavior-step { white-space: normal; text-align: left; }
  .behavior-arrow { justify-self: flex-start; padding-left: .1rem; }
}

/* Trichter-Grafik: veranschaulicht den Filter-Effekt, bewusst als "beispielhaft"
   markiert – keine echten, verifizierten Zahlen. */
.funnel { display: flex; align-items: stretch; justify-content: center; gap: .5rem; margin: 1.4rem 0 1.2rem; flex-wrap: wrap; }
.funnel-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 1rem 1.1rem; text-align: center; min-width: 112px; flex: 1 1 0;
  display: flex; flex-direction: column; justify-content: center;
}
.funnel-step strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--text); }
.funnel-step small { color: var(--muted); font-size: .78rem; }
.funnel-step.is-final { border-color: rgba(110,81,163,.45); background: rgba(110,81,163,.08); }
.funnel-step.is-final strong { color: var(--accent); }
.funnel-arrow { color: var(--muted); font-size: 1.3rem; flex: none; align-self: center; }

/* kleine Autorenzeile mit Foto am Ende des Sonderpunkts */
.special-photo {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem; padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.special-photo img {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover; object-position: 62% 25%;
  flex: none; border: 1px solid var(--border);
}
.special-photo strong { display: block; font-family: var(--font-head); color: var(--text); font-size: .98rem; }
.special-photo span { color: var(--muted); font-size: .88rem; }

@media (max-width: 560px) {
  .funnel-step { min-width: 100px; padding: .8rem 1rem; }
}

/* Material: die 3 Beispiele aus dem Video, je Beispiel Primary- und
   Secondary-Entry-Bild nebeneinander gegenübergestellt. */
.material-examples { display: flex; flex-direction: column; gap: 1.6rem; margin: 1.4rem 0 1.6rem; }
.material-example {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.1rem 1.3rem;
}
.material-example h3 { font-size: 1rem; margin-bottom: .8rem; color: var(--text); }
.material-example-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.material-example-imgs figure { margin: 0; }
.material-example-imgs img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: contain; display: block;
  background: #fff; border-radius: 10px; border: 1px solid var(--border);
}
.material-example-imgs figcaption {
  text-align: center; color: var(--muted); font-size: .82rem; font-weight: 600; margin-top: .5rem;
}
.material-example-imgs figure:first-child figcaption { color: #ff5d6c; }
.material-example-imgs figure:last-child figcaption { color: var(--accent); }
@media (max-width: 560px) {
  .material-example-imgs { grid-template-columns: 1fr; }
}
