/* ============================================================
   BONANTE ACADEMY — Homepage Styles (Relaunch v1)
   Monochrom-Editorial · roter Primär-CTA · Instrument Serif + Hanken
   Mobil-robust: Grid→Stack, min-width:0, word-break.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  counter-reset: sect;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
p { overflow-wrap: break-word; }
::selection { background: var(--ink-900); color: var(--white); }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; border-radius: 2px; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-inline: var(--gutter); }

/* ---- Display / Editorial ---- */
.display {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  color: var(--text-primary);
}
.display em, em.fx-italic { font-family: var(--font-display); font-style: italic; font-weight: var(--weight-regular); }

.eyebrow {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 18px;
}
.eyebrow--center { text-align: center; }
.stars { color: var(--ink-900); letter-spacing: 1px; }

/* ---- Section heads (editorial, links-bündig, mit Index-Nummer) ---- */
.section-head { max-width: 760px; margin: 0 0 clamp(40px,6vw,64px); text-align: left; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head h2 { font-size: clamp(32px, 5vw, 56px); margin: 0; }
.section-head__sub { margin: 18px 0 0; max-width: 56ch; color: var(--text-secondary); font-size: var(--text-body-l); }
.section-head .eyebrow { display: inline-flex; align-items: baseline; gap: 12px; }
.section-head .eyebrow::before { counter-increment: sect; content: counter(sect, decimal-leading-zero); color: var(--text-muted); letter-spacing: 0.1em; }

/* ---- Glass ---- */
.glass { background: rgba(255,255,255,0.62); -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%); border: 1px solid rgba(255,255,255,0.7); color: var(--ink-900); }
.glass-dark { background: rgba(12,12,14,0.4); -webkit-backdrop-filter: blur(18px) saturate(135%); backdrop-filter: blur(18px) saturate(135%); border: 1px solid rgba(255,255,255,0.18); color: var(--white); }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 30px;
  font-family: var(--font-label); font-size: 11.5px; font-weight: var(--weight-semibold);
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; white-space: nowrap;
  border-radius: var(--radius-pill); border: 1px solid transparent; cursor: pointer;
  transition: background var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}
.btn:active { transform: scale(0.985); }
.btn--sm { height: 42px; padding: 0 22px; font-size: 10.5px; }
.btn--lg { height: 58px; padding: 0 38px; font-size: 12px; }
.btn--full { width: 100%; }
.btn--primary { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--ink-700); border-color: var(--ink-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--text-secondary); border-color: var(--border-default); }
.btn--ghost:hover { color: var(--ink-900); border-color: var(--ink-900); }
.btn--secondary { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--secondary:hover { background: var(--ink-900); color: var(--white); }
.btn--glass { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.45); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn--glass:hover { background: rgba(255,255,255,0.22); border-color: var(--white); }

/* Signatur-CTA: monochrom, mit Pfeil-Kreis (kein Gold/Glow mehr) */
.btn--glow { position: relative; z-index: 0; }
.btn--lg.btn--glow::before {
  content: "\2192"; order: 1; flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--white); color: var(--ink-900);
  font-size: 15px; line-height: 1; transition: transform var(--duration-base) var(--ease-out);
}
.btn--lg.btn--glow:hover::before { transform: translateX(3px); }

/* CTA invertiert auf dunklem Grund: weiß auf Hero-Video / Ink-Sektionen / Rechner-Result-Panel */
.hero .btn--primary, .section--ink .btn--primary, .calc__result .btn--primary {
  background: var(--white); color: var(--ink-900); border-color: var(--white);
}
.hero .btn--primary:hover, .section--ink .btn--primary:hover, .calc__result .btn--primary:hover {
  background: var(--gray-100); border-color: var(--gray-100);
}
.hero .btn--lg.btn--glow::before, .section--ink .btn--lg.btn--glow::before, .calc__result .btn--lg.btn--glow::before {
  background: var(--ink-900); color: var(--white);
}

