/* =====================================================================
   Joey Jaismann — Stylesheet
   Aufbau: Reset · Basis · Layout · Buttons · Header · Hero ·
   Kassen-Check · Säulen A/B/C · Stimmen · Termine · Formulare ·
   FAQ · Chat · Sticky-CTA · Footer · Utilities
   ===================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; }
ul[class] { list-style: none; padding: 0; }

/* ---------- Basis ---------- */
body {
  font-family: var(--font-text);
  font-size: var(--fs-400);
  line-height: 1.6;
  color: var(--tinte);
  background: var(--salz);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
p { text-wrap: pretty; }
a { text-decoration-thickness: .08em; text-underline-offset: .15em; }

/* ---------- Fokus sichtbar (A11y) ---------- */
:focus-visible {
  outline: 3px solid var(--fokus);
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--hafen); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--sp-7); }
.section--tight { padding-block: var(--sp-6); }
.section--hafen { background: var(--hafen); color: var(--salz); }
.section--hafen h2, .section--hafen h3 { color: #fff; }
.section--salz { background: var(--salz); }
.section--weiss { background: var(--weiss); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-200);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kutter);
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: var(--sp-2);
}
.section--hafen .eyebrow { color: var(--kurs); }
.eyebrow::before { content: ""; width: 1.5rem; height: 2px; background: currentColor; }

.section-head { max-width: 62ch; margin-bottom: var(--sp-5); }
.section-head p { color: var(--nebel); font-size: var(--fs-500); margin-top: var(--sp-2); }
.section--hafen .section-head p { color: #cdd8d2; }

/* ---------- Buttons (farbcodiert) ---------- */
.btn {
  --btn-bg: var(--kutter);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em;
  font-size: var(--fs-400);
  padding: .9rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none; text-align: center;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn--kurs { --btn-bg: var(--kurs); --btn-fg: var(--hafen); }
.btn--kurs:hover { background: var(--kurs-dark); --btn-fg:#fff; }
.btn--pt   { --btn-bg: var(--pt); --btn-fg: #fff; }
.btn--pt:hover { background: var(--pt-dark); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: currentColor;
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.section--salz .btn--ghost, .section--weiss .btn--ghost { --btn-fg: var(--hafen); border-color: rgba(14,46,38,.3); }
.section--salz .btn--ghost:hover, .section--weiss .btn--ghost:hover { background: rgba(14,46,38,.05); }
.btn--lg { font-size: var(--fs-500); padding: 1.05rem 1.9rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Tag / Chip */
.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: var(--fs-200);
  letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: var(--r-pill);
  background: rgba(30,111,85,.1); color: var(--kutter);
}
.tag--kurs { background: rgba(143,191,63,.18); color: var(--kurs-dark); }
.tag--pt { background: rgba(255,107,53,.14); color: var(--pt-dark); }
.tag--firma { background: rgba(14,46,38,.08); color: var(--hafen); }

/* =====================================================================
   Header
   ===================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,46,38,.92);
  backdrop-filter: blur(10px);
  color: var(--salz);
  border-bottom: 1px solid var(--linie-dark);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; text-decoration: none; letter-spacing: -.02em; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--kutter); display: grid; place-items: center; color: #fff; font-size: .95rem; }
.brand small { display: block; font-family: var(--font-mono); font-size: .6rem; font-weight: 500; letter-spacing: .12em; color: var(--kurs); text-transform: uppercase; }
.nav { display: none; align-items: center; gap: 1.4rem; }
.nav a { text-decoration: none; font-size: var(--fs-300); color: #d7e0db; transition: color var(--dur); }
.nav a:hover { color: #fff; }
.nav .btn { padding: .55rem 1.1rem; font-size: var(--fs-300); min-height: 40px; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: .6rem; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: transform var(--dur), opacity var(--dur); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--hafen); padding: var(--sp-4) 1.25rem;
  display: flex; flex-direction: column; gap: .4rem;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur), transform var(--dur);
}
.mobile-nav[data-open="true"] { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a { text-decoration: none; padding: .85rem .5rem; font-size: 1.2rem; font-family: var(--font-display); font-weight: 700; border-bottom: 1px solid var(--linie-dark); }
.mobile-nav .btn { margin-top: var(--sp-2); }
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero { background: var(--hafen); color: var(--salz); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(30,111,85,.55), transparent 60%),
    radial-gradient(80% 60% at -10% 110%, rgba(143,191,63,.14), transparent 55%);
  pointer-events: none;
}
/* Hintergrund-Foto (wie steuer-azubis.de): Joey full-bleed + grüner Verlauf */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #0c1d16;
  background-image: url("../img/joey-hero.jpg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
/* Breites Studio-Foto full-bleed, links Verlauf für Textkontrast (Referenz: steuer-azubis.de) */
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,29,22,.88) 0%, rgba(12,29,22,.7) 30%, rgba(12,29,22,.3) 52%, rgba(12,29,22,0) 70%); }
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; gap: 0; min-height: min(86vh, 780px); padding-block: var(--sp-7); }
.hero__copy { max-width: 620px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--kurs); }
.hero__lead { font-size: var(--fs-500); color: #d7e0db; margin-top: var(--sp-3); max-width: 46ch; }
/* Drei gleich große CTAs (mobil gestapelt, ab 560px nebeneinander) */
.hero__ctas { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 560px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .hero__ctas .btn { flex: 1 1 0; min-width: 170px; }
}
.hero__trust {
  margin-top: var(--sp-4); padding-top: var(--sp-3);
  border-top: 1px solid var(--linie-dark);
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  font-family: var(--font-mono); font-size: var(--fs-200); letter-spacing: .04em;
  color: #b7c6bf;
}
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust li::before { content: "▹"; color: var(--kurs); }

/* Video / Poster */
.hero__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-3); aspect-ratio: 4 / 5; background: #06120e; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media .placeholder-note { position: absolute; inset: auto 0 0 0; }
.video-badge {
  position: absolute; left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(14,46,38,.8); backdrop-filter: blur(6px);
  color: #fff; padding: .5rem .85rem; border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: var(--fs-200); letter-spacing: .05em;
}
.video-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pt); box-shadow: 0 0 0 0 rgba(255,107,53,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,107,53,.6)} 70%{box-shadow:0 0 0 10px rgba(255,107,53,0)} 100%{box-shadow:0 0 0 0 rgba(255,107,53,0)} }