/* Nav-CTA adaptiv: weiß über dem Hero, schwarz sobald die Leiste solid wird */
.topbar:not(.is-solid) .nav__cta { background: var(--white); color: var(--ink-900); border-color: var(--white); }
.topbar:not(.is-solid) .nav__cta:hover { background: var(--gray-100); border-color: var(--gray-100); }
.topbar.is-solid .nav__cta { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.section--ink .btn--ghost { color: var(--gray-300); border-color: rgba(255,255,255,0.28); }
.section--ink .btn--ghost:hover { color: var(--white); border-color: var(--white); }

/* ====================== ANNOUNCE (Ink-Trustleiste, immer lesbar) ====================== */
.announce { background: var(--ink-900); color: var(--white); font-size: 12.5px; }
.announce__inner { max-width: var(--container-max); margin: 0 auto; padding: 8px var(--gutter); display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; letter-spacing: 0.03em; }
.announce__item { color: rgba(255,255,255,0.82); }
.announce__dot { color: rgba(255,255,255,0.34); }
.tp { display: inline-flex; align-items: center; gap: 7px; }
.tp__stars { color: #00B67A; font-size: 12px; letter-spacing: 1.5px; }
.tp strong { color: var(--white); font-weight: var(--weight-semibold); }
.tp__logo { height: 15px; width: auto; display: block; }
@media (max-width: 480px){ .announce__hide { display: none; } .announce__inner { gap: 9px; } .tp__logo { height: 14px; } }

/* ====================== TOPBAR / NAV (Announce immer ink; Nav am Hero-Top transparent → ab 24px solid) ====================== */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.nav { position: relative; border-bottom: 1px solid transparent; transition: background var(--duration-base) var(--ease-standard), border-color var(--duration-base); }
.topbar:not(.is-solid) .nav { background: linear-gradient(180deg, rgba(8,8,10,0.5) 0%, rgba(8,8,10,0) 100%); }
.topbar:not(.is-solid) .nav__link, .topbar:not(.is-solid) .nav__link--btn { text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.topbar.is-solid .nav { background: rgba(251,251,251,0.94); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); box-shadow: var(--shadow-sm); border-bottom-color: var(--border-subtle); }
/* WICHTIG: Bei offenem Menü KEIN backdrop-filter auf .nav — ein backdrop-filter macht
   .nav zum Containing-Block für das position:fixed Panel und schiebt es um die Announce-
   Höhe nach unten (sichtbarer Spalt unter der Nav). Das opake Panel verdeckt eh alles. */
.topbar.is-solid .nav.nav--open { -webkit-backdrop-filter: none; backdrop-filter: none; }
.nav__inner { max-width: var(--container-max); margin: 0 auto; height: var(--nav-h); padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__brand { display: flex; align-items: center; }
.nav__mono { width: 40px; height: 40px; }
.nav__mono--dark { display: none; }
.topbar.is-solid .nav__mono--light { display: none; }
.topbar.is-solid .nav__mono--dark { display: block; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__item--mega { position: relative; }
.nav__link, .nav__link--btn { font-family: var(--font-label); font-size: 12px; font-weight: var(--weight-medium); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.88); background: none; border: 0; padding: 8px 0; cursor: pointer; transition: color var(--duration-fast) var(--ease-standard); }
.nav__link:hover, .nav__link--btn:hover, .nav__link--btn[aria-expanded="true"] { color: var(--white); }
.topbar.is-solid .nav__link, .topbar.is-solid .nav__link--btn { color: var(--text-secondary); }
.topbar.is-solid .nav__link:hover, .topbar.is-solid .nav__link--btn:hover, .topbar.is-solid .nav__link--btn[aria-expanded="true"] { color: var(--ink-900); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__wa { display: none; align-items: center; gap: 8px; color: var(--ink-900); }
/* CTA + Notiz nur im offenen Mobil-Menü sichtbar (Desktop: aus) */
.nav__anfrage, .nav__menunote { display: none; }
/* Schwarzer CTA (Anfrage) mit weißem Pfeil-Kreis — höher, damit der Kreis Luft hat */
.nav__anfrage { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); height: 64px; gap: 14px; padding: 0 28px; }
.nav__anfrage:hover { background: var(--ink-700); border-color: var(--ink-700); }
.nav__anfrage::before { content: "\2192"; order: 1; flex: none; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--white); color: var(--ink-900); font-size: 17px; line-height: 1; transition: transform var(--duration-base) var(--ease-out); }
.nav__anfrage:hover::before { transform: translateX(3px); }
.nav__wa svg { flex: none; display: block; }
.nav__wa-num { font-family: var(--font-label); font-size: 13px; font-weight: var(--weight-semibold); letter-spacing: 0.01em; white-space: nowrap; }

/* Mega menu */
.mega { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); width: min(680px, 86vw); background: var(--white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; opacity: 0; visibility: hidden; transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out), visibility var(--duration-base); }
.nav__item--mega:hover .mega, .mega.is-open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega__card { display: flex; align-items: center; gap: 13px; padding: 9px 12px; border-radius: var(--radius-md); transition: background var(--duration-fast); }
.mega__card:hover { background: var(--gray-50); }
.mega__img { flex: none; width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; background: var(--gray-100); }
.mega__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mega__name { font-weight: var(--weight-semibold); font-size: 15px; }
.mega__meta { font-size: 12.5px; color: var(--text-tertiary); }
.nav__burger { display: none; }
.topbar.is-solid .nav__burger { border-color: var(--border-default); }
.topbar.is-solid .nav__burger span { background: var(--ink-900); }
[id] { scroll-margin-top: clamp(98px, 14vw, 118px); }

/* ====================== HERO (Full-Cover) ====================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink-900); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.30) 30%, rgba(8,8,10,0.46) 62%, rgba(8,8,10,0.6) 100%),
  linear-gradient(90deg, rgba(8,8,10,0.8) 0%, rgba(8,8,10,0.32) 55%, rgba(8,8,10,0.1) 100%),
  rgba(8,8,10,0.14); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter) clamp(54px,8vh,104px); }
.eyebrow--light { color: rgba(255,255,255,0.74); }
/* Hero: 4 Rangstufen-Badges, überlappend (Stagger-Reveal via JS) */
.hero__badges { display: flex; align-items: center; margin: 0 0 8px; }
.hero__badge { height: 54px; width: auto; margin-left: -15px; filter: drop-shadow(0 5px 12px rgba(0,0,0,0.55)); }
.hero__badge:first-child { margin-left: 0; }
.hero__h1 { font-size: clamp(46px, 7vw, 100px); line-height: 0.98; letter-spacing: -0.015em; color: var(--white); margin: 16px 0 0; text-wrap: balance; }
.hero__h1 em { color: var(--white); }
.hero__sub { margin: 24px 0 34px; max-width: 46ch; font-size: clamp(16px,1.6vw,19px); line-height: 1.6; color: rgba(255,255,255,0.82); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
/* CTA + Trust-Zeile als Block: schrumpft auf Button-Breite, Trust-Zeile zentriert darunter */
.hero__action { display: flex; flex-direction: column; align-items: center; width: fit-content; }
.hero__proof { display: flex; align-items: center; gap: 8px 16px; flex-wrap: wrap; margin-top: 28px; font-size: 14px; color: rgba(255,255,255,0.82); }
.hero__rating { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.hero__rating .stars { color: #fff; font-size: 13px; letter-spacing: 1px; }
.hero__rating strong { color: #fff; font-weight: var(--weight-semibold); font-size: 15px; }
.hero__proof-meta { color: rgba(255,255,255,0.8); }
.hero__proof strong { color: #fff; font-weight: var(--weight-semibold); }
.hero__assure { margin: 18px 0 0; font-size: 12.5px; color: rgba(255,255,255,0.72); letter-spacing: 0.01em; }
/* Hero Trust-Zeile: Klarna + Garantie unter den CTAs */
.hero__pay { display: flex; align-items: center; justify-content: center; gap: 9px 16px; flex-wrap: wrap; margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,0.85); letter-spacing: 0.01em; }
.hero__pay-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.hero__klarna { height: 18px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.hero__pay-ic { width: 19px; height: 19px; flex: none; color: #fff; }
.hero__pay-sep { color: rgba(255,255,255,0.4); }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; width: 24px; height: 40px; border: 1px solid rgba(255,255,255,0.45); border-radius: 999px; display: flex; justify-content: center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: rgba(255,255,255,0.9); animation: heroScroll 1.7s var(--ease-standard) infinite; }
@keyframes heroScroll { 0%{opacity:0;transform:translateY(-4px)} 45%{opacity:1} 100%{opacity:0;transform:translateY(10px)} }
@media (prefers-reduced-motion: reduce){ .hero__scroll span{ animation:none } }

/* ====================== TRUST STRIP ====================== */
.trust { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.trust__inner { padding: clamp(36px,5vw,56px) var(--gutter); }
.trust__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust__stat { text-align: center; min-width: 0; }
.trust__num { display: block; font-size: clamp(34px,4vw,52px); line-height: 1; }
.trust__lbl { display: block; margin-top: 12px; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-tertiary); }
.trust__seals { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border-subtle); display: flex; flex-wrap: wrap; gap: 10px 0; align-items: center; justify-content: center; }
.seal { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500); padding: 2px clamp(16px,2.2vw,28px); border-left: 1px solid var(--border-default); }
.seal:first-child { border-left: 0; }

/* ---- Logo-Badges (Google / Trustpilot / Klarna) ---- */
.lbadge { display: inline-flex; align-items: center; gap: 9px; padding: 2px clamp(16px,2.2vw,28px); border-left: 1px solid var(--border-default); }
.trust__seals .lbadge:first-child { border-left: 0; }
.lbadge__g { height: 22px; width: auto; }
.lbadge__tp { height: 15px; width: auto; }
.lbadge__klarna { height: 18px; width: auto; padding-left: clamp(16px,2.2vw,28px); border-left: 1px solid var(--border-default); }
.certbadge { gap: 8px; }
.certbadge__badge { height: 30px; width: auto; }
.certbadge__cert { height: 26px; width: auto; border: 1px solid var(--border-default); border-radius: 2px; }
.lbadge__r { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); text-transform: none; letter-spacing: 0; }
.lbadge__r strong { color: var(--ink-900); }
.gstars { color: #F4B400; letter-spacing: 0.5px; font-size: 11px; }
.tpstars { color: #00B67A; letter-spacing: 0.5px; font-size: 11px; }

/* ---- Bewertungs-Rating-Karten ---- */
.reviews__ratings { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(28px,3vw,40px); }
.ratecard { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 18px 24px; min-width: 0; }
.ratecard__logo--g { height: 30px; width: auto; }
.ratecard__logo--tp { height: 19px; width: auto; }
.ratecard__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ratecard__score { display: inline-flex; align-items: center; gap: 8px; }
.ratecard__score strong { font-family: var(--font-display); font-size: 28px; line-height: 1; }
.ratecard__count { font-size: 12px; color: var(--text-tertiary); }

/* ---- Klarna im Payment ---- */
.paybadge--klarna { display: inline-flex; align-items: center; padding: 9px 16px; }
.paybadge--klarna img { height: 15px; width: auto; display: block; }
.paybadge--logo { display: inline-flex; align-items: center; padding: 9px 16px; }
.paybadge--logo img { height: 18px; width: auto; display: block; }

/* ====================== DEINE VORTEILE ====================== */
.benefits { padding: clamp(72px,9vw,118px) 0; }
.benefits__head { text-align: center; max-width: 620px; margin: 0 auto clamp(44px,5vw,64px); }
.benefits__head h2 { font-size: clamp(30px,4.4vw,52px); margin: 0; }
.benefits__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(24px,3vw,36px); }
.benefit { text-align: center; min-width: 0; display: flex; flex-direction: column; align-items: center; }
.benefit__icon { display: inline-flex; align-items: center; justify-content: center; width: 76px; height: 76px; border: 1px solid var(--border-default); border-radius: 50%; color: var(--ink-900); margin-bottom: 22px; transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base); }
.benefit:hover .benefit__icon { transform: translateY(-4px); border-color: var(--ink-900); }
.benefit__icon svg { width: 38px; height: 38px; }
.benefit__title { font-family: var(--font-display); font-size: 23px; font-weight: 400; margin: 0 0 10px; line-height: 1.1; }
.benefit__txt { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0; max-width: 27ch; }

/* ====================== FÜR WEN GEEIGNET ====================== */
.audience { padding: clamp(72px,9vw,118px) 0; }
.audience__head { max-width: 760px; margin: 0 auto clamp(40px,5vw,62px); text-align: center; }
.audience__head .eyebrow { margin-bottom: 16px; }
.audience__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(22px,2.6vw,34px); }
.aud { min-width: 0; display: flex; flex-direction: column; position: relative; }
/* Spotlight: weicher grauer Schein hinter der fokussierten Card (mobil beim Scrollen, Desktop per Hover) */
.aud::before { content: ""; position: absolute; z-index: 0; inset: -18px; background: var(--gray-150); border-radius: var(--radius-lg); opacity: 0; transition: opacity 0.5s var(--ease-out); pointer-events: none; }
.aud.is-active::before { opacity: 1; }
@media (min-width: 761px){ .aud:hover::before { opacity: 1; } }
.aud__media { position: relative; z-index: 1; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius-lg); background: var(--gray-100); }
.aud__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; transition: transform 1.2s var(--ease-out); }
.aud:hover .aud__media img { transform: scale(1.04); }
.aud__body { padding: 22px 2px 0; position: relative; z-index: 1; }
.aud__num { display: block; font-family: var(--font-label); font-size: 12px; letter-spacing: var(--tracking-label); color: var(--text-muted); margin-bottom: 11px; }
.aud__title { font-family: var(--font-display); font-size: clamp(22px,2.3vw,27px); font-weight: 400; line-height: 1.1; margin: 0 0 11px; }
.aud__txt { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
/* Qualifizierungs-/Warn-Feld (heller Rot-Ton, dezenter Rahmen) */
.notice { display: flex; gap: 15px; align-items: flex-start; max-width: 880px; margin: clamp(34px,5vw,56px) auto 0; padding: 20px 24px; background: var(--red-tint); border: 1px solid rgba(193,19,46,0.30); border-radius: var(--radius-md); }
.notice__ic { flex: none; width: 24px; height: 24px; color: var(--red-500); margin-top: 1px; }
.notice__txt { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--ink-900); }
.notice__txt strong { font-weight: var(--weight-semibold); }
.notice__txt em { font-style: italic; }
@media (max-width: 560px){ .notice { padding: 18px 18px; gap: 12px; } .notice__txt { font-size: 14.5px; } }

/* ====================== PAIN ====================== */
.pain { padding: clamp(72px,10vw,128px) 0; }
.pain__inner { max-width: 880px; margin: 0 auto; text-align: center; padding-inline: var(--gutter); }
.pain__h2 { font-size: clamp(30px,4.6vw,52px); margin: 0 0 28px; line-height: 1.08; }
.pain__lead { font-size: clamp(16px,2vw,19px); color: var(--text-secondary); max-width: 60ch; margin: 0 auto; line-height: 1.65; }
.pain__mark { font-family: var(--font-display); font-size: clamp(120px,16vw,200px); line-height: 0.5; color: var(--gray-200); display: block; height: 0.42em; margin-bottom: 6px; }

/* ====================== GRÜNDERIN-ZITAT (cinematic) ====================== */
.fquote { position: relative; min-height: clamp(440px,62vh,640px); display: flex; align-items: center; overflow: hidden; background: var(--ink-900); }
.fquote__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 26%; }
.fquote__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,10,0.9) 0%, rgba(8,8,10,0.64) 48%, rgba(8,8,10,0.3) 100%), linear-gradient(180deg, rgba(8,8,10,0.32), rgba(8,8,10,0.32)); }
.fquote__inner { position: relative; z-index: 2; max-width: 900px; }
.fquote__mark { font-family: var(--font-display); font-size: clamp(90px,11vw,150px); line-height: 0.7; color: var(--red-400); display: block; height: 0.4em; }
.fquote__text { font-size: clamp(28px,4vw,52px); line-height: 1.22; color: var(--white); margin: 22px 0 0; font-weight: 400; max-width: 20ch; letter-spacing: -0.005em; }
.fquote__text em { color: var(--white); }
.fquote__by { margin-top: 28px; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-300); }
@media (max-width: 760px){ .fquote { min-height: 420px; } .fquote__scrim { background: linear-gradient(180deg, rgba(8,8,10,0.5), rgba(8,8,10,0.84)); } }