@media (max-width: 760px) {
  .hero-bg { background-position: 72% top; background-size: cover; }
  .hero-bg::after { background: linear-gradient(178deg, rgba(12,29,22,.88) 0%, rgba(12,29,22,.92) 42%, #0c1d16 78%); }
  .hero__inner { min-height: auto; padding-block: var(--sp-6); }
}

/* =====================================================================
   Signature: Kassen-Check (kompakter Balken, überlappt die Hero)
   ===================================================================== */
.kk {
  position: relative; z-index: 5;
  margin-top: calc(-1 * var(--sp-5));
  background: var(--hafen-2); color: var(--salz);
  border: 1px solid var(--linie-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  padding: clamp(1rem, 2.6vw, 1.5rem) clamp(1.1rem, 3vw, 1.9rem);
  display: grid; gap: 1rem 2rem;
}
@media (min-width: 780px) {
  .kk { grid-template-columns: minmax(210px, .85fr) 1.3fr; align-items: center; }
}
.kk__intro .eyebrow { justify-content: flex-start; }
.kk__intro h2 { font-size: var(--fs-600); color: #fff; margin-top: .15rem; line-height: 1.15; }
.kk__lead { font-size: var(--fs-300); color: #b7c6bf; margin-top: .35rem; }
/* Kurswahl im Kassen-Check (150 € Standard / 170 € Aqua) */
.kk-preiswahl { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.kk-preiswahl label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #0a231b; border: 2px solid var(--linie-dark); border-radius: var(--r-pill);
  padding: .45rem .85rem; cursor: pointer; font-size: var(--fs-300); color: #cdd8d2;
  transition: border-color var(--dur), color var(--dur);
}
.kk-preiswahl label:has(input:checked) { border-color: var(--kurs); color: #fff; }
.kk-preiswahl input { accent-color: var(--kurs); }
.kk-preiswahl b { color: var(--kurs); }
.kk-preiswahl small { display: block; font-size: .68rem; color: #8fa39b; line-height: 1.3; }
/* Kassenwechsel-Hinweis (nur bei Fremdkassen sichtbar) */
.kk-wechsel { margin-top: .6rem; font-size: var(--fs-200); color: #b7c6bf; line-height: 1.5; }
.kk-wechsel a { color: var(--kurs); font-weight: 600; }

.kk__tool { display: grid; gap: .6rem; align-content: start; }
.kassencheck__control { position: relative; }
.kk__search-ic { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: #7f938b; pointer-events: none; }
.kassen-input {
  width: 100%; padding: .7rem .9rem .7rem 2.5rem; font-size: var(--fs-400);
  background: #071b15; color: #fff;
  border: 2px solid var(--linie-dark); border-radius: var(--r-md);
}
.kassen-input::placeholder { color: #7f938b; }
.kassen-input:focus { border-color: var(--kurs); outline: none; }
.kassen-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
  background: #0a231b; border: 1px solid var(--linie-dark); border-radius: var(--r-md);
  max-height: 240px; overflow-y: auto; box-shadow: var(--shadow-3);
}
.kassen-list[hidden] { display: none; }
.kassen-list li { padding: .65rem 1rem; cursor: pointer; border-bottom: 1px solid var(--linie-dark); font-size: var(--fs-300); }
.kassen-list li:last-child { border-bottom: none; }
.kassen-list li:hover, .kassen-list li[aria-selected="true"] { background: var(--kutter); }
.kassen-list .no-hit { color: var(--nebel); cursor: default; }

/* Inline-Ergebnis (statt großer Anzeigetafel) */
.kk-result {
  display: flex; align-items: baseline; gap: .1rem .6rem; flex-wrap: wrap;
  padding: .6rem .9rem; border-radius: var(--r-md);
  background: #071b15; border: 1px solid var(--linie-dark);
}
.kk-result__value { font-family: var(--font-mono); font-weight: 600; font-size: var(--fs-500); color: var(--kurs); line-height: 1.2; }
.kk-result__value.is-free { color: var(--kurs); }
.kk-result[data-state="idle"] .kk-result__value { color: #5f7369; }
.kk-result__sub { font-size: var(--fs-200); color: #b7c6bf; line-height: 1.4; }
.tafel--flip { animation: flip .4s var(--ease); }
@keyframes flip { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }

.kk__foot { font-size: .72rem; color: var(--nebel); line-height: 1.5; margin-top: .9rem; text-align: center; }

/* Konfetti-Regen im Ergebnisfeld (AOK: "Komplett kostenfrei!") —
   eigene Klasse, da .confetti-piece dem Formular-Konfetti gehört (position:fixed) */
.kk-result { position: relative; overflow: hidden; }
.kk-confetti {
  position: absolute; top: -16px; z-index: 3;
  border-radius: 2px; pointer-events: none; opacity: 0;
  animation: confettiRain 1.2s cubic-bezier(.45,.05,.65,1) forwards;
}
@keyframes confettiRain {
  0%   { opacity: 1; transform: translate(0, 0) rotate(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--fall)) rotate(var(--rot)); }
}

/* =====================================================================
   Säule A — Präventionskurse
   ===================================================================== */
.aok-banner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  background: linear-gradient(120deg, rgba(143,191,63,.14), rgba(30,111,85,.1));
  border: 1px solid rgba(143,191,63,.35);
  border-radius: var(--r-lg); padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.aok-banner__badges { display: flex; gap: .75rem; flex-wrap: wrap; }
.siegel {
  display: inline-grid; place-items: center; text-align: center;
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px dashed var(--kutter); color: var(--kutter);
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .05em; padding: .4rem;
  background: #fff;
}
/* Offizielles AOK-Logo (weißer Hintergrund im PNG → weiße Karte) */
.aok-logo {
  display: block; height: 88px; width: auto;
  background: #fff; border-radius: var(--r-md);
  padding: 12px 16px; box-sizing: border-box;
  border: 1px solid var(--linie);
}
/* Siegel "Deutscher Standard Prävention" (rundes Logo, Ecken wegrunden) */
.siegel-img { display: block; height: 88px; width: auto; border-radius: 50%; }

/* Förder-Hinweis auf den Kurs-Unterseiten (AOK 100 % / andere i. d. R. ~80 %) */
.foerder-hinweis {
  margin-top: var(--sp-3); padding: var(--sp-2) var(--sp-3);
  background: rgba(143,191,63,.1); border: 1px solid rgba(143,191,63,.35);
  border-radius: var(--r-md); font-size: var(--fs-300);
}
.foerder-hinweis p { margin: 0 0 .5rem; }
.foerder-hinweis a { color: var(--kutter); font-weight: 700; }
.aok-banner__text strong { display: block; font-family: var(--font-display); font-size: var(--fs-600); color: var(--hafen); }
.aok-banner__text p { color: var(--nebel); font-size: var(--fs-300); margin-top: .25rem; }

.kurs-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 560px) { .kurs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .kurs-grid { grid-template-columns: repeat(3, 1fr); } }

.kurs-card {
  display: flex; flex-direction: column; gap: .75rem;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-lg);
  padding: var(--sp-3); box-shadow: var(--shadow-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.kurs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(143,191,63,.5); }
.kurs-card__top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.kurs-card__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(143,191,63,.16); color: var(--kurs-dark); display: grid; place-items: center; }
.kurs-card__icon svg { width: 26px; height: 26px; }
.kurs-card h3 { font-size: var(--fs-600); }
.kurs-card__desc { color: var(--nebel); font-size: var(--fs-300); flex-grow: 1; }
.kurs-card__meta { display: grid; gap: .35rem; font-size: var(--fs-200); font-family: var(--font-mono); color: var(--tinte); border-top: 1px dashed var(--linie); padding-top: .7rem; }
.kurs-card__meta div { display: flex; gap: .5rem; }
.kurs-card__meta dt { color: var(--nebel); min-width: 4.5rem; }
.kurs-card__zpp { color: var(--kutter); }
.kurs-card .btn { margin-top: .35rem; }
.warteliste-hint {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,107,53,.1); color: var(--pt-dark);
  border-radius: var(--r-sm); padding: .5rem .75rem;
  font-size: var(--fs-200); font-family: var(--font-mono); letter-spacing: .03em;
}
/* Anfänger-Hinweis auf der Kachel (nur Rückenfit) */
.kurs-card__anfaenger {
  display: flex; align-items: center; gap: .45rem;
  color: var(--kutter); font-size: var(--fs-200); font-weight: 600;
}
/* Teaser-Kachel "Weitere Kurse folgen" — wertig, ohne Details/CTA */
.kurs-card--teaser {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--hafen) 0%, var(--kutter) 100%);
  border: none; box-shadow: var(--shadow-2);
  justify-content: center; align-items: center;
  text-align: center; min-height: 220px; gap: .9rem;
}
.kurs-card--teaser::before { /* sanfter Lichtschein oben rechts */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% -10%, rgba(143,191,63,.4), transparent 60%);
  pointer-events: none;
}
.kurs-card--teaser > * { position: relative; }
.kurs-card--teaser .kurs-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--kurs);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.kurs-card--teaser h3 { color: #fff; }
.kurs-card--teaser .kurs-card__desc {
  flex-grow: 0; color: #c3e08a;
  font-family: var(--font-mono); font-size: var(--fs-300); letter-spacing: .12em;
  text-transform: uppercase;
}

/* =====================================================================
   Säule B — Personal Training (4-Phasen-Sequenz)
   ===================================================================== */
.phasen { display: grid; gap: var(--sp-2); counter-reset: phase; margin-bottom: var(--sp-5); }
@media (min-width: 760px) { .phasen { grid-template-columns: repeat(4, 1fr); } }
.phase {
  position: relative; background: var(--hafen-2); border: 1px solid var(--linie-dark);
  border-radius: var(--r-lg); padding: var(--sp-3);
  display: flex; flex-direction: column; gap: .5rem;
}
.phase__num { counter-increment: phase; font-family: var(--font-mono); font-weight: 600; font-size: var(--fs-200); color: var(--pt); letter-spacing: .1em; }
.phase__num::before { content: "PHASE " counter(phase, decimal-leading-zero); }
.phase h3 { font-size: var(--fs-500); color: #fff; }
.phase p { font-size: var(--fs-300); color: #cdd8d2; }
.phase::after { /* Verbindungs-Pfeil */
  content: "→"; position: absolute; right: -.9rem; top: 50%; transform: translateY(-50%);
  color: var(--pt); font-size: 1.2rem; z-index: 2;
}
.phase:last-child::after { display: none; }
@media (max-width: 759px) {
  .phase::after { content: "↓"; right: 50%; top: auto; bottom: -1.1rem; transform: translateX(50%); }
}

.pt-split { display: grid; gap: var(--sp-4); }
@media (min-width: 860px) { .pt-split { grid-template-columns: 1.1fr .9fr; align-items: start; } }
.zielgruppe { display: grid; gap: .6rem; }
.zielgruppe li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-400); }
.zielgruppe li svg { width: 1.3rem; height: 1.3rem; color: var(--pt); flex-shrink: 0; margin-top: .15rem; }
.pt-cta-card {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-lg);
  padding: var(--sp-4); box-shadow: var(--shadow-1); text-align: center;
}
.pt-cta-card h3 { color: var(--hafen); }
.pt-cta-card p { color: var(--nebel); margin: .5rem 0 1rem; }
.preis-hinweis { font-family: var(--font-mono); font-size: var(--fs-300); color: var(--pt-dark); }

/* Cal.com Zwei-Klick */
.calcom-embed { min-height: 120px; }
.consent-box {
  border: 1px dashed var(--linie); border-radius: var(--r-md);
  padding: var(--sp-3); text-align: center; background: var(--salz);
}
.consent-box p { font-size: var(--fs-300); color: var(--nebel); margin-bottom: .75rem; }
.section--hafen .consent-box { background: var(--hafen-2); border-color: var(--linie-dark); }
.section--hafen .consent-box p { color: #cdd8d2; }

/* =====================================================================
   Säule C — Firmenfitness (B2B)
   ===================================================================== */
.b2b-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 900px) { .b2b-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.b2b-benefits { display: grid; gap: var(--sp-2); }
@media (min-width: 520px) { .b2b-benefits { grid-template-columns: 1fr 1fr; } }
.benefit {
  background: rgba(255,255,255,.05); border: 1px solid var(--linie-dark);
  border-radius: var(--r-md); padding: var(--sp-3);
}
.benefit svg { width: 2rem; height: 2rem; color: var(--kurs); margin-bottom: .5rem; }
.benefit h4 { font-family: var(--font-display); font-size: var(--fs-500); color: #fff; margin-bottom: .25rem; }
.benefit p { font-size: var(--fs-300); color: #cdd8d2; }
.gesetz-card {
  background: linear-gradient(120deg, rgba(143,191,63,.12), transparent);
  border: 1px solid rgba(143,191,63,.3);
  border-radius: var(--r-md); padding: var(--sp-3); margin-top: var(--sp-3);
}
.gesetz-card strong { color: var(--kurs); font-family: var(--font-mono); }
.gesetz-card p { font-size: var(--fs-300); color: #cdd8d2; }

/* =====================================================================
   Formulare
   ===================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-lg);
  padding: clamp(1.25rem, 4vw, 2.5rem); box-shadow: var(--shadow-2);
}
.section--hafen .form-card { background: var(--hafen-2); border-color: var(--linie-dark); color: var(--salz); }
.form-grid { display: grid; gap: var(--sp-3); }
@media (min-width: 620px) { .form-grid .col-2 { grid-column: span 2; } .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: var(--fs-300); font-weight: 600; }
.field .req { color: var(--pt); }
.field input, .field select, .field textarea {
  padding: .8rem 1rem; border: 2px solid var(--linie); border-radius: var(--r-md);
  background: #fff; color: var(--tinte); font-size: var(--fs-400);
}
.section--hafen .field input, .section--hafen .field select, .section--hafen .field textarea {
  background: #071b15; border-color: var(--linie-dark); color: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--kutter); outline-offset: 1px; }
.field textarea { min-height: 120px; resize: vertical; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--pt); }
.field__error { color: var(--pt-dark); font-size: var(--fs-200); display: none; }
.field--error .field__error { display: block; }
.section--hafen .field__error { color: #ffb199; }
.checkbox { flex-direction: row; align-items: flex-start; gap: .6rem; }
.checkbox input { width: 1.15rem; height: 1.15rem; margin-top: .25rem; flex-shrink: 0; }
.checkbox label { font-weight: 400; font-size: var(--fs-300); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success {
  display: none; text-align: center; padding: var(--sp-4);
}
.form-success svg { width: 3.5rem; height: 3.5rem; color: var(--kurs); margin: 0 auto var(--sp-2); }
.form-success h3 { color: var(--hafen); }
.section--hafen .form-success h3 { color: #fff; }
.form.is-success .form-body { display: none; }
.form.is-success .form-success { display: block; }
.conditional { display: none; }
.conditional.is-visible { display: grid; gap: var(--sp-3); }

/* =====================================================================
   Kundenstimmen
   ===================================================================== */
.stimme-inline {
  background: #fff; border: 1px solid var(--linie); border-left: 4px solid var(--kurs);
  border-radius: var(--r-md); padding: var(--sp-3); box-shadow: var(--shadow-1);
  display: flex; gap: var(--sp-2); align-items: flex-start; margin-top: var(--sp-3);
}
.stimme-inline.pt { border-left-color: var(--pt); }
.stimme-inline.firma { border-left-color: var(--hafen); }
.section--hafen .stimme-inline { background: var(--hafen-2); border-color: var(--linie-dark); color: var(--salz); }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--kutter); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; object-fit: cover;
}
.stimme__transform { font-family: var(--font-mono); font-size: var(--fs-200); color: var(--kutter); letter-spacing: .03em; margin-bottom: .3rem; }
.stimme__quote { font-size: var(--fs-400); }
.stimme__meta { font-size: var(--fs-300); color: var(--nebel); margin-top: .4rem; }

.stimmen-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-4); }
.filter-btn {
  font-family: var(--font-mono); font-size: var(--fs-200); letter-spacing: .05em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: var(--r-pill); border: 1.5px solid var(--linie); color: var(--nebel);
  transition: all var(--dur);
}
.filter-btn[aria-pressed="true"] { background: var(--hafen); color: #fff; border-color: var(--hafen); }
.stimmen-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 620px) { .stimmen-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .stimmen-grid { grid-template-columns: repeat(3, 1fr); } }
/* Karten-Duo unter der PT-Säule: immer max. 2 Spalten */
.stimmen-grid--zwei { margin-top: var(--sp-4); }
@media (min-width: 940px) { .stimmen-grid--zwei { grid-template-columns: 1fr 1fr; } }
.stimme-card {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-lg);
  padding: var(--sp-3); box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: .6rem;
}
.stimme-card[hidden] { display: none; }
.stimme-card__head { display: flex; align-items: center; gap: .75rem; }
.stimme-card__head strong { font-family: var(--font-display); }
.stimme-card.is-placeholder { border-style: dashed; opacity: .85; }

/* =====================================================================
   Termine & Ort
   ===================================================================== */
.ort-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 860px) { .ort-grid { grid-template-columns: 1fr 1fr; } }
/* Beide Standort-Boxen gleich groß: Adresskarten strecken, Karten darunter bündig */
.ort-block { display: flex; flex-direction: column; gap: var(--sp-3); }
.ort-block .adresse-card { flex: 1; }
.ort-block .map-twoclick { margin-top: 0; }
.ort-block { display: grid; gap: var(--sp-3); align-content: start; }
.map-twoclick {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 220px;
  background: #0a231b url("../img/map-placeholder.svg") center/cover no-repeat;
  display: grid; place-items: center; text-align: center; color: #fff; padding: var(--sp-4);
}
.map-twoclick .btn { position: relative; }
.map-twoclick__hint { position: relative; background: rgba(14,46,38,.75); padding: 1rem 1.25rem; border-radius: var(--r-md); max-width: 34ch; }
.map-twoclick iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.adresse-card { background: #fff; border: 1px solid var(--linie); border-radius: var(--r-lg); padding: var(--sp-4); box-shadow: var(--shadow-1); }
.adresse-card h3 { margin-bottom: .5rem; }
.adresse-card address { font-style: normal; font-size: var(--fs-500); line-height: 1.7; }
.adresse-card .mono { font-family: var(--font-mono); font-size: var(--fs-300); color: var(--nebel); }
.termin-liste { margin-top: var(--sp-3); display: grid; gap: .5rem; }
.termin-liste li { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--font-mono); font-size: var(--fs-300); border-bottom: 1px dashed var(--linie); padding-bottom: .5rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { display: grid; gap: .5rem; max-width: var(--wrap-narrow); margin-inline: auto; }
.faq-item { border: 1px solid var(--linie); border-radius: var(--r-md); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-500);
}
.faq-q__icon { flex-shrink: 0; width: 1.5rem; height: 1.5rem; position: relative; transition: transform var(--dur); }
.faq-q__icon::before, .faq-q__icon::after { content: ""; position: absolute; background: var(--kutter); border-radius: 2px; }
.faq-q__icon::before { inset: 0 45%; }
.faq-q__icon::after { inset: 45% 0; }
.faq-q[aria-expanded="true"] .faq-q__icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-a__inner { padding: 0 1.25rem 1.25rem; color: var(--nebel); }

/* =====================================================================
   Chat-Widget
   ===================================================================== */
.chat-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--kutter); color: #fff; box-shadow: var(--shadow-3);
  display: grid; place-items: center; transition: transform var(--dur), background var(--dur);
}
.chat-fab:hover { transform: scale(1.06); background: var(--kutter-dark); }
.chat-fab svg { width: 28px; height: 28px; }
.chat-fab[data-open="true"] { background: var(--hafen); }
.chat-panel {
  position: fixed; right: 1.1rem; bottom: 5.5rem; z-index: 200;
  width: min(370px, calc(100vw - 2.2rem)); max-height: min(560px, calc(100vh - 8rem));
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-3);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(12px) scale(.98); opacity: 0; pointer-events: none;
  transition: opacity var(--dur), transform var(--dur);
}
.chat-panel[data-open="true"] { opacity: 1; transform: none; pointer-events: auto; }
.chat-head { background: var(--hafen); color: #fff; padding: var(--sp-3); display: flex; gap: .75rem; align-items: center; }
.chat-head .avatar { width: 42px; height: 42px; font-size: .95rem; }
.chat-head strong { display: block; font-family: var(--font-display); }
.chat-head small { color: var(--kurs); font-family: var(--font-mono); font-size: .65rem; letter-spacing: .05em; }
.chat-close { margin-left: auto; color: #fff; padding: .35rem; }
.chat-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: var(--sp-3); display: flex; flex-direction: column; gap: .6rem; background: var(--salz); }
.chat-msg { max-width: 88%; padding: .7rem 1rem; border-radius: 14px; font-size: var(--fs-300); line-height: 1.5; }
.chat-msg.bot { background: #fff; border: 1px solid var(--linie); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--kutter); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg a { font-weight: 700; color: var(--kutter); }
.chat-msg.user a { color: #fff; }
/* Quick-Replies als Pills IM scrollbaren Body (wie steuer-azubis.de) */
.chat-quick { display: flex; flex-direction: column; gap: .5rem; align-self: stretch; }
.chat-quick button {
  text-align: left; padding: .65rem .9rem; border: 1.5px solid var(--linie); background: #fff; color: var(--kutter);
  border-radius: var(--r-md); font: inherit; font-size: var(--fs-300); font-weight: 600; line-height: 1.35;
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
}
.chat-quick button:hover { border-color: var(--kutter); background: var(--kutter); color: #fff; }
.chat-quick button.alt { border-style: dashed; color: var(--nebel); font-weight: 500; }
/* Kontakt-Zeile (WhatsApp/E-Mail) innerhalb einer Bot-Nachricht */
.chat-contact { display: flex; flex-direction: column; gap: .5rem; margin-top: .6rem; }
.chat-contact .btn { justify-content: center; font-size: var(--fs-300); padding: .6rem 1rem; min-height: 42px; }
/* Eingabezeile am Fuß */
.chat-input { display: flex; gap: .5rem; padding: .75rem; background: #fff; border-top: 1px solid var(--linie); flex: 0 0 auto; }
.chat-input input { flex: 1; min-width: 0; font: inherit; font-size: var(--fs-300); border: 1.5px solid var(--linie); border-radius: 10px; padding: .6rem .8rem; color: var(--tinte); }
.chat-input input:focus { outline: none; border-color: var(--kutter); }
.chat-input > button { flex: 0 0 auto; width: 44px; height: 44px; border: 0; border-radius: 10px; cursor: pointer; background: var(--kutter); color: #fff; display: grid; place-items: center; transition: background .2s; }
.chat-input > button:hover { background: var(--kutter-dark); }
.chat-input > button svg { width: 20px; height: 20px; }
.btn--wa { --btn-bg: #25D366; --btn-fg: #06301b; }
.btn--mail { --btn-bg: var(--hafen); --btn-fg: #fff; }

/* =====================================================================
   Sticky Mobile-CTA
   ===================================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: rgba(14,46,38,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--linie-dark);
  padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
  display: flex; gap: .5rem;
  transform: translateY(110%); transition: transform var(--dur) var(--ease);
}
.sticky-cta[data-show="true"] { transform: none; }
.sticky-cta .btn { flex: 1; min-height: 46px; font-size: var(--fs-300); padding: .6rem .5rem; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: var(--hafen); color: #b7c6bf; padding-block: var(--sp-6) var(--sp-4); }
.footer__grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 { font-family: var(--font-display); color: #fff; font-size: var(--fs-400); margin-bottom: var(--sp-2); text-transform: uppercase; letter-spacing: .05em; }
.footer a { color: #b7c6bf; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul { display: grid; gap: .5rem; }
.footer__bottom { margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: 1px solid var(--linie-dark); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: var(--fs-200); }
.footer .brand { color: #fff; }
.footer .brand small { color: var(--kurs); }
.social-row { display: flex; gap: .6rem; margin-top: var(--sp-2); }
.social-row a { width: 42px; height: 42px; border-radius: 12px; background: var(--hafen-2); display: grid; place-items: center; color: #fff; }
.social-row a:hover { background: var(--kutter); }
.social-row svg { width: 22px; height: 22px; }

/* =====================================================================
   Platzhalter-Markierung (sichtbar, damit nichts Leeres live geht)
   ===================================================================== */
.ph {
  display: inline-block; font-family: var(--font-mono); font-size: .85em;
  background: repeating-linear-gradient(45deg, rgba(255,107,53,.14), rgba(255,107,53,.14) 8px, rgba(255,107,53,.22) 8px, rgba(255,107,53,.22) 16px);
  color: var(--pt-dark); border: 1px dashed var(--pt); border-radius: 4px;
  padding: .05em .4em; letter-spacing: .02em;
}
.ph-block {
  display: grid; place-items: center; text-align: center; min-height: 200px;
  background: repeating-linear-gradient(45deg, rgba(14,46,38,.04), rgba(14,46,38,.04) 12px, rgba(14,46,38,.07) 12px, rgba(14,46,38,.07) 24px);
  border: 2px dashed var(--nebel); border-radius: var(--r-md); color: var(--nebel);
  font-family: var(--font-mono); font-size: var(--fs-300); padding: var(--sp-3);
}
.placeholder-note {
  background: rgba(14,46,38,.8); color: #fff; font-family: var(--font-mono);
  font-size: var(--fs-200); padding: .5rem .75rem; text-align: center;
}

/* =====================================================================
   DYNAMIK — Scroll-Reveal, Squiggle-Underline, Bento, Zähler
   (Stil-Anleihe an steuer-azubis.de, an Joeys Farben angepasst)
   ===================================================================== */

/* Scroll-Reveal mit gestaffelter Verzögerung.
   Der versteckte Zustand gilt NUR bei aktivem JS (html.js) — ohne JS ist
   alles sofort sichtbar, nichts bleibt je unsichtbar hängen. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* Handgezeichnete Unterstreichung unter einem Hero-Wort */
.mark-word { position: relative; white-space: nowrap; color: var(--kurs); }
.mark-word svg { position: absolute; left: -2%; width: 104%; height: .38em; bottom: -.16em; overflow: visible; }
.mark-word svg path {
  fill: none; stroke: var(--kurs); stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 240; stroke-dashoffset: 0; transition: stroke-dashoffset 1s .35s var(--ease);
}
.js .mark-word svg path { stroke-dashoffset: 240; }
.js .mark-word.drawn svg path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .js .mark-word svg path { stroke-dashoffset: 0; transition: none; } }

/* Bento-Grid (Visualisierung „Warum Joey“) */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: minmax(150px, auto); }
@media (max-width: 760px) { .bento { grid-template-columns: repeat(2, 1fr); } }
.bento-cell {
  border-radius: var(--r-lg); padding: clamp(20px, 2.4vw, 30px); position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--linie); box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.bento-cell .b-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(30,111,85,.12); color: var(--kutter); display: grid; place-items: center; margin-bottom: auto; }
.bento-cell .b-icon svg { width: 26px; height: 26px; }
.bento-cell h3 { font-size: 1.1rem; line-height: 1.25; }
.bento-cell p { font-size: .9rem; color: var(--nebel); }
.stat-num { font-family: var(--font-mono); font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 600; color: var(--hafen); line-height: 1; font-variant-numeric: tabular-nums; }
.b-big { grid-area: span 2 / span 2; color: #fff; border: 0; justify-content: flex-end; min-height: 320px; }
.b-big::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--hafen) url("../img/joey.jpg") center 30%/cover no-repeat; filter: saturate(.92) contrast(1.03); transition: transform .6s var(--ease); }
.bento .b-big:hover::before { transform: scale(1.04); }
.b-big::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(30,111,85,.34) 0%, rgba(14,46,38,.35) 40%, rgba(14,46,38,.92) 85%); mix-blend-mode: normal; }
.b-big > * { position: relative; z-index: 2; }
.b-big h3 { color: #fff; font-size: clamp(1.3rem, 2vw, 1.6rem); }
.b-big p { color: rgba(255,255,255,.85); max-width: 42ch; }
.b-accent { border: 0; color: #fff; justify-content: center; text-align: center; gap: 6px; background: linear-gradient(135deg, var(--kutter), var(--kurs)); }
.b-accent.is-pt { background: linear-gradient(135deg, var(--pt), #ff9a4d); }
.b-accent .big-num { font-family: var(--font-mono); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.b-accent p { color: rgba(255,255,255,.9); font-size: .92rem; }

/* „Kasse zahlt“-Badge auf jeder Kurskachel */
.kurs-card__badge {
  display: inline-flex; align-items: center; gap: .35rem; align-self: flex-start;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--kurs-dark); background: rgba(143,191,63,.16); padding: .3rem .6rem; border-radius: var(--r-pill);
}
.kurs-card__badge svg { width: .95em; height: .95em; }

/* B2B-Rechenbeispiel */
.rechnung { background: #fff; border: 1px solid rgba(143,191,63,.4); border-radius: var(--r-lg); padding: var(--sp-3); margin-top: var(--sp-3); color: var(--tinte); }
.rechnung h4 { font-family: var(--font-display); color: var(--hafen); font-size: var(--fs-500); margin-bottom: .75rem; }
.rechnung dl { display: grid; gap: .5rem; font-family: var(--font-mono); font-size: var(--fs-300); }
.rechnung dl > div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--linie); padding-bottom: .5rem; }
.rechnung .total { border: none; font-weight: 600; color: var(--kutter); font-size: var(--fs-500); padding-top: .25rem; }
.rechnung small { display: block; color: var(--nebel); font-size: var(--fs-200); margin-top: .75rem; }

/* Namentlicher B2B-Ansprechpartner */
.kontaktperson { display: flex; gap: 1rem; align-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--linie-dark); border-radius: var(--r-md); padding: var(--sp-3); margin-top: var(--sp-3); }
.kontaktperson .avatar { width: 60px; height: 60px; font-size: 1.2rem; }
.kontaktperson strong { display: block; color: #fff; font-family: var(--font-display); font-size: var(--fs-500); }
.kontaktperson span { font-size: var(--fs-300); color: #cdd8d2; }
.kontaktperson a { color: var(--kurs); text-decoration: none; font-family: var(--font-mono); font-size: var(--fs-300); }

/* Social-Proof-Pill im Hero */
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: var(--sp-3);
  background: rgba(255,255,255,.06); border: 1px solid var(--linie-dark);
  border-radius: var(--r-pill); padding: .5rem 1rem; font-size: var(--fs-300); color: #d7e0db;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--kurs); box-shadow: 0 0 0 4px rgba(143,191,63,.2); }

/* =====================================================================
   FOTO — dezenter Grün-Duoton (fügt Joeys Foto ins Farbschema)
   ===================================================================== */
.img-duotone { position: relative; overflow: hidden; }
.img-duotone img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.03); }
.img-duotone::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(150deg, rgba(30,111,85,.34), rgba(14,46,38,.14));
  mix-blend-mode: multiply;
}
.avatar-photo { padding: 0; overflow: hidden; }
.avatar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; filter: saturate(.92) contrast(1.03); }

/* =====================================================================
   ERSTATTUNGS-BALKEN — visualisiert „Kasse zahlt → dein Anteil 0 €“
   ===================================================================== */
.erstattung-bar { margin-top: clamp(.5rem, 2vw, var(--sp-3)); }
.erstattung-bar__track {
  position: relative; height: 36px; border-radius: var(--r-pill);
  background: #071b15; border: 1px solid var(--linie-dark); overflow: hidden;
}
.erstattung-bar__fill {
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: linear-gradient(90deg, var(--kutter), var(--kurs));
  border-radius: var(--r-pill);
  transition: width 1.2s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.js .reveal.visible .erstattung-bar__fill,
.erstattung-bar.is-on .erstattung-bar__fill { width: var(--fill, 100%); }
.erstattung-bar__fill span {
  font-family: var(--font-mono); font-size: var(--fs-300); color: var(--hafen);
  font-weight: 600; white-space: nowrap;
}
.erstattung-bar__legend {
  display: flex; justify-content: space-between; gap: 1rem;
  font-family: var(--font-mono); font-size: var(--fs-200); color: #b7c6bf; margin-top: .5rem;
}
.erstattung-bar__legend .you { color: var(--kurs); }
@media (prefers-reduced-motion: reduce) { .erstattung-bar__fill { transition: none; } }

/* =====================================================================
   KURS-FILTER-CHIPS (nutzt .filter-btn aus dem Stimmen-Filter)
   ===================================================================== */
.kurs-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-4); }
.kurs-card[hidden] { display: none; }

/* =====================================================================
   WELLEN-ÜBERGÄNGE zwischen Abschnitten (Hafen-/Wasser-Motiv)
   ===================================================================== */
.has-wave { position: relative; }
.wave { position: absolute; top: -1px; left: 0; width: 100%; height: 46px; line-height: 0; color: var(--salz); z-index: 1; }
.wave svg { display: block; width: 100%; height: 100%; }
.wave path { fill: currentColor; }
.wave--weiss { color: #fff; }
.wave--salz  { color: var(--salz); }
.wave--hafen  { color: var(--hafen); }
.wave--hafen2 { color: var(--hafen-2); }
.wave--hero   { color: #0c1d16; } /* dunkles Grün des Hero-Fotos */
@media (min-width: 700px) { .wave { height: 64px; } }

/* =====================================================================
   PORTIERT VON steuer-azubis.de (in Joeys Grün übersetzt)
   Scroll-Fortschritt · Trust-Bar · Partner-Chips · Über-Joey · Sterne
   ===================================================================== */

/* Scroll-Fortschrittsbalken */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: linear-gradient(90deg, var(--kutter), var(--kurs)); pointer-events: none; }

/* Trust-Bar — schwebende Statistik-Karte */
.trustbar { position: relative; z-index: 6; }
.trust-card { background: #fff; border: 1px solid var(--linie); border-radius: var(--r-lg); box-shadow: var(--shadow-3); padding: clamp(22px, 3vw, 40px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-grid > div { position: relative; }
.trust-grid > div + div::before { content: ""; position: absolute; left: -12px; top: 12%; bottom: 12%; width: 1px; background: var(--linie); }
.trust-num { font-family: var(--font-mono); font-size: clamp(1.6rem, 3.4vw, 2.5rem); font-weight: 600; color: var(--hafen); line-height: 1.1; font-variant-numeric: tabular-nums; }
.trust-label { font-weight: 600; color: var(--nebel); margin-top: 6px; font-size: .9rem; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; } .trust-grid > div + div::before { display: none; } }

/* Hero-Partner/Trust-Chips mit Tooltip */
/* Eine Reihe, kein Umbruch — auf schmalen Screens horizontal scrollbar */
.hero-partners { display: flex; align-items: center; flex-wrap: nowrap; gap: 10px; margin-top: var(--sp-3); position: relative; z-index: 5; }
.hero-partners > * { flex: 0 0 auto; }
.hp-chip { white-space: nowrap; }
@media (max-width: 900px) {
  .hero-partners { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
}
.hp-label { font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #8fa39b; }
.hp-chip { position: relative; display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.94); color: var(--hafen); border-radius: 10px; padding: .5rem .8rem; font-family: var(--font-mono); font-size: .72rem; font-weight: 600; box-shadow: var(--shadow-2); cursor: help; transition: transform .25s var(--ease); }
.hp-chip:hover, .hp-chip:focus-visible { transform: scale(1.06); z-index: 10; }
.hp-chip svg { width: 1.05em; height: 1.05em; color: var(--kutter); }
.hp-chip::after { content: attr(data-tip); position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px); width: max-content; max-width: 250px; white-space: normal; text-align: left; background: var(--hafen); color: #fff; font-family: var(--font-text); font-size: .78rem; font-weight: 500; line-height: 1.5; text-transform: none; letter-spacing: 0; padding: 10px 14px; border-radius: 10px; box-shadow: var(--shadow-3); opacity: 0; visibility: hidden; pointer-events: none; z-index: 20; transition: opacity .25s, transform .25s, visibility .25s; }
.hp-chip:hover::after, .hp-chip:focus-visible::after { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* Über Joey (about-grid mit Foto, schwebendem Chip, Zitat, Badges) */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-media { position: relative; margin: 26px 0 30px 26px; }
.about-media::before { content: ""; position: absolute; top: -26px; left: -26px; right: 34%; bottom: 36%; background: rgba(143,191,63,.18); border-radius: 20px; }
.about-media::after { content: ""; position: absolute; right: -20px; bottom: -20px; width: 130px; height: 130px; background: radial-gradient(circle, rgba(30,111,85,.4) 2.5px, transparent 2.5px); background-size: 17px 17px; border-radius: 18px; }
.about-photo { position: relative; z-index: 1; border-radius: 16px; aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow-3); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; filter: saturate(.95) contrast(1.02); }
.about-chip { position: absolute; z-index: 2; left: -18px; bottom: 30px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-2); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.about-chip .big { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--kutter); line-height: 1; }
.about-chip .small { font-size: .74rem; font-weight: 600; color: var(--nebel); line-height: 1.35; }
.about-quote { font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 600; font-style: italic; color: var(--hafen); border-left: 4px solid var(--kurs); padding-left: 20px; margin: 0 0 20px; }
.about-badges { display: flex; flex-direction: column; gap: 12px; margin-top: var(--sp-3); }
.about-badge { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--linie); border-radius: 10px; padding: 12px 16px; font-weight: 600; color: var(--hafen); font-size: .95rem; }
.about-badge svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--kutter); }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } .about-media { margin: 26px 20px 36px 26px; } }