/* ====================== SECTION VARIANTS ====================== */
.section--ink { background: var(--ink-900); color: var(--text-on-dark); }
.section--ink .display, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .eyebrow { color: var(--gray-400); }
.section--sunken { background: var(--surface-sunken); }

/* ====================== METHODE (ink) ====================== */
.method { padding: clamp(80px,10vw,128px) 0; }
.method__head { max-width: 680px; margin: 0 auto clamp(48px,6vw,72px); text-align: center; }
.method__h2 { font-size: clamp(32px,5vw,56px); margin: 0; }
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,3vw,40px); }
.phase { min-width: 0; border-top: 1px solid rgba(255,255,255,0.16); padding-top: 28px; }
.phase__idx { font-family: var(--font-display); font-size: clamp(64px,7vw,116px); line-height: 0.82; display: block; margin-bottom: 14px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.34); }
.phase__title { font-family: var(--font-sans); font-size: 21px; font-weight: var(--weight-semibold); margin: 0 0 12px; color: var(--white); }
.phase__txt { color: var(--gray-300); font-size: 15.5px; line-height: 1.65; margin: 0; }
.method__note { margin: clamp(40px,5vw,64px) auto 0; max-width: 60ch; text-align: center; color: var(--gray-400); font-size: 14.5px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; }

/* ====================== MEHR ALS DAS HANDWERK (Pillars) ====================== */
.outcome { padding: clamp(72px,9vw,118px) 0; }
.outcome__head { max-width: 760px; margin: 0 auto clamp(40px,5vw,62px); text-align: center; }
.outcome__head .eyebrow { margin-bottom: 16px; }
.outcome__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,3.6vw,56px); }
.pillar { min-width: 0; border-top: 1.5px solid var(--ink-900); padding-top: 22px; }
.pillar__num { display: block; font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--gray-300); margin-bottom: 16px; }
.pillar__title { font-family: var(--font-display); font-size: clamp(22px,2.3vw,27px); font-weight: 400; line-height: 1.12; margin: 0 0 12px; }
.pillar__txt { font-size: 15.5px; color: var(--text-secondary); line-height: 1.62; margin: 0; }
@media (max-width: 760px){ .outcome__grid { grid-template-columns: 1fr; gap: 0; } .pillar { border-top: 1px solid var(--border-default); padding: 26px 0; } .pillar:first-child { border-top: 1.5px solid var(--ink-900); } }