/* Testimonial-Sterne + Anführungszeichen */
.quote-mark { font-family: Georgia, "Times New Roman", serif; font-size: 2.6rem; line-height: .5; color: var(--kurs); opacity: .55; }
.stars { display: flex; gap: 3px; color: #F0A832; margin-top: .4rem; }
.stars svg { width: 15px; height: 15px; }

/* Nach-oben-Button */
.to-top { position: fixed; left: 1.1rem; bottom: 5.3rem; z-index: 150; width: 46px; height: 46px; border-radius: 50%; background: var(--hafen); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-2); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s, transform .25s, visibility .25s, background .25s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--kutter); }
.to-top svg { width: 22px; height: 22px; }
@media (min-width: 900px) { .to-top { left: auto; right: 1.1rem; bottom: 1.5rem; } }

/* PT-Phasen fallen nacheinander ein — zack, zack, zack (mit leichtem Überschwung) */
.phase.reveal { transition: opacity .5s var(--ease), transform .6s cubic-bezier(.34, 1.45, .64, 1), box-shadow .25s var(--ease), border-color .25s; }
.js .phase.reveal:not(.visible) { opacity: 0; transform: translateY(-28px) scale(.95); }
.js .phasen .phase.reveal:nth-child(1) { transition-delay: .0s; }
.js .phasen .phase.reveal:nth-child(2) { transition-delay: .16s; }
.js .phasen .phase.reveal:nth-child(3) { transition-delay: .32s; }
.js .phasen .phase.reveal:nth-child(4) { transition-delay: .48s; }
.phase:hover { transform: translateY(-3px); border-color: rgba(255,107,53,.5); box-shadow: var(--shadow-2); }
@media (prefers-reduced-motion: reduce) { .js .phase.reveal:not(.visible) { opacity: 1; transform: none; } }