/* ====================== RESULTS GALLERY ====================== */
.results { padding: clamp(80px,10vw,128px) 0; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { margin: 0; overflow: hidden; border-radius: var(--radius-md); background-color: var(--gray-100); background-image: repeating-linear-gradient(135deg, var(--gray-150) 0 1px, transparent 1px 16px); min-width: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---- Auto-laufende Ergebnis-Galerie ---- */
.rgallery { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.rgallery__track { display: flex; gap: 16px; width: max-content; animation: rgalleryMove 55s linear infinite; }
.rgallery:hover .rgallery__track { animation-play-state: paused; }
.rgallery__item { margin: 0; flex: 0 0 auto; width: clamp(216px,24vw,300px); aspect-ratio: 4/5; border-radius: var(--radius-md); overflow: hidden; background-color: var(--gray-100); background-image: repeating-linear-gradient(135deg, var(--gray-150) 0 1px, transparent 1px 16px); }
.rgallery__item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes rgalleryMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .rgallery__track { animation: none; } }
@media (max-width: 760px){ .rgallery__item { width: 200px; } }

/* ====================== REVIEWS ====================== */
.reviews { padding: clamp(80px,10vw,128px) 0; }
.reviews__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px,3vw,40px); align-items: stretch; }
.vtest { position: relative; border: 0; padding: 0; cursor: pointer; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-900); min-height: 360px; min-width: 0; }
.vtest img { width: 100%; height: 100%; object-fit: cover; opacity: 0.86; transition: opacity var(--duration-base), transform var(--duration-slow) var(--ease-out); position: absolute; inset: 0; }
.vtest:hover img { opacity: 0.72; transform: scale(1.03); }
.vtest__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--ink-900); display: flex; align-items: center; justify-content: center; }
.vtest__cap { position: absolute; left: 22px; right: 22px; bottom: 22px; color: var(--white); font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.3; text-align: left; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.reviewwall { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.rev { background: var(--white); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 22px; min-width: 0; }
.rev__stars { color: var(--ink-900); font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.rev__txt { font-size: 14.5px; line-height: 1.55; margin: 0 0 14px; color: var(--text-primary); }
.rev__foot { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.rev__avatar { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--ink-900); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-size: 12px; font-weight: var(--weight-semibold); letter-spacing: 0.04em; }
.rev__by { display: flex; flex-direction: column; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-900); }
.rev__by small { font-size: 11px; letter-spacing: 0.04em; color: var(--text-tertiary); text-transform: none; margin-top: 2px; }
.reviews__all { display: inline-block; margin-top: 36px; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ====================== HUB ====================== */
.hub { padding: clamp(80px,10vw,128px) 0; }
.hub__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,28px); }
.course { background: var(--white); border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; min-width: 0; transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base); display: flex; flex-direction: column; }
.course:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.course__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--gray-100); }
.course__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.course:hover .course__media img { transform: scale(1.04); }
.course__tag { position: absolute; top: 12px; left: 12px; background: var(--ink-900); color: var(--white); font-family: var(--font-label); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); }
.course__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.course__title { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin: 0; line-height: 1.05; }
.course__desc { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.5; flex: 1; }
.course__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--border-subtle); flex-wrap: wrap; }
.course__price { font-family: var(--font-label); font-weight: var(--weight-semibold); font-size: 17px; color: var(--ink-900); }
.course__price--inq { color: var(--red-500); }
.course__rate { font-size: 12px; color: var(--text-muted); }

/* ---- Scroll-Farbwechsel: Hub wird beim Reinscrollen dunkel (GSAP toggelt .is-dark) ---- */
.hub { transition: background-color 1.2s var(--ease-out); }
.hub .section-head h2, .hub .section-head__sub, .hub .eyebrow, .hub .eyebrow::before,
.hub .course, .hub .course__title, .hub .course__desc, .hub .course__price, .hub .course__rate, .hub .course__foot, .hub .course__media, .hub .course__tag {
  transition: color 1.2s var(--ease-out), background-color 1.2s var(--ease-out), border-color 1.2s var(--ease-out);
}
.hub.is-dark { background: var(--ink-900); }
.hub.is-dark .display, .hub.is-dark .section-head h2 { color: var(--white); }
.hub.is-dark .eyebrow { color: var(--gray-400); }
.hub.is-dark .eyebrow::before { color: var(--gray-500); }
.hub.is-dark .section-head__sub { color: var(--gray-300); }
.hub.is-dark .course { background: var(--ink-800); border-color: rgba(255,255,255,0.12); }
.hub.is-dark .course:hover { border-color: rgba(255,255,255,0.3); box-shadow: 0 14px 40px rgba(0,0,0,0.4); }
.hub.is-dark .course__media { background: var(--ink-700); }
.hub.is-dark .course__title { color: var(--white); }
.hub.is-dark .course__desc { color: var(--gray-300); }
.hub.is-dark .course__foot { border-top-color: rgba(255,255,255,0.12); }
.hub.is-dark .course__price { color: var(--white); }
.hub.is-dark .course__price--inq { color: var(--red-400); }
.hub.is-dark .course__rate { color: var(--gray-400); }
.hub.is-dark .course__tag { background: var(--white); color: var(--ink-900); }

/* ====================== CALC / QUIZ ====================== */
.calc { padding: clamp(80px,10vw,128px) 0; }
.calc__tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.calc__tab { background: var(--white); border: 1px solid var(--border-default); color: var(--text-secondary); height: 46px; padding: 0 22px; border-radius: var(--radius-pill); font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all var(--duration-fast); }
.calc__tab.is-active { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.calc__panel { max-width: 960px; margin: 0 auto; }
.calc__panel[hidden] { display: none; }
.calc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; }
.calc__controls { padding: clamp(28px,4vw,44px); display: flex; flex-direction: column; gap: 30px; min-width: 0; }
.field { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.field__lbl { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); }
.field__lbl strong { color: var(--ink-900); font-size: 14px; }
.field__select { height: 50px; border: 1px solid var(--border-default); border-radius: var(--radius-sm); padding: 0 16px; font-family: var(--font-sans); font-size: 15px; background: var(--white); color: var(--ink-900); cursor: pointer; }
.field__range { -webkit-appearance: none; appearance: none; width: 100%; height: 3px; background: var(--gray-200); border-radius: 3px; outline-offset: 6px; }
.field__range::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--ink-900); cursor: pointer; border: 3px solid var(--white); box-shadow: var(--shadow-sm); }
.field__range::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--ink-900); cursor: pointer; border: 3px solid var(--white); }
.field__range:focus-visible { outline: none; }
.field__range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--red-400); }
.field__range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--red-400); }
.field__input:focus-visible { outline: none; border-color: var(--ink-900); box-shadow: 0 0 0 3px var(--red-tint); }
.calc__result { background: var(--ink-900); color: var(--white); padding: clamp(28px,4vw,44px); display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.calc__result-lbl { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-400); margin: 0; }
.calc__result-num { font-size: clamp(44px,6vw,64px); color: var(--white); line-height: 1; margin: 0 0 8px; }
.calc__result-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.14); font-size: 14px; color: var(--gray-300); }
.calc__result-row strong { color: var(--white); }
.calc__result .btn { margin-top: 14px; }
.calc__disclaimer { font-size: 11.5px; color: var(--gray-500); line-height: 1.45; margin: 6px 0 0; }

.quiz { max-width: 640px; margin: 0 auto; border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); background: var(--white); }
.quiz__bar { height: 3px; background: var(--gray-200); border-radius: 3px; margin-bottom: 32px; overflow: hidden; }
.quiz__bar-fill { display: block; height: 100%; width: 25%; background: var(--red-500); transition: width var(--duration-base) var(--ease-out); }
.quiz__step { border: 0; padding: 0; margin: 0; }
.quiz__step[hidden] { display: none; }
.quiz__q { font-family: var(--font-display); font-size: clamp(22px,3vw,30px); font-weight: 400; padding: 0; margin: 0 0 24px; line-height: 1.15; }
.quiz__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.opt { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; font-size: 15px; transition: border-color var(--duration-fast), background var(--duration-fast); min-height: 48px; }
.opt:hover { border-color: var(--gray-400); }
.opt input { accent-color: var(--red-500); width: 18px; height: 18px; flex: none; }
.opt:has(input:checked) { border-color: var(--ink-900); background: var(--gray-50); }
.opt--check { grid-column: 1 / -1; }
.quiz__fields { display: flex; flex-direction: column; gap: 12px; }
.field__input { height: 52px; border: 1px solid var(--border-default); border-radius: var(--radius-sm); padding: 0 16px; font-family: var(--font-sans); font-size: 15px; width: 100%; }
.field__input:focus { outline: none; border-color: var(--ink-900); }
.quiz__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.quiz__nav .btn:only-child { margin-left: auto; }
.quiz__done { text-align: center; max-width: 480px; margin: 0 auto; padding: clamp(40px,6vw,72px) 0; }
.quiz__done-h { font-size: clamp(30px,4vw,46px); margin: 8px 0 14px; }
.quiz__done p { color: var(--text-secondary); }

/* ====================== PAY ====================== */
.pay { padding: clamp(72px,9vw,120px) 0; }
.pay__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.pay__col { min-width: 0; }
.pay__h2 { font-size: clamp(30px,4vw,48px); margin: 0 0 20px; }
.pay__txt { color: var(--text-secondary); font-size: var(--text-body-l); line-height: 1.6; margin: 0 0 28px; max-width: 46ch; }
.pay__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.paybadge { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.06em; color: var(--gray-500); border: 1px solid var(--border-default); border-radius: var(--radius-sm); padding: 10px 16px; background: var(--white); }
.pay__guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.guar { display: flex; gap: 14px; align-items: flex-start; padding: 22px; border: 1px solid var(--border-default); border-radius: var(--radius-md); background: var(--white); min-width: 0; }
.guar__icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ink-900); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.guar strong { display: block; font-size: 15px; }
.guar span { font-size: 13px; color: var(--text-tertiary); }

/* ====================== MENTOR ====================== */
.mentor { padding: clamp(80px,10vw,128px) 0; }
.mentor__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.mentor__media { min-width: 0; }
.mentor__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 28%; border-radius: var(--radius-lg); }
.mentor__copy { min-width: 0; }
.mentor__h2 { font-size: clamp(30px,4.4vw,52px); margin: 0 0 22px; }
.mentor__txt { color: var(--text-secondary); font-size: var(--text-body-l); line-height: 1.65; margin: 0 0 36px; max-width: 50ch; }
.credchips { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 26px; }
.credchip { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600); border: 1px solid var(--border-default); border-radius: var(--radius-pill); padding: 7px 15px; }
.mentor__link { display: inline-block; margin-top: 4px; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--ink-900); padding-bottom: 3px; }

/* ====================== MARQUEE ====================== */
.marquee { overflow: hidden; padding: clamp(20px,2.6vw,30px) 0; }
.marquee__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marqueeMove 36s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: clamp(24px,3.4vw,42px); color: rgba(255,255,255,0.86); padding-right: 4px; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee__track { animation: none; } }