/* Firmenfitness-Benefit-Kacheln: leichte Hover-Animation */
.benefit { transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s, background .25s; }
.benefit:hover { transform: translateY(-4px); border-color: rgba(143,191,63,.5); background: rgba(255,255,255,.09); box-shadow: var(--shadow-2); }
.benefit svg { transition: transform .35s var(--ease); }
.benefit:hover svg { transform: scale(1.12) rotate(-4deg); }

/* Firmenfitness-CTA-Karte (statt separatem Formular) */
.cta-card-firma { display: flex; flex-direction: column; gap: 1rem; text-align: center; align-items: center; justify-content: center; }
.cta-card-firma .ic { flex: 0 0 auto; }
.cta-check { display: grid; gap: .6rem; text-align: left; margin: .25rem 0 .5rem; width: 100%; max-width: 340px; }
.cta-check li { display: flex; align-items: center; gap: .6rem; color: #cdd8d2; font-size: var(--fs-300); }
.cta-check li svg { width: 1.1em; height: 1.1em; color: var(--kurs); flex: 0 0 auto; }

/* =====================================================================
   PERSONAL-TRAINING-TIMELINE — scroll-geführt (Phase 1 → 2 → 3 → 4)
   Eine Schiene „fließt“ nach unten, jede Phase leuchtet nacheinander auf.
   ===================================================================== */
.pt-timeline { position: relative; max-width: 760px; margin: 0 auto var(--sp-5); }
.pt-rail { position: absolute; left: 26px; top: 26px; bottom: 26px; width: 4px; background: rgba(255,255,255,.12); border-radius: 4px; overflow: hidden; }
.pt-rail__fill { position: absolute; inset: 0 0 auto 0; width: 100%; height: 100%; background: linear-gradient(180deg, var(--pt), #ff9a4d); border-radius: 4px; }
.js .pt-rail__fill { height: 0; transition: height .15s linear; }
.pt-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.pt-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.1rem; align-items: start; }
.pt-node {
  position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 50%;
  background: var(--hafen); border: 2px solid rgba(255,255,255,.16);
  display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 1.1rem; color: #fff;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.pt-node__check { display: none; width: 22px; height: 22px; }
.js .pt-step:not(.is-active) .pt-node { border-color: rgba(255,255,255,.14); color: #6b7c75; }
.pt-step.is-active .pt-node { background: var(--pt); border-color: var(--pt); color: #fff; box-shadow: 0 0 0 6px rgba(255,107,53,.18); transform: scale(1.05); }
.pt-step.is-done .pt-node__num { display: none; }
.pt-step.is-done .pt-node__check { display: block; }
.pt-step__card {
  background: var(--hafen-2); border: 1px solid var(--linie-dark); border-radius: var(--r-lg);
  padding: var(--sp-3); transition: opacity .45s var(--ease), transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.js .pt-step:not(.is-active) .pt-step__card { opacity: .42; transform: translateX(10px); }
.pt-step.is-active .pt-step__card { border-color: rgba(255,107,53,.4); box-shadow: var(--shadow-2); }
.pt-step__label { font-family: var(--font-mono); font-size: var(--fs-200); letter-spacing: .12em; color: var(--pt); text-transform: uppercase; }
.pt-step__card h3 { color: #fff; font-size: var(--fs-600); margin: .2rem 0 .35rem; }
.pt-step__card p { color: #cdd8d2; font-size: var(--fs-300); }
@media (prefers-reduced-motion: reduce) {
  .js .pt-step:not(.is-active) .pt-step__card { opacity: 1; transform: none; }
  .js .pt-rail__fill { transition: none; }
}

/* =====================================================================
   POLITUR-PAKET — Scrollspy · Parallax · Button/Karten · Erstattungs-Flow · Konfetti
   ===================================================================== */

/* Scrollspy: aktiver Menüpunkt */
.nav a { position: relative; }
.nav a.active { color: #fff; }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--kurs); border-radius: 2px; }

/* Parallax nur ab 760px aktiv (siehe canParallax() in main.js) — der Überstand
   fürs Nachziehen beim Scrollen darf das Bild unter 760px NICHT zusätzlich
   stauchen/hineinzoomen, sonst wirkt der Bildausschnitt auf Mobile viel enger. */
@media (min-width: 760px) {
  /* Überstand nur nach unten: Parallax schiebt das Bild abwärts, oben bleibt
     Joeys Kopf komplett sichtbar (top-anchored). */
  .hero-bg { top: 0; height: 124%; will-change: transform; }
}
@media (prefers-reduced-motion: reduce) { .hero-bg { top: 0; height: 100%; transform: none !important; } }

/* Wellen — bewusst statisch, ohne Bewegung */

/* Button-Politur: Shine-Sweep + Pfeil gleitet */
.btn { position: relative; overflow: hidden; }
.btn::before { content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 45%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent); transform: skewX(-18deg); pointer-events: none; opacity: 0; }
.btn:hover::before { animation: btnShine .7s ease; }
@keyframes btnShine { 0% { opacity: 1; left: -80%; } 100% { opacity: 1; left: 140%; } }
.btn svg { transition: transform .25s var(--ease); position: relative; }
.btn:hover svg { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .btn:hover::before { animation: none; } .btn:hover svg { transform: none; } }

/* Karten-Tilt (3D zum Cursor, per JS gesetzt) */
.tilt { transition: transform .18s var(--ease), box-shadow .25s var(--ease); transform-style: preserve-3d; }

/* Erstattungs-Flow: 1 → 2 → 3 pulsieren nacheinander (der Ablauf „fließt“) */
@media (prefers-reduced-motion: no-preference) {
  .erstattung-steps li::before { animation: stepPulse 3s ease-in-out infinite; }
  .erstattung-steps li:nth-child(2)::before { animation-delay: .45s; }
  .erstattung-steps li:nth-child(3)::before { animation-delay: .9s; }
}
@keyframes stepPulse {
  0%, 72%, 100% { box-shadow: 0 0 0 0 rgba(143,191,63,0); background: var(--kutter); }
  20% { box-shadow: 0 0 0 7px rgba(143,191,63,.22); background: var(--kurs); color: var(--hafen); }
}

/* Erfolg: Icon poppt beim Absenden */
.form.is-success .form-success svg { animation: successPop .55s var(--ease) both; }
@keyframes successPop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }

/* Konfetti */
.confetti-piece { position: fixed; top: -24px; width: 9px; height: 14px; z-index: 400; pointer-events: none; border-radius: 2px; will-change: transform, opacity; }
@keyframes confettiFall { 0% { transform: translateY(-24px) rotate(0); opacity: 1; } 100% { transform: translateY(105vh) rotate(720deg); opacity: .85; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.lede { font-size: var(--fs-500); color: var(--nebel); }
.section--hafen .lede { color: #cdd8d2; }

/* =====================================================================
   FEINSCHLIFF-PAKET — Anker-Offset · Hero-Schritte · Chat-Teaser ·
   Mobile-Fixes · Kursart-Icons · FAQ-Chat-Link
   ===================================================================== */

/* Anker landen nicht mehr unterm Sticky-Header */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Hero: 3 Glas-Schritte — sofortige Orientierung */
.hero-steps { display: grid; gap: .7rem; margin-top: var(--sp-4); }
@media (min-width: 700px) { .hero-steps { grid-template-columns: repeat(3, 1fr); } }
.hero-step {
  display: flex; gap: .7rem; align-items: flex-start;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 12px; padding: .85rem 1rem;
  transition: background .25s var(--ease), border-color .25s, transform .25s var(--ease);
}
.hero-step:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.hero-step .n {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; margin-top: 1px;
  background: linear-gradient(135deg, var(--kutter), var(--kurs)); color: #fff;
  font-family: var(--font-mono); font-size: .8rem; font-weight: 600;
  display: grid; place-items: center;
}
.hero-step strong { display: block; color: #fff; font-size: .92rem; line-height: 1.35; }
.hero-step span { display: block; color: rgba(255,255,255,.65); font-size: .8rem; margin-top: 3px; line-height: 1.45; }

/* Chat-Teaser-Sprechblase (einmal pro Sitzung) */
.chat-teaser {
  position: fixed; right: 5.6rem; bottom: 1.4rem; z-index: 199;
  background: #fff; color: var(--tinte); border-radius: 14px; box-shadow: var(--shadow-3);
  padding: .8rem 1.9rem .8rem 1rem; font-size: var(--fs-300); line-height: 1.45; max-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.chat-teaser.show { opacity: 1; visibility: visible; transform: none; }
.chat-teaser strong { color: var(--kutter); }
.chat-teaser .ct-close { position: absolute; top: 2px; right: 8px; font-size: 1.1rem; color: var(--nebel); padding: .15rem; }
.chat-teaser .ct-close:hover { color: var(--tinte); }

/* Mobile: Chat-Button & Panel über die Sticky-CTA-Leiste heben */
@media (max-width: 899px) {
  .chat-fab { bottom: 4.9rem; }
  .chat-panel { bottom: 9.2rem; max-height: min(540px, calc(100vh - 11rem)); }
  .chat-teaser { right: 1.1rem; bottom: 9rem; }
}

/* Kurskacheln: Icon-Tönung je Kursart */
.kurs-card[data-art="Wasser"] .kurs-card__icon { background: rgba(30,111,85,.14); color: var(--kutter); }
.kurs-card[data-art="Indoor"] .kurs-card__icon { background: rgba(14,46,38,.1); color: var(--hafen); }
.kurs-card[data-art="Entspannung"] .kurs-card__icon { background: rgba(255,210,63,.24); color: #8a6d1a; }

/* FAQ: Verweis in den Chat */
.faq-more { margin-top: var(--sp-3); font-size: var(--fs-400); text-align: center; }
.faq-more a { color: var(--kutter); font-weight: 700; }

/* Formular: Datenschutz-Mikrozeile */
.form-privacy { font-size: var(--fs-200); color: #8fa39b; text-align: center; margin-top: .75rem; }
.section--weiss .form-privacy, .section--salz .form-privacy { color: var(--nebel); }

/* =====================================================================
   ZIEL-FINDER · KASSEN-SCHNELLWAHL · FOOTER-KURSLISTE
   ===================================================================== */

/* Ziel-Finder: Auswahl-Chips (farbcodiert nach Säule) */
.zf-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.zf-chip {
  padding: .7rem 1.15rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--linie); background: #fff; color: var(--hafen);
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-300);
  transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease);
}
.zf-chip:hover { transform: translateY(-2px); border-color: var(--kutter); }
.zf-chip[aria-pressed="true"][data-pillar="kurs"] { background: var(--kurs); border-color: var(--kurs); color: var(--hafen); }
.zf-chip[aria-pressed="true"][data-pillar="pt"] { background: var(--pt); border-color: var(--pt); color: #fff; }
.zf-chip[aria-pressed="true"][data-pillar="firma"] { background: var(--hafen); border-color: var(--hafen); color: #fff; }

/* Ziel-Finder: Empfehlungs-Karte */
.zf-result { display: none; margin-top: var(--sp-3); }
.zf-result.show { display: block; animation: zfIn .35s var(--ease) both; }
@keyframes zfIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.zf-card {
  background: #fff; border: 1px solid var(--linie); border-left: 4px solid var(--kurs);
  border-radius: var(--r-lg); padding: var(--sp-3) var(--sp-4); box-shadow: var(--shadow-1);
}
.zf-card[data-pillar="pt"] { border-left-color: var(--pt); }
.zf-card[data-pillar="firma"] { border-left-color: var(--hafen); }
.zf-card h3 { color: var(--hafen); margin-bottom: .35rem; }
.zf-card p { color: var(--nebel); margin-bottom: 1rem; }
.zf-alt { font-size: var(--fs-300); color: var(--kutter); font-weight: 600; text-decoration: none; }
.zf-alt:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { .zf-result.show { animation: none; } }

/* Kassen-Schnellwahl-Chips (unterm Suchfeld, dunkler Grund) */
.kassen-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .65rem; }
.kassen-chips button {
  padding: .45rem .85rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--linie-dark); background: rgba(255,255,255,.06); color: #cdd8d2;
  font-family: var(--font-mono); font-size: var(--fs-200); letter-spacing: .02em;
  transition: border-color .2s, background .2s, color .2s;
}
.kassen-chips button:hover { border-color: var(--kurs); color: #fff; background: rgba(143,191,63,.14); }

/* Footer: vierte Spalte für die Kursliste */
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1.1fr 1fr; } }

/* =====================================================================
   DESIGN-PASS — Grunddesign wie KI-Prüfungssimulation
   (Plus Jakarta Sans, eckigere Buttons, zentrierte Section-Heads,
    hellere Grundstimmung, PT-Timeline auf hellem Grund, Wochenplan)
   ===================================================================== */

/* Buttons: 10px-Radius statt Pille (Chips bleiben rund) */
.btn { border-radius: 10px; }

/* Eyebrow: Jakarta statt Mono, ohne Strich, wie die Vorlage */
.eyebrow { font-family: var(--font-text); font-weight: 700; font-size: .8rem; letter-spacing: .12em; }
.eyebrow::before { display: none; }

/* Section-Heads zentriert (wie die Vorlage) */
.section-head { max-width: 680px; margin-inline: auto; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { text-wrap: balance; }
.hero .eyebrow { justify-content: flex-start; }

/* Zentrierte Chips unter zentrierten Heads */
.kurs-filter, .zf-chips { justify-content: center; }
.stimmen-filter { justify-content: center; }

/* Zahlen & Meta: Jakarta statt Mono (Mono bleibt nur Anzeigetafel + ZPP) */
.trust-num { font-family: var(--font-display); font-weight: 800; }
.stat-num, .big-num { font-family: var(--font-display); font-weight: 800; }
.kurs-card__meta { font-family: var(--font-text); }
.kurs-card__meta dd { font-weight: 600; }
.kurs-card__zpp { font-family: var(--font-mono); }
.hero-step .n { font-family: var(--font-text); font-weight: 800; }
.hp-chip { font-family: var(--font-text); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: .78rem; }
.hp-label { font-family: var(--font-text); }
.footer__bottom, .termin-liste li { font-family: var(--font-text); }
.brand small { font-family: var(--font-text); letter-spacing: .08em; }
.chat-head small { font-family: var(--font-text); letter-spacing: 0; font-size: .72rem; }
.warteliste-hint, .stimme__transform { font-family: var(--font-text); font-weight: 600; }
.filter-btn, .kassen-chips button { font-family: var(--font-text); text-transform: none; letter-spacing: 0; font-weight: 600; }
.pt-step__label, .phase__num { font-family: var(--font-text); font-weight: 800; }
.erstattung-bar__legend, .erstattung-bar__fill span { font-family: var(--font-text); font-weight: 600; }
.hero-badge, .video-badge { font-family: var(--font-text); }
.eyebrow, .tag { font-family: var(--font-text); }
.mono { font-family: var(--font-text); }

/* PT-Timeline auf hellem Grund (Sektion ist jetzt hell) */
.pt-rail { background: rgba(14,46,38,.12); }
.pt-node { background: #fff; border-color: var(--linie); color: var(--nebel); }
.js .pt-step:not(.is-active) .pt-node { border-color: var(--linie); color: var(--nebel); }
.pt-step.is-active .pt-node { background: var(--pt); border-color: var(--pt); color: #fff; }
.pt-step__card { background: #fff; border-color: var(--linie); box-shadow: var(--shadow-1); }
.pt-step__card h3 { color: var(--hafen); }
.pt-step__card p { color: var(--nebel); }
.pt-step__label { color: var(--pt-dark); }
.section--salz .zielgruppe li, .section--weiss .zielgruppe li { color: var(--tinte); }
.section--salz #pt-title, .section--salz .section-head h2 { color: var(--hafen); }

/* Wochenplan-Tabelle (Termine-Sektion) */
.wochenplan-card { background: #fff; border: 1px solid var(--linie); border-radius: var(--r-lg); padding: var(--sp-4); box-shadow: var(--shadow-1); margin-top: var(--sp-4); }
.wochenplan-card h3 { margin-bottom: var(--sp-2); }
.wochenplan-scroll { overflow-x: auto; }
.wochenplan { width: 100%; border-collapse: collapse; font-size: var(--fs-300); min-width: 480px; }
.wochenplan th { text-align: left; font-weight: 700; color: var(--hafen); padding: .6rem .75rem; border-bottom: 2px solid var(--linie); }
.wochenplan td { padding: .55rem .75rem; border-bottom: 1px solid var(--linie); color: var(--tinte); }
.wochenplan tr.neuer-tag td { border-top: 2px solid var(--linie); }
.wochenplan td:first-child { font-weight: 700; color: var(--kutter); white-space: nowrap; }
.wochenplan .zeit { white-space: nowrap; font-weight: 600; }
.wochenplan .ort { color: var(--nebel); }
.wochenplan tbody tr:hover { background: rgba(143,191,63,.07); }

/* Icons: globale Standardgröße (spezifischere Regeln überschreiben weiter) */
svg.ic { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

/* =====================================================================
   KURS-UNTERSEITEN — Hero mit Illustration (zweispaltig)
   ===================================================================== */
.kurs-hero-grid { display: grid; gap: var(--sp-4); align-items: center; }
@media (min-width: 860px) { .kurs-hero-grid { grid-template-columns: 1.15fr .85fr; gap: var(--sp-6); } }
.kurs-hero-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-3); background: var(--hafen);
}
.kurs-hero-media svg,
.kurs-hero-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
@media (max-width: 859px) { .kurs-hero-media { aspect-ratio: 16 / 10; max-height: 320px; } }