/* ====================== CERTS / TIERS ====================== */
.certs { padding: clamp(80px,10vw,128px) 0; }
.tiers { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(12px,1.6vw,22px); align-items: start; }
.tierc { text-align: center; min-width: 0; padding: 0 6px; }
.tierc__badge { width: clamp(124px,14vw,186px); height: auto; display: block; margin: 0 auto 14px; filter: drop-shadow(0 16px 30px rgba(10,10,11,0.18)); transition: transform var(--duration-base) var(--ease-out); }
.tierc:hover .tierc__badge { transform: translateY(-7px); }
.tierc--top .tierc__badge { width: clamp(128px,15vw,194px); }
.tierc__step { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.tierc__name { font-family: var(--font-display); font-size: clamp(22px,2.4vw,30px); font-weight: 400; margin: 6px 0 10px; line-height: 1.05; }
.tierc__txt { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0 auto; max-width: 24ch; }
/* Treppe (Desktop): Ember unten → Diamond oben */
@media (min-width: 761px){
  .tierc:nth-child(1) { margin-top: 132px; }
  .tierc:nth-child(2) { margin-top: 88px; }
  .tierc:nth-child(3) { margin-top: 44px; }
}
.certproof { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: clamp(36px,4vw,52px); }
.certproof__item { margin: 0; border: 1px solid var(--border-default); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.certproof__item img { width: 100%; aspect-ratio: 7/5; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.certproof__item:hover img { transform: scale(1.04); }
.certs__note { text-align: center; margin-top: 24px; font-size: 12px; color: var(--text-muted); }

/* ====================== COMPARE ====================== */
.compare { padding: clamp(80px,10vw,128px) 0; }
.ctable { max-width: 820px; margin: 0 auto; border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.ctable__row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; }
.ctable__row + .ctable__row { border-top: 1px solid var(--border-subtle); }
.ctable__row > span { padding: 18px 20px; min-width: 0; overflow-wrap: break-word; }
.ctable__row--head { background: var(--gray-50); }
.ctable__row--head .ctable__bon, .ctable__row--head .ctable__oth { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; font-weight: 600; }
.ctable__row--head .ctable__bon { color: var(--ink-900); }
.ctable__row--head .ctable__oth { color: var(--text-muted); }
.ctable__crit { font-size: 15px; }
.ctable__bon, .ctable__oth { text-align: center; font-size: 14px; }
.ctable__bon[data-yes] { color: var(--ink-900); font-weight: var(--weight-semibold); }
.ctable__oth[data-no] { color: var(--text-muted); }
.ctable__bon[data-yes]::before { content: "✓ "; color: var(--red-500); font-weight: 700; }
.ctable__oth[data-no]::before { content: "— "; }

/* ====================== FAQ ====================== */
.faq { padding: clamp(80px,10vw,128px) 0; }
.faq__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px,5vw,64px); align-items: start; }
.faq .section-head { margin: 0; }
.acc { min-width: 0; }
.acc__item { border-top: 1px solid var(--border-default); }
.acc__item:last-child { border-bottom: 1px solid var(--border-default); }
.acc__q { list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative; font-size: 18px; font-weight: var(--weight-medium); }
.acc__q::-webkit-details-marker { display: none; }
.acc__q::after { content: "+"; position: absolute; right: 0; top: 22px; font-size: 22px; font-weight: 300; color: var(--text-tertiary); transition: transform var(--duration-base); }
.acc__item[open] .acc__q::after { transform: rotate(45deg); }
.acc__a { padding: 0 40px 26px 0; color: var(--text-secondary); font-size: 15.5px; line-height: 1.65; margin: 0; }

/* ====================== FINAL ====================== */
.final { padding: clamp(90px,12vw,160px) 0; text-align: center; }
.final__inner { max-width: 760px; margin: 0 auto; }
.final__h2 { font-size: clamp(36px,6vw,72px); margin: 0 0 24px; }
.final__sub { color: var(--gray-300); font-size: var(--text-body-l); line-height: 1.6; max-width: 48ch; margin: 0 auto 36px; }
.final__reassure { margin: 28px 0 0; font-size: 13px; color: var(--gray-500); letter-spacing: 0.04em; }
.final__reassure .stars, .final .stars { color: var(--red-400); }

/* ====================== ZUFRIEDENHEITS-GARANTIE ====================== */
.guarantee { padding: clamp(80px,10vw,128px) 0; }
.guarantee__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.gseal { flex: none; width: clamp(150px,16vw,184px); height: clamp(150px,16vw,184px); border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; }
.gseal::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); }
.gseal__num { font-family: var(--font-display); font-size: clamp(42px,5vw,58px); color: var(--white); line-height: 1; }
.gseal__lbl { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-400); margin-top: 8px; line-height: 1.5; }
.guarantee__copy { min-width: 0; }
.guarantee__h2 { font-size: clamp(30px,4.4vw,52px); margin: 0 0 20px; }
.guarantee__txt { color: var(--gray-300); font-size: var(--text-body-l); line-height: 1.65; max-width: 56ch; margin: 0 0 28px; }
.guarantee__txt strong { color: var(--white); }
.guarantee__points { display: flex; flex-wrap: wrap; gap: 12px; }
.gpoint { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-300); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-pill); padding: 9px 16px; display: inline-flex; align-items: center; gap: 8px; }
.gpoint::before { content: "✓"; color: var(--red-400); }

/* ====================== MAGAZIN / BLOG ====================== */
.blog { padding: clamp(80px,10vw,128px) 0; }
.blog__filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(28px,3vw,40px); }
.blog__filter { background: var(--white); border: 1px solid var(--border-default); color: var(--text-secondary); height: 40px; padding: 0 18px; border-radius: var(--radius-pill); font-family: var(--font-label); font-size: 11.5px; font-weight: var(--weight-semibold); letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast); }
.blog__filter:hover { border-color: var(--gray-400); color: var(--ink-900); }
.blog__filter.is-active { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,28px); }
.blog__card { display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base); }
.blog__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.blog__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gray-100); }
.blog__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.blog__card:hover .blog__media img { transform: scale(1.04); }
.blog__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog__cat { font-family: var(--font-label); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-500); }
.blog__title { font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1.16; margin: 0; flex: 1; }
.blog__meta { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.06em; color: var(--text-muted); }
.blog__all { display: inline-block; margin-top: clamp(28px,3vw,40px); font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--ink-900); padding-bottom: 3px; }

/* ====================== FOOTER ====================== */
.footer { background: var(--paper); border-top: 1px solid var(--border-default); padding: clamp(56px,7vw,80px) 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,4vw,48px); }
.footer__brand { min-width: 0; }
.footer__brand img { display: inline-block; vertical-align: middle; }
.footer__word { font-family: var(--font-label); font-weight: 600; font-size: 15px; letter-spacing: 0.3em; text-transform: uppercase; margin-left: 10px; vertical-align: middle; }
.footer__tag { margin: 16px 0 0; font-size: 14px; color: var(--text-tertiary); max-width: 30ch; }
.footer__col { display: flex; flex-direction: column; gap: 11px; min-width: 0; }
.footer__h { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.footer__col a { font-size: 14px; color: var(--text-secondary); transition: color var(--duration-fast); }
.footer__col a:hover { color: var(--ink-900); }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid var(--border-subtle); font-size: 12.5px; color: var(--text-muted); }

/* ====================== MOBILE BAR ====================== */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%); border-top: 1px solid var(--border-default); transform: translateY(120%); transition: transform var(--duration-base) var(--ease-out); }
.mobilebar.is-visible { transform: translateY(0); }
.mobilebar__img { flex: none; width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--gray-100); }
.mobilebar__txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.mobilebar__txt strong { font-size: 14px; line-height: 1.2; }
.mobilebar__txt span { font-size: 11.5px; color: var(--text-tertiary); }
.mobilebar__btn { flex: none; gap: 8px; background: var(--ink-900); color: #fff; border: none; }
.mobilebar__btn:hover { background: var(--ink-700); }
.mobilebar__arrow { flex: none; }

/* ====================== REVEAL (GSAP sets from-state; visible by default) ====================== */
.reveal, .reveal-img { will-change: transform, opacity; }
/* Clip-Path-Reveal: ohne JS voll sichtbar; GSAP setzt die From-State (Wipe). */
.reveal-clip { will-change: clip-path; }
.reveal-clip > img { will-change: transform; }

/* ====================== PAGE-LOADER (Intro) ====================== */
.loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--white);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
  /* Safety-Net: blendet sich auch ohne JS nach 4,5s aus */
  animation: loaderAutohide 0s linear 4.5s forwards; }
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader__logo { width: 66px; height: 66px; animation: loaderSpin 1.5s cubic-bezier(0.65,0,0.35,1) infinite; }
.loader__txt { font-family: var(--font-display); font-size: clamp(19px, 4.4vw, 26px); color: var(--ink-900); letter-spacing: 0.01em; margin: 0; text-align: center;
  opacity: 0; transform: translateY(6px); animation: loaderTxt 0.9s var(--ease-out) 0.25s forwards; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderTxt { to { opacity: 1; transform: none; } }
@keyframes loaderAutohide { to { opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce) { .loader__logo { animation: none; } .loader__txt { animation: none; opacity: 1; transform: none; } }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1080px){
  .hub__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px){
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; flex-direction: column; gap: 5px; width: 48px; height: 48px; align-items: center; justify-content: center; background: none; border: 1px solid var(--border-default); border-radius: 50%; cursor: pointer; }
  .nav__burger span { width: 16px; height: 1.5px; background: var(--ink-900); display: block; }
  /* Mobile: Header IMMER solide (nicht transparent über Hero), dunkles Logo; Hero-Content unter den Header */
  .topbar:not(.is-solid) .nav { background: var(--paper); border-bottom-color: var(--border-subtle); }
  .topbar:not(.is-solid) .nav__link, .topbar:not(.is-solid) .nav__link--btn { text-shadow: none; color: var(--text-secondary); }
  .nav__mono--light { display: none; }
  .nav__mono--dark { display: block; }
  .nav__cta { display: none; }
  .nav__wa { display: inline-flex; }
  .hero { padding-top: calc(var(--header-h, 100px) + 22px); }
  /* Panel ABSOLUT an .nav verankert (nicht fixed): top:100% = exakt Nav-Unterkante,
     in JEDEM Browser identisch (kein Containing-Block-/backdrop-filter-Quirk → kein Spalt). */
  .nav--open .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 0; position: absolute; left: 0; right: 0; top: 100%; height: calc(100dvh - var(--header-h, 98px)); overflow-y: auto; overscroll-behavior: contain; background: var(--white); box-shadow: var(--shadow-lg); padding: 0 var(--gutter) 36px; }
  .nav--open .nav__links .nav__link, .nav--open .nav__links .nav__link--btn { padding: 15px 2px; border-bottom: 1px solid var(--border-subtle); text-align: left; width: 100%; color: var(--ink-900); }
  .nav--open .nav__links .nav__anfrage { display: inline-flex; align-self: center; margin-top: 22px; }
  .nav--open .nav__links .nav__menunote { display: block; text-align: center; margin: 11px 0 20px; font-size: 12px; letter-spacing: 0.02em; color: var(--text-tertiary); }
  .nav--open .nav__item--mega { position: static; }
  .nav--open .mega { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; box-shadow: none; border: 0; border-radius: 0; padding: 2px 0 8px; grid-template-columns: 1fr; }
  .nav--open .mega__card { padding: 11px 2px; }
  /* Burger → X wenn offen; Header solide für klaren Kontrast */
  .nav__burger span { transition: transform var(--duration-fast) var(--ease-standard); }
  .nav--open .nav__burger span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .nav--open .nav__burger span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
  .nav--open.nav { background: var(--paper); }
  .nav--open .nav__mono--light { display: none; }
  .nav--open .nav__mono--dark { display: block; }
  .nav--open .nav__burger { border-color: var(--border-default); }
  .nav--open .nav__burger span { background: var(--ink-900); }
  body.menu-open { overflow: hidden; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero { min-height: 84svh; }
  .hero__scroll { display: none; }
  .hero__h1 { font-size: clamp(40px,8.5vw,60px); }
  .reviews__grid { grid-template-columns: 1fr; }
  .pay__inner, .mentor__inner, .faq__inner { grid-template-columns: 1fr; }
  .mentor__media { max-width: 460px; }
  .faq .section-head { text-align: left; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .trust__stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .method__grid { grid-template-columns: 1fr; gap: 0; }
  .phase { border-top: 1px solid rgba(255,255,255,0.16); padding: 24px 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .reviewwall { grid-template-columns: 1fr; }
  .calc__grid { grid-template-columns: 1fr; }
  .quiz__opts { grid-template-columns: 1fr; }
  .pay__guarantees { grid-template-columns: 1fr; }
  .hub__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr 1fr; gap: 38px 18px; }
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .guarantee__txt { margin-inline: auto; }
  .guarantee__points { justify-content: center; }
  .tiers { grid-template-columns: 1fr 1fr; }
  .certproof { grid-template-columns: 1fr 1fr; }
  .ctable__row { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .ctable__crit { font-size: 13.5px; }
  .ctable__row > span { padding: 14px 12px; }
  .mobilebar { display: flex; }
  .hero__scrim { background: linear-gradient(180deg, rgba(8,8,10,0.66) 0%, rgba(8,8,10,0.48) 40%, rgba(8,8,10,0.5) 72%, rgba(8,8,10,0.56) 100%); }
  .hero__pay { text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 8px; }
  .announce__inner { font-size: 11.5px; gap: 8px; }
  .audience__grid { grid-template-columns: 1fr; gap: 16px; }
  .aud { flex-direction: row; align-items: flex-start; gap: 16px; }
  .aud__media { flex: none; width: 118px; border-radius: var(--radius-md); }
  .aud__body { padding: 0; }
  .aud__num { margin-bottom: 6px; }
  .aud__title { font-size: 20px; margin-bottom: 7px; }
  .aud__txt { font-size: 13.5px; line-height: 1.55; }
}
@media (max-width: 460px){
  .footer__inner { grid-template-columns: 1fr; }
  .hero__action { width: 100%; align-items: stretch; }
  .hero__badge { height: 48px; margin-left: -13px; }
  .hero__cta .btn { width: 100%; }
  .hero__cta .btn--glass { display: none; }
  .tiers { grid-template-columns: 1fr; }
  .certproof { grid-template-columns: 1fr 1fr; }
}
