/* widgets.css — neues BEM-Klassensystem für flattersatz Widgets
   Nutzt CSS-Variablen aus :root in style.css
   Breakpoints: Tablet ≤1024px, Mobile ≤767px */

/* Design-Tokens */
:root {
  --fs-radius-card: 16px;
  --fs-shadow-offset: 6px 6px 0 0;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --fs-bg-light: #F6F5F2;
  --border-soft: 1.5px solid #E5E3DD;
  --shadow-highlight: 6px 6px 0 0 var(--fs-black, #2b2e34), 6px 6px 20px -6px rgba(43,46,52,.32);
  --ease: cubic-bezier(.22,.9,.32,1);
  --btn-radius: 14px;
  --card-radius: 16px;
  --btn-font: var(--font-heading);
  --btn-weight: 700;
  --btn-size: 15px;
  --btn-pad: 13px 24px;
  /* Section-Spacing */
  --gap-eng: 150px;
  --gap-bruch: 280px;
}

/* === Section-Spacing: zweistufiges System ============================ */
/* .gap--eng   → enger Zusammenhang (gleicher Themenblock): 150px        */
/* .gap--bruch → echter thematischer Bruch: 280px                        */
/* Ohne Klasse gilt der Widget-Basis-Abstand (var(--gap-eng) = 150px).   */
.gap--eng   { margin-top: var(--gap-eng)   !important; }
.gap--bruch { margin-top: var(--gap-bruch) !important; }
@media (max-width: 1024px) { .gap--eng   { margin-top: 110px !important; } .gap--bruch { margin-top: 190px !important; } }
@media (max-width: 767px)  { .gap--eng   { margin-top:  80px !important; } .gap--bruch { margin-top: 120px !important; } }

/* Basis-Section-Spacing auf Mobile reduzieren (eng-Stufe, ~58% von Desktop) */
@media (max-width: 767px) {
  .bk-row, .ib-row, .lernen, .cta-box, .cta-banner, .cta-banner--full,
  .blog, .blog-hero, .duo, .spotlight, .promo, .vid, .steps, .feat-grid,
  .comparison, .accordion-visual, .progress-steps, .zitat, .nl,
  .bento, .trio, .faq, .pricing, .sba, .kar, .hotspot--boxed, .fw-band--boxed { margin-top: 70px; margin-bottom: 70px; }
}

/* Bildergalerie (.car) */
.car { position: relative; overflow: hidden; border-radius: var(--fs-radius-card); box-shadow: var(--fs-shadow-offset) var(--car-farbe, var(--fs-level-1)); padding-bottom: 0 !important; height: 480px !important; flex-shrink: 0 !important; }
.car__track { display: flex; height: 100%; gap: 0 !important; margin: 0; padding: 0; list-style: none; transition: transform .7s var(--ease); }
.car__item { flex: 0 0 100% !important; width: 100% !important; height: 100% !important; list-style: none; scroll-snap-align: unset !important; }
.car__item img { width: 100%; height: 100% !important; object-fit: cover; display: block; border-radius: 0 !important; }
.car__dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px; padding: 6px 10px; }
.car__dots::before { content: ""; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,0)); z-index: -1; }
.car__dots button { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: #FFF; opacity: .6; cursor: pointer; box-shadow: 0 1px 2px rgba(0,0,0,.4); position: relative; }
.car__dots button::after { content: ""; position: absolute; inset: -17px; }
.car__dots button[aria-current="true"] { opacity: 1; }

@media (max-width: 767px) {
  .car { height: 300px !important; }
}

/* Produktkarussell (.kar) */
.kar { position: relative; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.kar__header { text-align: center; margin-bottom: 20px; }
.kar__eyebrow { display: block; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: #000; margin-bottom: .3em; }
.kar__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #000; margin: 0; letter-spacing: -.02em; }
.kar__viewport { position: relative; }
.kar__track { --kar-gap: 20px; list-style: none; margin: 0; padding: 0; display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - (var(--kar-show, 3) - 1) * var(--kar-gap)) / var(--kar-show, 3)); gap: var(--kar-gap); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; overscroll-behavior-x: contain; scrollbar-width: none; }
.kar__track::-webkit-scrollbar { display: none; }
.kar__track > * { scroll-snap-align: start; min-width: 0; }
.kar__dots { display: flex; justify-content: center; gap: 8px; padding: 16px 0 0; }
.kar__dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: #000; opacity: .25; cursor: pointer; position: relative; }
.kar__dot::after { content: ""; position: absolute; inset: -17px; }
.kar__dot[aria-current="true"] { opacity: 1; }
.kar__arrow { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 45px; height: 45px; border: 0; border-radius: 50%; background: #000; color: #fff; cursor: pointer; z-index: 2; }
.kar__arrow--left { left: 0; transform: translate(-50%, -50%); }
.kar__arrow--right { right: 0; transform: translate(50%, -50%); }
.kar__arrow:hover { background: var(--fs-yellow); color: #000; }
.kar__arrow[disabled] { opacity: .3; cursor: default; }
.kar__arrow[hidden] { display: none; }

/* Produktkarte (.pk) */
.pk { position: relative; display: flex; flex-direction: column; gap: 8px; height: 100%; background: #fff; border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); overflow: hidden; padding-bottom: 16px; transition: transform .2s ease, box-shadow .2s ease; }
.pk:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-3px); }
.pk__image { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.pk__title, .pk__text { padding-inline: 20px; }
.pk__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-inline: 20px; }
.pk__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; line-height: 1.2; color: #000; margin: 12px 0 0; }
.pk__title a { color: inherit; text-decoration: none; }
.pk__title a:hover { text-decoration: underline; }
.pk__text { margin: 0; font-family: var(--font-body); font-size: 14px; line-height: 1.4; color: #555; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pk__text p { margin: 0 0 4px; }
.pk__text ul { margin: 0; padding-left: 1.2em; }
.pk__price { margin: 0; font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: #000; }
.pk__link { display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; }
.pk__link:hover .pk__arrow { transform: translateX(4px); }
.pk__arrow { width: 35px; height: auto; flex: 0 0 auto; transition: transform .25s ease; }
@media (max-width: 1024px) { .kar__track { --kar-show: 2; } }
@media (max-width: 767px) {
  .kar__track { --kar-show: 1; --kar-gap: 12px; grid-auto-columns: 78%; }
  .kar__arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .kar__track { scroll-behavior: auto; }
  .pk__arrow, .pk { transition: none; }
  .hero__cover { animation: none; }
  .pk:hover { transform: none; }
}

/* Startseite-Hero (.hero-home) */
.hero-home { max-width: var(--container-max); margin: 90px auto 130px; padding: 0 24px; }
.hero-home__inner { display: flex; align-items: center; gap: 70px; }
.hero-home__text { flex: 0 0 44%; position: relative; }
.hero-home__deko { position: absolute; top: -22px; left: -46px; width: 80px; height: auto; pointer-events: none; z-index: 0; opacity: .85; }
.hero-home__eyebrow { position: relative; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: #000; margin: 0 0 .5em; }
.hero-home__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: clamp(44px, 5.5vw, 72px); line-height: 1.05; color: var(--fs-yellow); margin: 0 0 .4em; }
.hero-home__text-body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: #333; margin: 0; max-width: 420px; }
.hero-home__media { flex: 1; }
.hero-home__media img { width: 100%; border-radius: var(--fs-radius-card); box-shadow: 6px 6px 0 0 var(--fs-yellow), 14px 14px 40px -18px rgba(0,0,0,.35); display: block; }
@media (max-width: 1024px) {
  .hero-home__inner { gap: 40px; }
}
@media (max-width: 767px) {
  .hero-home { margin: 50px auto 80px; }
  .hero-home__inner { flex-direction: column; gap: 32px; }
  .hero-home__text { flex: none; width: 100%; }
  .hero-home__deko { display: none; }
}

/* App-Hero (.hero-app) — Fullwidth Hero mit grossem Mockup */
.hero-app { margin: 0; padding: 0; background: #000; position: relative; overflow: hidden; }
.hero-app__inner { max-width: var(--container-max); margin: 0 auto; padding: 100px 24px 0; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; position: relative; z-index: 1; }
.hero-app__badge { display: inline-flex; align-items: center; gap: 6px; background: var(--fs-yellow); border-radius: 999px; padding: 7px 16px; font-family: var(--font-heading); font-weight: 700; font-size: 12px; color: #000; margin-bottom: 20px; }
.hero-app__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(44px, 5.5vw, 72px); line-height: 1.06; letter-spacing: -.02em; color: #fff; margin: 0 0 18px; }
.hero-app__text { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 44ch; margin: 0 0 28px; }
.hero-app__actions { display: flex; gap: 12px; flex-wrap: wrap; padding-bottom: 80px; }
.hero-app__media { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-app__device { width: 100%; max-width: 480px; border-radius: 20px 20px 0 0; display: block; filter: drop-shadow(0 -20px 60px rgba(255,203,28,.08)); }
.hero-app__glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,203,28,.1) 0%, transparent 70%); bottom: 0; left: 50%; transform: translateX(-50%); pointer-events: none; z-index: 0; }
@media (max-width: 1024px) {
  .hero-app__inner { padding-top: 70px; }
  .hero-app__device { max-width: 380px; }
}
@media (max-width: 767px) {
  .hero-app__inner { grid-template-columns: 1fr; padding-top: 50px; text-align: center; }
  .hero-app__text { margin-inline: auto; }
  .hero-app__actions { justify-content: center; padding-bottom: 40px; }
  .hero-app__device { max-width: 300px; margin: 0 auto; }
}

/* Icon-Bild-Karten (.bk) */
.bk-row { display: flex; gap: 24px; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.bk { display: flex; flex-direction: column; flex: 1 1 0; border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); overflow: hidden; color: #000; transition: transform .2s ease, box-shadow .2s ease; }
.bk:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-3px); }
.bk--flat { border: none; background: var(--fs-bg-light); }
.bk--flat:hover { background: #EEECEA; }
.bk--gelb { background: var(--fs-yellow); border-color: var(--fs-yellow); }
.bk--pink { background: var(--fs-level-junior); border-color: var(--fs-level-junior); color: #fff; }
.bk--pink .bk__text { color: rgba(255,255,255,.9); }
.bk--gruen { background: var(--fs-level-1); border-color: var(--fs-level-1); }
.bk--grau { background: var(--fs-bg-light); border-color: var(--fs-bg-light); }
.bk--schwarz { background: #000; border-color: #000; color: #fff; }
.bk--schwarz .bk__text { color: rgba(255,255,255,.85); }
.bk__image { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .3s ease; }
.bk:hover .bk__image { transform: scale(1.03); }
.bk__body { display: flex; flex-direction: column; gap: 10px; padding: 24px; flex: 1; }
.bk__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; line-height: 1.2; color: inherit; margin: 0; }
.bk__text { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: #4a4a44; margin: 0 0 8px; flex: 1; }
.bk__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; border-radius: var(--btn-radius); padding: 10px 18px; background: var(--fs-yellow); margin-top: auto; align-self: flex-start; white-space: nowrap; transition: filter .15s ease; }
.bk__cta:hover { filter: brightness(.93); }
.bk__cta--arrow { padding: 0; background: none; align-self: flex-end; border-radius: 0; }
.bk__cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
[class*="bk--"]:not(.bk--grau):not(.bk--schwarz) .bk__cta { background: #fff; color: #000; }
.bk--schwarz .bk__cta { background: #fff; color: #000; }
@media (max-width: 1024px) {
  .bk-row { flex-wrap: wrap; }
  .bk-row .bk { flex: 1 1 calc(50% - 12px); }
}
@media (max-width: 767px) {
  .bk-row { flex-direction: column; gap: 16px; }
  .bk { flex-direction: row; overflow: visible; }
  .bk__image { width: 110px; height: auto; min-height: 100%; flex: 0 0 110px; border-radius: var(--fs-radius-card) 0 0 10px; object-fit: cover; }
  .bk__body { padding: 14px 16px; gap: 6px; }
  .bk__title { font-size: 18px; }
  .bk__text { font-size: 14px; }
  .bk__cta { white-space: normal; font-size: 13px; padding: 6px 12px; }
}

/* Webinar-Teaser (.teaser) */
.teaser { max-width: var(--container-max); margin: var(--gap-eng) auto 160px; padding: 0 24px; }
.teaser__bg { display: flex; align-items: flex-end; justify-content: flex-end; min-height: 400px; padding: 50px; border-radius: var(--fs-radius-card); background-size: cover; background-position: center; }
.teaser__card { width: 55%; background: #fff; border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); padding: 40px; box-shadow: 6px 6px 0 0 #000, 16px 16px 40px -18px rgba(0,0,0,.35); margin-bottom: -80px; display: flex; flex-direction: column; gap: 12px; }
.teaser__eyebrow { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: #000; }
.teaser__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 1.5em; line-height: 1.1; color: #000; margin: 0; }
.teaser__text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: #333; margin: 0; max-width: 65ch; }
.teaser__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; padding: 10px 20px; background: var(--fs-yellow); align-self: flex-start; white-space: nowrap; transition: opacity .15s ease; }
.teaser__cta:hover { opacity: .85; }
.teaser__cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) {
  .teaser { margin-bottom: 80px; }
  .teaser__bg { min-height: 200px; padding: 20px; align-items: flex-end; }
  .teaser__card { width: 100%; padding: 20px; margin-bottom: -50px; box-shadow: 4px 4px 0 0 #000, 10px 10px 26px -14px rgba(0,0,0,.35); }
  .teaser__title { font-size: 20px; }
}
.teaser--full { max-width: none; padding: 0; margin: var(--gap-eng) 0 160px; }
.teaser--full .teaser__bg { border-radius: 0; background-attachment: fixed; min-height: 500px; padding: 60px 10%; align-items: center; }
.teaser--full .teaser__card { width: 45%; margin-bottom: -80px; }
@media (max-width: 767px) {
  .teaser--full .teaser__bg { background-attachment: scroll; min-height: 300px; padding: 20px; align-items: flex-end; }
  .teaser--full .teaser__card { width: 100%; }
  .teaser--full { margin-bottom: 80px; }
}

/* IconBox-Karten (.ib) */
.ib-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.ib { display: flex; flex-direction: column; gap: 10px; background: var(--fs-bg-light); border: none; border-radius: var(--fs-radius-card); padding: 24px; }
.ib__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: var(--fs-yellow); color: #000; }
.ib__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; line-height: 1.2; color: #000; margin: 0; }
.ib__text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: #333; margin: 0; flex: 1; }
@media (max-width: 1024px) { .ib-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .ib-row { grid-template-columns: 1fr; gap: 16px; }
  .ib { flex-direction: row; gap: 14px; padding: 18px; box-shadow: 6px 6px 0 0 #000; min-width: 0; }
  .ib__icon { width: 40px; height: 40px; }
  .ib__content { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
}

/* Seiten-Intro (.intro) — Hero-Variante für Unterseiten (Bild links, Text rechts) */
.intro { display: flex; gap: 60px; align-items: center; max-width: var(--container-max); margin: 80px auto var(--gap-eng); padding: 50px 24px; background: var(--fs-bg-light); border-radius: var(--fs-radius-card); }
.intro__image-wrap { flex: 0 0 40%; }
.intro__image { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--fs-radius-card); display: block; }
.intro__body { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.intro__eyebrow { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: #000; }
.intro__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #000; margin: 0; letter-spacing: -.02em; }
.intro__text { font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: #333; margin: 0; }
.intro__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; padding: 10px 20px; background: var(--fs-yellow); white-space: nowrap; align-self: flex-start; margin-top: 4px; transition: opacity .15s ease; }
.intro__cta:hover { opacity: .85; }
.intro__cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) {
  .intro { flex-direction: column; gap: 20px; padding: 20px; margin-top: 40px; }
  .intro__image-wrap { flex: none; width: 100%; }
  .intro__image { aspect-ratio: 3/2; box-shadow: 6px 6px 0 0 var(--intro-shadow, var(--fs-yellow)); }
  .intro__title { font-size: 28px; }
}

/* Bildkarte + Textspalte (.detail) */
.detail { display: flex; gap: 60px; align-items: center; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 50px 24px; background: var(--fs-bg-light); border-radius: var(--fs-radius-card); }
.detail__image-wrap { flex: 0 0 40%; }
.detail__image { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--fs-radius-card); display: block; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.detail__body { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.detail__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #000; margin: 0; }
.detail__text { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: #333; margin: 0; }
.detail__stats { display: flex; gap: 24px; margin-top: 6px; }
.detail__stat { flex: 1; display: flex; align-items: baseline; gap: 10px; }
.detail__stat-value { font-family: var(--font-heading); font-weight: 800; font-size: 42px; line-height: 1; color: var(--fs-yellow); }
.detail__stat-label { font-family: var(--font-body); font-size: 14px; color: #555; line-height: 1.4; }
@media (max-width: 767px) {
  .detail { flex-direction: column; gap: 20px; padding: 20px; }
  .detail__image-wrap { flex: none; width: 100%; }
  .detail__image { aspect-ratio: 3/2; box-shadow: 6px 6px 0 0 var(--detail-shadow, var(--fs-level-1)); }
  .detail__title { font-size: 28px; }
  .detail__stats { flex-direction: column; gap: 12px; }
  .detail__stat-value { font-size: 28px; }
}

/* Lernthemen-Übersicht (.lernen) */
.lernen { max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 50px 40px; border-radius: var(--fs-radius-card); background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), var(--lernen-bg, #222) center/cover no-repeat; }
.lernen__header { text-align: center; margin-bottom: 32px; }
.lernen__eyebrow { display: block; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--fs-yellow); margin-bottom: .3em; }
.lernen__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #fff; margin: 0; }
.lernen__intro { font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.8); margin: 8px 0 0; max-width: 600px; margin-inline: auto; }
.lernen__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.lernen__card { display: flex; flex-direction: column; gap: 12px; background: #fff; border-radius: var(--fs-radius-card); padding: 24px; }
.lernen__card-title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; line-height: 1.2; color: #000; margin: 0; }
.lernen__card-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lernen__card-list li { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-body); font-size: 14px; line-height: 1.4; color: #333; }
.lernen__card-list li::before { content: ""; display: inline-block; width: 14px; height: 7px; flex: 0 0 14px; background: url('bilder/icons/pfeil-button-2.svg') center/contain no-repeat; margin-top: .35em; align-self: flex-start; }
.lernen__footer { text-align: center; margin-top: 8px; }
.lernen__footer-label { font-family: var(--font-body); font-weight: 400; font-size: 16px; color: rgba(255,255,255,.8); margin: 0 0 12px; }
.lernen__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; padding: 10px 20px; background: var(--fs-yellow); white-space: nowrap; transition: opacity .15s ease; }
.lernen__cta:hover { opacity: .85; }
.lernen__cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 1024px) { .lernen__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .lernen__grid { grid-template-columns: 1fr; gap: 16px; }
  .lernen__title { font-size: 28px; }
}

/* Preis-CTA (.cta-box) */
.cta-box { max-width: 580px; margin: var(--gap-eng) auto; padding: 0 24px; }
.cta-box__inner { background: var(--fs-yellow); border-radius: var(--fs-radius-card); box-shadow: var(--fs-shadow-offset) #000; padding: 64px 48px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; border: none; }
.cta-box__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 1.5em; line-height: 1.2; color: #000; margin: 0; }
.cta-box__btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; padding: 10px 20px; background: #fff; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease; }
.cta-box__btn:hover { opacity: .85; }

/* CTA-Box Varianten */
.cta-box--flat .cta-box__inner { box-shadow: none; }
.cta-box--dark .cta-box__inner { background: #000; color: #fff; box-shadow: none; }
.cta-box--dark .cta-box__title { color: #fff; }
.cta-box--dark .cta-box__text { color: rgba(255,255,255,.7); }
.cta-box--dark .cta-box__btn { background: var(--fs-yellow); color: #000; }
.cta-box--neutral .cta-box__inner { background: var(--fs-bg-light); box-shadow: none; }
.cta-box--pink .cta-box__inner { background: #FBD9EA; box-shadow: none; }
.cta-box--blue .cta-box__inner { background: #D8F1FA; box-shadow: none; }
.cta-box--green .cta-box__inner { background: #EAF5D2; box-shadow: none; }
.cta-box--photo .cta-box__inner { background-size: cover; background-position: center; position: relative; overflow: hidden; }
.cta-box--photo .cta-box__inner::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.55); border-radius: inherit; }
.cta-box--photo .cta-box__inner > * { position: relative; z-index: 1; }
.cta-box--photo .cta-box__title { color: #fff; }
.cta-box--photo .cta-box__text { color: rgba(255,255,255,.8); }
.cta-box--photo .cta-box__btn { background: #fff; color: #000; }
.cta-box__btn-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) { .cta-box__btn { white-space: normal; text-align: center; } }
@media (max-width: 767px) {
  .cta-box__inner { padding: 30px 20px; }
  .cta-box__title { font-size: 20px; }
}

/* Level-Up-CTA (.cta-banner) */
.cta-banner { max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.cta-banner--full { max-width: none; padding: 0; margin: var(--gap-eng) 0; }
.cta-banner__inner { min-height: 400px; border-radius: var(--fs-radius-card); padding: 80px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; background-size: cover; background-position: center; }
.cta-banner--full .cta-banner__inner { border-radius: 0; background-attachment: fixed; }
.cta-banner__eyebrow { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #fff; }
.cta-banner__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #fff; margin: 0; }
.cta-banner__btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; padding: 10px 20px; background: #fff; white-space: nowrap; transition: opacity .15s ease; }
.cta-banner__btn:hover { background: var(--fs-yellow); opacity: .85; }
.cta-banner__btn-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) {
  .cta-banner__inner { min-height: 280px; padding: 40px 20px; }
  .cta-banner__title { font-size: 28px; }
}

/* Eltern-Band (.band) — scoped auf main, damit Header/Footer .band nicht betroffen */
main > .band { background: var(--fs-yellow); padding: 50px 24px; margin: var(--gap-eng) 0; }
.band__inner { max-width: var(--container-max); margin: 0 auto; display: flex; gap: 20px; }
.band__card { flex: 1; background: var(--fs-bg-light); border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); overflow: hidden; display: flex; flex-direction: column; }
.band__card--wide { flex: 2; flex-direction: row; background: #fff; }
.band__card-image { width: 100%; height: 200px; object-fit: cover; display: block; }
.band__card--wide .band__card-image { width: 33%; height: auto; min-height: 100%; flex: 0 0 33%; object-fit: cover; border-radius: 0 10px 10px 0; order: 1; }
.band__card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.band__card-title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; color: #000; margin: 0; }
.band__card-text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: #333; margin: 0; }
.band__card-text em { font-style: italic; }
.band__card-text strong { font-weight: var(--weight-semibold); }
.band__card-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; padding: 10px 20px; background: var(--fs-yellow); align-self: flex-start; margin-top: auto; white-space: nowrap; transition: opacity .15s ease; }
.band__card-cta:hover { opacity: .85; }
.band__card-cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) {
  main > .band .band__inner { flex-direction: column; }
  .band__card--wide { flex-direction: column; }
  .band__card--wide .band__card-image { width: 100%; height: 180px; flex: none; border-radius: 0 0 10px 10px; order: 0; }
}

/* Zitat (.zitat) */
.zitat { max-width: 800px; margin: var(--gap-eng) auto; padding: 48px; text-align: center; background: var(--fs-bg-light); border-radius: 20px; position: relative; overflow: hidden; }
.zitat::before { content: "\""; position: absolute; top: 16px; left: 28px; font-family: var(--font-heading); font-weight: 700; font-size: 64px; color: var(--fs-yellow); line-height: 1; z-index: 0; }
.zitat__text, .zitat__source { position: relative; z-index: 1; }
.zitat__text { font-family: var(--font-heading); font-size: 19px; font-weight: 600; line-height: 1.4; color: #333; margin: 0 auto; max-width: 65ch; }
.zitat__source { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; margin-top: 16px; font-style: normal; }
@media (max-width: 767px) {
  .zitat { padding: 30px 24px 24px; }
  .zitat::before { font-size: 3.5em; top: 8px; left: 16px; }
  .zitat__text { font-size: 16px; }
}

/* Blog-Artikel-Loop (.blog) */
.blog { max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.blog__nav { display: flex; gap: 24px; justify-content: center; margin-bottom: 32px; }
.blog__nav-item { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: .8em; text-transform: uppercase; letter-spacing: .04em; color: #000; opacity: .55; cursor: pointer; padding-bottom: 6px; border-bottom: 3px solid transparent; transition: opacity .2s ease, border-color .2s ease; }
.blog__nav-item:hover { opacity: .8; }
.blog__nav-item--active { opacity: 1; border-bottom-color: var(--fs-yellow); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog__card { position: relative; display: flex; flex-direction: column; border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.blog__card:hover { border-color: #c9c5b8; box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-3px); }
.blog__card-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .3s ease; }
.blog__card:hover .blog__card-image { transform: scale(1.03); }
.blog__card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog__card-tag { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: .75em; text-transform: uppercase; letter-spacing: .04em; color: #666; align-self: flex-start; }
.blog__card-tag--spickzettel { position: absolute; top: 12px; left: 12px; background: #fff; color: #000; padding: 4px 10px; border-radius: 6px; z-index: 1; display: inline-block; }
.blog__card-title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; line-height: 1.2; color: #000; margin: 0; }
.blog__card-title a { color: inherit; text-decoration: none; }
.blog__card-title a:hover { text-decoration: underline; }
.blog__card-text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: #333; margin: 0; flex: 1; }
.blog__card-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border-radius: var(--btn-radius); padding: 10px 18px; background: var(--fs-yellow); margin-top: auto; align-self: flex-start; white-space: nowrap; transition: filter .15s ease; }
.blog__card-arrow:hover { filter: brightness(.93); }
.blog__card-arrow img { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 1024px) { .blog__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 767px) {
  .blog__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; gap: 12px; }
  .blog__grid::-webkit-scrollbar { display: none; }
  .blog__card { flex: 0 0 78%; scroll-snap-align: start; }
  .blog__nav { gap: 16px; flex-wrap: wrap; }
}

/* Blog-Feature-Hero (.blog-hero) */
.blog-hero { max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.blog-hero__inner { min-height: 420px; border-radius: var(--fs-radius-card); padding: 60px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.blog-hero__inner::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.blog-hero__inner > * { position: relative; z-index: 1; }
.blog-hero__eyebrow { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #fff; }
.blog-hero__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: clamp(44px, 5.5vw, 72px); line-height: 1.1; color: #fff; margin: 0; max-width: 600px; }
.blog-hero__text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.85); margin: 0; max-width: 500px; }
.blog-hero__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; border-radius: 0; padding: 12px 24px; background: #fff; margin-top: 8px; white-space: nowrap; }
.blog-hero__cta:hover { background: var(--fs-yellow); }
.blog-hero__cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) {
  .blog-hero__inner { min-height: 300px; padding: 30px 20px; }
}

/* Newsletter-CTA (.nl) */
.nl { max-width: 900px; margin: var(--gap-eng) auto; padding: 0 24px; }
.nl__inner { display: flex; background: var(--fs-blue); border-radius: var(--fs-radius-card); overflow: hidden; }
.nl__image { flex: 0 0 280px; width: 280px; object-fit: cover; display: block; }
.nl__body { flex: 1; padding: 40px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.nl__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 1.5em; line-height: 1.2; color: #fff; margin: 0; }
.nl__text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.8); margin: 0; max-width: 65ch; }
.nl__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.85); }
.nl__list li { position: relative; padding-left: 22px; }
.nl__list li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: var(--weight-bold); color: var(--fs-yellow); }
.nl__list strong { color: #fff; }
.nl__form { display: flex; flex-direction: column; gap: 8px; }
.nl__input { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 10px 14px; border: none; border-radius: 0; outline: none; background: #fff; -webkit-appearance: none; }
.nl__input:focus { box-shadow: 0 0 0 2px var(--fs-yellow); }
.nl__submit { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; background: var(--fs-yellow); border: none; padding: 10px 20px; cursor: pointer; white-space: nowrap; -webkit-appearance: none; align-self: flex-end; transition: opacity .15s ease; }
.nl__submit:hover { opacity: .85; }
.nl__submit-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) {
  .nl__inner { flex-direction: column; }
  .nl__image { flex: none; width: 100%; height: auto; max-height: 220px; object-fit: contain; }
  .nl__body { padding: 20px; }
}

/* Produkt-Duo-Promo (.duo) */
.duo { background: var(--fs-bg-light); padding: 0; margin: var(--gap-eng) auto; border-radius: var(--fs-radius-card); overflow: hidden; max-width: var(--container-max); }
.duo__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }
.duo__cards { overflow: hidden; }
.duo__card { height: 100%; }
.duo__card-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.duo__card-title { display: none; }
.duo__body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.duo__badge { display: inline-block; font-family: var(--font-heading); font-weight: 700; font-size: 11px; color: #fff; background: #000; padding: 5px 12px; border-radius: 999px; align-self: flex-start; }
.duo__title { font-family: var(--font-heading); font-weight: 700; font-size: 2em; line-height: 1.15; letter-spacing: -.02em; color: #000; margin: 0; }
.duo__text { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: #4a4a44; margin: 0; }
.duo__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: #000; text-decoration: none; padding: 0; background: none; border-bottom: 2px solid #000; align-self: flex-start; white-space: nowrap; margin-top: 4px; }
.duo__cta:hover { border-color: var(--fs-yellow); }
.duo__cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
.duo--reverse .duo__inner { direction: rtl; }
.duo--reverse .duo__inner > * { direction: ltr; }
.duo--yellow { background: var(--fs-yellow); }
.duo--yellow .duo__text { color: #333; }
.duo--dark { background: #000; }
.duo--dark .duo__title, .duo--dark .duo__text { color: #fff; }
.duo--dark .duo__text { color: rgba(255,255,255,.7); }
.duo--dark .duo__cta { color: #fff; border-color: #fff; }
.duo--dark .duo__cta-arrow { filter: invert(1); }
@media (max-width: 767px) {
  .duo__inner { grid-template-columns: 1fr; }
  .duo__card-image { aspect-ratio: 16/9; height: auto; }
  .duo__body { padding: 32px 24px; }
  .duo__cards { flex: none; width: 100%; }
  .duo__title { font-size: 28px; }
  .duo__cta { white-space: normal; }
}

/* Themen-Promo-Karte (.promo) */
.promo { max-width: 900px; margin: var(--gap-eng) auto; padding: 0 24px; }
.promo__inner { display: flex; background: var(--fs-bg-light); border-radius: var(--fs-radius-card); overflow: hidden; }
.promo__image { flex: 0 0 35%; width: 35%; min-height: 250px; object-fit: cover; display: block; }
.promo__body { flex: 1; padding: 30px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.promo__badge { display: inline-block; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: .75em; color: #fff; background: var(--promo-color, var(--fs-level-junior)); padding: 4px 10px; border-radius: 4px; align-self: flex-start; }
.promo__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; line-height: 1.2; color: #000; margin: 0; }
.promo__text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: #333; margin: 0; max-width: 65ch; }
.promo__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; border-radius: 0; padding: 10px 20px; background: var(--fs-yellow); align-self: flex-start; white-space: nowrap; }
.promo__cta:hover { opacity: .85; }
.promo__cta-arrow { width: 28px; height: auto; flex: 0 0 auto; }
@media (max-width: 767px) {
  .promo__inner { flex-direction: column; }
  .promo__image { flex: none; width: 100%; height: 200px; }
  .promo__body { padding: 24px; }
}

/* Bild-Overlay-Grid (.spotlight) */
.spotlight { max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.spotlight__header { text-align: center; margin-bottom: 24px; }
.spotlight__eyebrow { display: block; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; margin-bottom: .3em; }
.spotlight__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #000; margin: 0; }
.spotlight__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spotlight__card { position: relative; border-radius: var(--fs-radius-card); overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.spotlight__card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight__card::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.5); transition: background .3s ease; }
.spotlight__card:hover::after { background: rgba(0,0,0,.3); }
.spotlight__card-text { position: relative; z-index: 1; font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; line-height: 1.3; color: #fff; text-align: center; padding: 24px; width: 100%; transition: transform .3s ease; }
.spotlight__card:hover .spotlight__card-text { transform: translateY(-4px); }
@media (max-width: 1024px) {
  .spotlight__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .spotlight__grid { grid-template-columns: 1fr; gap: 16px; }
  .spotlight__card { aspect-ratio: 16/9; }
  .spotlight__title { font-size: 28px; }
}

/* Formular-Elemente */
.fs-input { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 10px 14px; border: 2px solid #000; border-radius: 0; outline: none; background: transparent; -webkit-appearance: none; box-sizing: border-box; }
.fs-input--weiss { background: #fff; border-color: #fff; }
.fs-input--weiss:focus { border-color: var(--fs-yellow); }
.fs-input:focus { border-color: var(--fs-yellow); }
.fs-check { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; cursor: pointer; }
.fs-check input { width: 18px; height: 18px; accent-color: var(--fs-yellow); }
.fs-submit { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; background: var(--fs-yellow); border: none; border-radius: 0; padding: 10px 20px; cursor: pointer; white-space: nowrap; -webkit-appearance: none; align-self: flex-start; }
.fs-submit:hover { opacity: .85; }
.fs-submit--dunkel { background: #000; color: #fff; }
select.fs-input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Deko-Elemente */
.deko { position: relative; }
.deko__striche { position: absolute; width: 40px; height: auto; z-index: 3; pointer-events: none; }
.deko__flieger { position: absolute; width: 60px; height: auto; z-index: 3; pointer-events: none; }

/* Section-Divider — handgezeichnete Linie zwischen Sektionen */
.section-divider { display: flex; justify-content: center; padding: 24px 0; }
.section-divider svg { width: 220px; height: auto; }

/* Video-Embed (.vid) — Datenschutz-freundlich, Lazy-Load */
.vid { max-width: 500px; margin: var(--gap-eng) auto; padding: 0 24px; }
.vid__wrap { position: relative; aspect-ratio: 9/16; background: #000; border-radius: var(--fs-radius-card); overflow: hidden; }
.vid__wrap--quer { aspect-ratio: 16/9; }
.vid__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid__play { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(0,0,0,.4); border: none; cursor: pointer; color: #fff; font-family: var(--font-heading); font-size: 14px; font-weight: var(--weight-semibold); }
.vid__play-icon { width: 60px; height: 60px; background: rgba(255,255,255,.9); border-radius: 50%; display: grid; place-items: center; }
.vid__play-icon svg { margin-left: 4px; }
.vid__hinweis { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }
.vid__wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 767px) {
  .vid { max-width: none; }
}

/* Preistabelle (.pricing) */
.pricing { max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.pricing__header { text-align: center; margin-bottom: 32px; }
.pricing__eyebrow { display: block; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: #000; margin-bottom: .3em; }
.pricing__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #000; margin: 0; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing__card { background: #fff; border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); padding: 32px 24px; display: flex; flex-direction: column; gap: 16px; text-align: center; opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .2s ease; }
[data-anim].sichtbar .pricing__card:hover { border-color: #c9c5b8; }
.pricing__name { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 1.3em; color: #000; margin: 0; }
.pricing__price { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2.4em; line-height: 1; color: #000; margin: 0; }
.pricing__price small { font-size: .4em; font-weight: var(--weight-semibold); color: #555; display: block; margin-top: 4px; }
.pricing__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; text-align: left; flex: 1; }
.pricing__features li { font-family: var(--font-body); font-size: 14px; line-height: 1.4; color: #333; padding-left: 20px; position: relative; }
.pricing__features li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: #000; }
.pricing__btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; background: var(--fs-yellow); border: none; border-radius: 0; padding: 12px 20px; cursor: pointer; white-space: nowrap; margin-top: auto; }
.pricing__btn:hover { opacity: .85; }
[data-anim].sichtbar .pricing__card { opacity: 1; transform: none; }
.pricing__note { font-family: var(--font-body); font-size: 12px; color: #888; margin: 0; }
.pricing__footer { text-align: center; margin-top: 24px; }
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing__price { font-size: 2em; }
}

/* FAQ-Akkordeon (.faq) */
.faq { max-width: 800px; margin: var(--gap-eng) auto; padding: 0 24px; }
.faq__header { text-align: center; margin-bottom: 32px; }
.faq__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #000; margin: 0; }
.faq__item { border-bottom: 1px solid #E5E3DD; }
.faq__item:first-child { border-top: 1px solid #E5E3DD; }
.faq__question { width: 100%; background: none; border: none; padding: 20px 0; font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 17px; color: #000; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__question::after { content: "+"; font-size: 24px; font-weight: 400; flex-shrink: 0; transition: transform .2s ease; }
.faq__item[open] .faq__question::after { content: "−"; }
.faq__answer { padding: 0 0 20px; font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #333; }
.faq__answer a { color: #000; font-weight: var(--weight-semibold); }
.faq__item { opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
[data-anim].sichtbar .faq__item { opacity: 1; transform: none; }
.faq__item summary:hover { color: #555; }

/* Hotspot-Bild (.hotspot) — Interaktive Bildkarte mit Tooltips */
.hotspot { max-width: none; margin: var(--gap-eng) 0; padding: 0; }
.hotspot--boxed { max-width: 1400px; margin: var(--gap-eng) auto; padding: 0 24px; }
.hotspot__header { text-align: center; margin-bottom: 32px; max-width: var(--container-max); margin-inline: auto; padding: 0 24px; }
.hotspot__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; line-height: 1.1; color: #000; margin: 0; }
.hotspot__wrap { position: relative; overflow: hidden; background: var(--fs-bg-light); }
.hotspot--boxed .hotspot__wrap { border-radius: var(--fs-radius-card); border: 1.5px solid #E5E3DD; }
.hotspot__image { width: 100%; display: block; }
.hotspot__dot { position: absolute; width: 24px; height: 24px; border-radius: 50%; background: var(--fs-blue); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.25); cursor: pointer; transform: translate(-50%, -50%) scale(0); z-index: 2; transition: transform .4s ease; }
[data-anim].sichtbar .hotspot__dot { transform: translate(-50%, -50%) scale(1); animation: hotspot-pulse 2s ease .5s infinite; }
.hotspot__dot:nth-child(2) { transition-delay: .1s; }
.hotspot__dot:nth-child(3) { transition-delay: .2s; }
.hotspot__dot:nth-child(4) { transition-delay: .3s; }
.hotspot__dot:nth-child(5) { transition-delay: .35s; }
.hotspot__dot:nth-child(6) { transition-delay: .4s; }
.hotspot__dot:nth-child(7) { transition-delay: .45s; }
.hotspot__dot:nth-child(8) { transition-delay: .5s; }
.hotspot__dot:hover { animation: none; transform: translate(-50%, -50%) scale(1.3); }
@keyframes hotspot-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(23,175,228,.4); } 50% { box-shadow: 0 0 0 10px rgba(23,175,228,0); } }
.hotspot__tip { position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: #000; color: #fff; font-family: var(--font-heading); font-size: 13px; font-weight: var(--weight-semibold); padding: 6px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s ease; }
.hotspot__tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: #000; }
.hotspot__dot:hover .hotspot__tip { opacity: 1; }
@media (max-width: 767px) {
  .hotspot__dot { width: 22px; height: 22px; }
  .hotspot__dot::before { font-size: 13px; }
  .hotspot__tip { font-size: 11px; padding: 4px 8px; }
}

/* Musikschulen-spezifisch */
.ms-benefits-grid a:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.1); }
.ms-overlay-row a:hover div:first-of-type { background: rgba(0,0,0,.35) !important; }
.ms-overlay-row a:hover { transform: translateY(-3px); }
.ms-overlay-row a { transition: transform .2s ease; }
@media (max-width: 1024px) {
  .ms-benefits-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
}
@media (max-width: 767px) {
  .ms-overlay-row { flex-direction: column !important; }
}

/* Bento-Grid (.bento) — gleicher Stil wie restliche Seite */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 64px; gap: 24px; grid-auto-flow: dense; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.bento > * { border-radius: var(--fs-radius-card); }
.b-xl { grid-column: span 2; grid-row: span 6; }
.b-tall { grid-row: span 6; }
.b-wide { grid-column: span 2; grid-row: span 3; }
.b-1 { grid-row: span 3; }

/* Base card — wie .bk, .blog__card */
.bento__card { display: flex; flex-direction: column; overflow: hidden; border: 1.5px solid #E5E3DD; text-decoration: none; color: #000; position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.bento__card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.1); }

/* Feature-Banner (gelb) — wie .cta-box / .duo */
.bento__feature { background: var(--fs-blue); border: none; color: #fff; }
.bento__feature:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.1); }
.bento__feature-badge { display: inline-block; align-self: flex-start; font-family: var(--font-heading); font-size: 11px; font-weight: var(--weight-semibold); text-transform: uppercase; letter-spacing: .5px; background: #000; color: #fff; padding: 6px 14px; border-radius: var(--fs-radius-pill); margin-bottom: 14px; transform: rotate(-2deg); box-shadow: 2px 2px 0 0 rgba(0,0,0,.4); }
.bento__feature-title { font-family: var(--font-heading); font-size: 1.5em; font-weight: var(--weight-bold); line-height: 1.1; margin-bottom: 10px; }
.bento__feature-text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; margin-bottom: auto; }
.bento__feature-imgs { display: flex; gap: 10px; margin-top: 20px; }
.bento__feature-img { flex: 1; height: 76px; border-radius: var(--fs-radius-card); overflow: hidden; }
.bento__feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento__feature-cta { align-self: flex-start; margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: none; padding: 10px 18px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-decoration: none; color: #000; transition: opacity .15s ease; }
.bento__feature-cta:hover { opacity: .85; }

/* Produktkarte — wie .pk */
.bento__product { background: #fff; padding: 0; }
.bento__product .pk__image { flex: 1; min-height: 0; transition: transform .3s ease; }
.bento__product:hover .pk__image { transform: scale(1.03); }

/* Blog-Karte (hoch) — wie .blog__card */
.bento__blog { background: #fff; }
.bento__blog-img { width: 100%; height: 44%; object-fit: cover; display: block; }
.bento__blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.bento__blog-eyebrow { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: #666; margin-bottom: 8px; }
.bento__blog-title { font-family: var(--font-heading); font-size: 18px; font-weight: var(--weight-bold); line-height: 1.2; margin-bottom: 8px; }
.bento__blog-text { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: #333; margin-bottom: auto; }
.bento__blog-arrow { align-self: flex-end; margin-top: 12px; transition: transform .25s ease; }
.bento__blog:hover .bento__blog-arrow { transform: translateX(4px); }

/* Webinar-CTA (dunkel) — wie .cta-banner */
.bento__cta { background: var(--fs-bg-light); color: #000; border: 1.5px solid #E5E3DD; padding: 20px; justify-content: space-between; }
.bento__cta:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.1); }
.bento__cta-eyebrow { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: #000; margin-bottom: 8px; }
.bento__cta-title { font-family: var(--font-heading); font-size: 18px; font-weight: var(--weight-bold); margin-bottom: 6px; color: #000; }
.bento__cta-date { font-family: var(--font-body); font-size: 14px; color: #555; margin-bottom: 12px; }
.bento__cta-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-size: 14px; font-weight: var(--weight-semibold); color: #000; text-decoration: none; }

/* Responsive */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-xl { grid-column: span 2; }
  .b-wide { grid-column: span 2; }
}
@media (max-width: 767px) {
  .bento { display: flex; flex-direction: column; }
  .bento__feature { flex-direction: column !important; }
  .bento__feature > div:last-child { flex: none !important; height: 200px; }
  .bento__feature-title { font-size: 20px; }
}

/* ── Footer (.fuss) ────────────────────────────────────────────── */
.fuss { background: #fff; color: #000; }
.fuss .rand { width: 100%; max-width: var(--container-max, 1140px); margin-inline: auto; padding-inline: 24px; }

/* 1. Newsletter-Karte (.fnl) */
.fnl { position: relative; z-index: 2; margin-top: -40px; margin-bottom: -70px; }
@media (max-width: 767px) { .fnl { margin-top: 24px; } }
.fnl__card { background: var(--fs-bg-light); border-radius: var(--fs-radius-card) 0 0 var(--fs-radius-card); padding: 32px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; width: min(100%, 66%); margin-left: auto; }
.fnl__title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; line-height: 1.2; margin: 0 0 4px; }
.fnl__claim { font-family: var(--font-body); font-size: 14px; color: #555; margin: 0; }
.fnl__form { display: flex; align-items: center; gap: 12px; }
.fnl__input { flex: 1; font-family: var(--font-body); font-size: 15px; padding: 12px 16px; border: 1.5px solid #E5E3DD; border-radius: 8px; background: #fff; }
.fnl__btn { white-space: nowrap; background: var(--fs-yellow); color: #000; border: none; border-radius: var(--btn-radius); padding: 12px 24px; font-family: var(--font-heading); font-weight: 600; font-size: 15px; cursor: pointer; }
.fnl__btn:hover { background: var(--fs-yellow); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hp-guard { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; pointer-events: none; }

/* 2. Gelbes Band mit Logo + 3 Spalten */
.fuss .band { background: var(--fs-yellow); padding-inline: 24px; padding-top: 100px; }
.band-raster { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); align-items: start; padding-block: 48px; max-width: var(--container-max, 1140px); margin-inline: auto; }
.marke img { width: 161px; height: auto; }
.spalte ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.fuss .spalte-titel { font-family: var(--font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; line-height: 1.2; margin: 0 0 14px; }
.spalte a { font-family: var(--font-body); font-size: 15px; font-weight: 400; color: #000; text-decoration: none; line-height: 1.5; }
.spalte a:hover { text-decoration: underline; }
.kontakt-titel { margin-top: 32px; }
.kontakt-daten { font-family: var(--font-body); font-size: 15px; margin: 0 0 10px; line-height: 1.5; }

/* 3. Schlusszeile (Social + Zahlung) */
.schluss { padding-block: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.sozial { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; flex-wrap: wrap; }
.sozial a { color: #000; display: block; }
.sozial a svg { width: 22px; height: 22px; display: block; }
.sozial a:hover { opacity: .7; }
.zahlung { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.zahlung img { height: 17px; width: auto; }

@media (max-width: 1024px) {
  .band-raster { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .karte { grid-template-columns: 1fr; padding: 24px; }
  .karte-form form { flex-direction: column; }
  .karte-form .fs-input { min-width: auto; }
  .band-raster { grid-template-columns: 1fr; padding-block: 32px; }
  .fuss .spalte-titel { font-size: 12px; }
  .fnl__card { grid-template-columns: 1fr; width: 100%; border-radius: 0; padding: 24px; }
  .fnl__form { flex-direction: column; align-items: stretch; }
}

/* ── Spickzettel-Artikel (.sa) ─────────────────────────────────── */
.sa { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Hero-Band — warmer Hintergrund hinter dem Header */
.sa__hero { background: var(--fs-bg-light); margin: 0 -9999px; padding: 0 9999px; }
.sa__header { max-width: 720px; margin: 0 auto; padding: 56px 0 48px; display: grid; grid-template-columns: 1fr 220px; gap: 40px; align-items: end; }
.sa__badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 12px; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.sa__badge--spiele { background: #FBD9EA; color: var(--fs-level-junior); }
.sa__badge--tipps { background: #D8F1FA; color: var(--fs-level-3); }
.sa__badge--kulissen { background: var(--fs-bg-light); color: #6b6a63; }
.sa__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.08; color: #000; margin: 0 0 14px; letter-spacing: -.02em; overflow-wrap: break-word; }
.sa__teaser { font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: #555; margin: 0; max-width: 48ch; }
.sa__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.sa__tag { font-family: var(--font-heading); font-weight: 600; font-size: 12px; padding: 4px 12px; border-radius: 999px; border: 1.5px solid #E5E3DD; color: #666; background: #fff; text-decoration: none; transition: border-color .2s, color .2s; }
.sa__tag:hover { border-color: #000; color: #000; }
.sa__header-img { border-radius: 16px; overflow: hidden; box-shadow: 6px 6px 0 0 var(--fs-yellow); }
.sa__header-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 700px) {
  .sa__header { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 36px; }
  .sa__header-text { min-width: 0; }
  .sa__header-img { max-width: 240px; box-shadow: 4px 4px 0 0 var(--fs-yellow); }
}

/* Meta-Box ("Das brauchst du") — Flowing Pills */
.sa__meta { margin: 48px 0; background: var(--fs-bg-light); border-radius: 16px; padding: 28px 28px 24px; }
.sa__meta-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; line-height: 1.2; margin: 0 0 16px; color: #000; }
.sa__meta-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.sa__meta-pill { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; font-family: var(--font-body); font-size: 14px; color: #333; background: #fff; padding: 8px 16px; border-radius: 999px; white-space: normal; }
.sa__meta-pill strong { font-family: var(--font-heading); font-weight: 600; color: #000; }
.sa__meta-pill svg { width: 15px; height: 15px; color: #888; flex-shrink: 0; }
.sa__meta-desc { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: #666; margin: 0; font-style: italic; }
.sa__meta-img { border-radius: 12px; overflow: hidden; margin-top: 16px; }
.sa__meta-img img { width: 100%; display: block; }

/* Body — Typografie-first */
.sa__body { margin: 48px 0; }
.sa__body h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.6em; line-height: 1.15; color: #000; margin: 56px 0 16px; padding-top: 8px; }
.sa__body h2:first-child { margin-top: 0; }
.sa__body h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.2em; color: #000; margin: 40px 0 12px; }
.sa__body p { font-family: var(--font-body); font-size: 16.5px; line-height: 1.75; color: #333; margin: 0 0 18px; }
.sa__body ul, .sa__body ol { font-family: var(--font-body); font-size: 16.5px; line-height: 1.75; color: #333; margin: 0 0 18px; padding-left: 1.4em; }
.sa__body li { margin-bottom: 8px; }
.sa__body li::marker { color: var(--fs-yellow); }
.sa__body strong { color: #000; font-weight: 600; }
.sa__body img { width: 100%; border-radius: 14px; margin: 32px 0; display: block; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.sa__body img + h2 { margin-top: 24px; }
.sa__body blockquote { border-left: 4px solid var(--fs-yellow); margin: 32px 0; padding: 4px 0 4px 24px; font-style: italic; color: #555; }

/* Nummerierte Schritte — Timeline-Stil */
.sa__steps { margin: 40px 0; padding-left: 4px; }
.sa__step { display: flex; gap: 20px; margin-bottom: 0; padding-bottom: 32px; position: relative; }
.sa__step:last-child { padding-bottom: 0; }
.sa__step::before { content: ""; position: absolute; left: 18px; top: 40px; bottom: 0; width: 2px; background: #E5E3DD; }
.sa__step:last-child::before { display: none; }
.sa__step-num { flex-shrink: 0; width: 38px; height: 38px; background: var(--fs-yellow); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: #000; position: relative; z-index: 1; }
.sa__step-body { flex: 1; padding-top: 6px; }
.sa__step-body h4 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin: 0 0 6px; color: #000; line-height: 1.3; }
.sa__step-body p { font-family: var(--font-body); font-size: 15.5px; line-height: 1.65; color: #444; margin: 0 0 8px; }
.sa__step-body ul { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #444; margin: 4px 0 0; padding-left: 1.2em; }

/* Tipp-Box — auffällig aber nicht aufdringlich */
.sa__tip { background: #FFF8E7; border: 1.5px solid #F5E6B8; border-radius: 14px; padding: 18px 22px; margin: 32px 0; font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: #333; }
.sa__tip strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: #000; margin-bottom: 4px; }
.sa__tip strong::before { content: "💡 "; }
.sa__tip--person { display: flex; gap: 16px; align-items: flex-start; }
.sa__tip--person .sa__tip-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--fs-yellow); }
.sa__tip--person strong::before { content: ""; }
.sa__tip--warning { background: #FFF0F0; border-color: #F5C6C6; }
.sa__tip--warning::before { content: "⚠️"; }

/* Produkt-CTA — eingebetteter Shop-Link */
.sa__product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 28px 0 40px; }
.sa__product-grid .sa__product { margin: 0; min-width: 0; }
.sa__product { background: #fff; border: 1.5px solid #E5E3DD; border-radius: 16px; padding: 20px 24px; margin: 40px 0; display: flex; align-items: center; gap: 20px; transition: transform .2s, box-shadow .2s; text-decoration: none; color: inherit; }
.sa__product:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.sa__product img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.sa__product > span { font-family: var(--font-heading); font-weight: 700; font-size: 15px; line-height: 1.3; color: #000; }
.sa__product-body { flex: 1; }
.sa__product-body h4 { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin: 0 0 2px; }
.sa__product-body p { font-family: var(--font-body); font-size: 13px; color: #666; margin: 0; }
.sa__product-price { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: #000; white-space: nowrap; }

/* Trennlinie zwischen Sektionen */
.sa__divider { border: none; border-top: 1.5px solid #E5E3DD; margin: 48px 0; }

/* Produkt/Tipp-Querverweis — eingebettete Box innerhalb Artikel */
.sa__ref { background: var(--fs-bg-light); border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); padding: 28px 32px; margin: 40px 0; }
.sa__ref h2, .sa__ref h3 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin: 0 0 8px; color: #000; }
.sa__ref p { font-family: var(--font-body); font-size: 15px; color: #555; margin: 0 0 18px; line-height: 1.6; }
.sa__ref img { width: 100%; border-radius: 10px; margin-bottom: 16px; display: block; }
@media (max-width: 767px) { .sa__ref { padding: 20px; } }

/* Bildzeile — mehrere Fotos nebeneinander innerhalb Artikel */
.sa__img-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 24px 0; }
.sa__img-row img { width: 100%; height: auto; border-radius: 10px; display: block; }

/* Person-Tipp: optionaler h4-Titel */
.sa__tip--person h4 { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin: 0 0 8px; color: #000; }
/* Inline-Bold in Tipp-Paragraphen — nicht als Block rendern */
.sa__tip p strong { display: inline; font-family: inherit; font-size: inherit; color: inherit; margin: 0; }
.sa__tip p strong::before { content: ""; }

/* Navigation (zurück) */
.sa__nav { border-top: 1.5px solid #E5E3DD; margin-top: 64px; padding-top: 24px; margin-bottom: 120px; }
.sa__nav a { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: #000; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.sa__nav a:hover { color: var(--fs-yellow); }

/* Ökosystem-Karten (.sv-eco) — promoted from eg-style.css */
.sv-eco { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.sv-eco__card { border-radius: 16px; overflow: hidden; background: var(--panel, var(--fs-bg-light)); text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.sv-eco__card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.sv-eco__card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.sv-eco__card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sv-eco__card-body h4 { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin: 0; color: #000; }
.sv-eco__card-body p { font-family: var(--font-body); font-size: 13px; color: #666; margin: 0; line-height: 1.4; }
@media (max-width: 1024px) { .sv-eco { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sv-eco { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 600px) { .sa__product-grid { grid-template-columns: 1fr; } }

/* ── Haupt-Navigation: Hover Dropdowns ─────────────────────────── */
.kopf { z-index: 100 !important; background: #fff; transition: box-shadow .3s ease; }
.kopf .logo { display: block; margin-top: -46px; position: relative; z-index: 2; }
.logo__flieger { display: none; }
.kopf--scrolled { box-shadow: 0 2px 18px rgba(0,0,0,.09); }
.kopf--scrolled .logo { margin-top: 0; }
.kopf--scrolled .kopf-innen { min-height: 64px !important; }
.kopf--scrolled .logo__voll { display: none; }
.kopf--scrolled .logo__flieger { display: block; }
.kopf--scrolled .haupt-trigger { font-size: 15px; padding: 0 14px; }
.kopf--scrolled .haupt-link { font-size: 15px; padding: 0 14px; }
.kopf--scrolled .haupt-link--shop { align-self: center; }
.kopf--scrolled .haupt-link--shop img { width: 24px; height: auto; }
.haupt { display: flex; align-items: stretch; gap: 0; margin-left: auto; }
.haupt-item { position: relative; display: flex; align-items: stretch; }
.haupt-trigger { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: #000; padding: 0 22px; display: flex; align-items: center; gap: 6px; white-space: nowrap; cursor: pointer; text-decoration: none; background: none; border: none; transition: color .2s; }
.haupt-trigger:hover { color: var(--fs-yellow); text-decoration: none; }
.haupt-chevron { width: 10px; height: 10px; flex-shrink: 0; transition: transform .25s var(--ease, ease); }
.haupt-item:hover .haupt-chevron,
.haupt-trigger[aria-expanded="true"] .haupt-chevron { transform: rotate(180deg); }
.mega-dropdown__col a.nav-aktiv { color: #000; font-weight: 600; background: var(--fs-bg-light); }
.mega-dropdown__col a.nav-aktiv::before { content: ''; width: 5px; height: 5px; background: var(--fs-yellow); border-radius: 50%; flex-shrink: 0; }
.mobil-drawer a.nav-aktiv { color: #000; font-weight: 700; }
/* Entry-Links (Kategorie-Einstieg) */
li.mega-dropdown__entry > a { font-weight: 700; }
li.mega-dropdown__entry { border-bottom: 1px solid #E5E3DD; padding-bottom: 4px; margin-bottom: 2px; }
.mobil-drawer__gruppe a.mega-dropdown__entry { font-weight: 700; border-radius: 10px 10px 0 0; border-bottom: 1px solid #E5E3DD; padding-bottom: 12px; margin-bottom: 4px; }
.haupt-link { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: #000; padding: 0 22px; display: flex; align-items: center; gap: 8px; white-space: nowrap; text-decoration: none; transition: color .2s; }
.haupt-link:hover { color: var(--fs-yellow); text-decoration: none; }
.haupt-link--shop { background: var(--fs-bg-light); color: #000; border: 1.5px solid #000; border-radius: 8px; padding: 10px 20px; margin-left: auto; }
.haupt-link--shop:hover { background: #e8e6e0; color: #000; filter: none; }
.haupt-link--shop img { height: 24px; width: auto; }

/* Mega Dropdown (Produkte) */
.haupt-item--mega { position: static; }
.mega-dropdown { position: absolute; top: 100%; left: 0; right: 0; width: 100vw; margin-left: calc(50% - 50vw); background: #fff; border-top: 1.5px solid #E5E3DD; border-bottom: 1.5px solid #E5E3DD; box-shadow: 0 20px 60px rgba(0,0,0,.1); padding: 36px 0; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; z-index: 999; pointer-events: none; }
.mega-dropdown.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-dropdown__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr 1fr 1.3fr; gap: 36px; align-items: start; }
.mega-dropdown__title { font-family: var(--font-heading); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #777; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1.5px solid #E5E3DD; }
.mega-dropdown__subtitle { font-family: var(--font-heading); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: #000; margin: 0 0 8px; display: flex; align-items: center; gap: 6px; }
.mega-dropdown__subtitle img { height: 30px; width: auto; flex-shrink: 0; opacity: .9; }
.mega-dropdown__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mega-dropdown__col a { font-family: var(--font-body); font-size: 15px; color: #444; text-decoration: none; padding: 7px 10px; display: flex; align-items: center; gap: 10px; border-radius: 8px; transition: background .15s, color .15s; }
.mega-dropdown__col a:hover { background: var(--fs-bg-light); color: #000; text-decoration: none; }
.mega-dropdown__col-feature { margin-bottom: 6px; }
.mega-dropdown__col-feature a { background: var(--fs-bg-light); border-radius: 10px; padding: 10px 12px; gap: 12px; overflow: hidden; }
.mega-dropdown__col-feature a:hover { box-shadow: none; background: #ede9e2; }
.mega-dropdown__col-feature-img { height: 40px; width: auto; flex-shrink: 0; }
/* Promo-Karte im Mega-Menü — gestylt wie .bk-Karte */
.mega-dropdown__promo { background: var(--fs-bg-light); border: 1.5px solid #E5E3DD; border-radius: 16px; overflow: hidden; padding: 0; display: flex; flex-direction: column; gap: 0; align-self: start; transition: transform .2s, box-shadow .2s; }
.mega-dropdown__promo:hover { transform: translateY(-3px); box-shadow: 6px 6px 0 0 #000; }
.mega-dropdown__promo > img { width: 100%; border-radius: 0; aspect-ratio: 16/9; object-fit: cover; display: block; }
.mega-dropdown__promo h4 { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin: 0; padding: 16px 18px 4px; }
.mega-dropdown__promo p { font-family: var(--font-body); font-size: 13px; color: #666; margin: 0; line-height: 1.5; padding: 0 18px; flex: 1; }
.mega-dropdown__promo-cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: #000; text-decoration: none; margin: 14px 18px 18px; padding: 8px 16px; background: var(--fs-yellow); border-radius: 10px; align-self: flex-start; transition: filter .15s; }
.mega-dropdown__promo-cta > img { width: 14px; height: auto; }
.mega-dropdown__promo-cta:hover { filter: brightness(.93); }

/* Sub Dropdown (4Schools) */
.haupt-item--sub { position: relative; }
.sub-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 220px; background: #fff; border: 1.5px solid #E5E3DD; border-radius: 0 0 14px 14px; box-shadow: 0 16px 48px rgba(0,0,0,.08); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; z-index: 999; display: flex; flex-direction: column; gap: 2px; pointer-events: none; }
.sub-dropdown.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.sub-dropdown a { font-family: var(--font-body); font-size: 15px; color: #333; text-decoration: none; padding: 9px 14px; border-radius: 8px; transition: background .15s, color .15s; }
.sub-dropdown a:hover { background: var(--fs-bg-light); color: #000; }

@media (max-width: 1024px) {
  .mega-dropdown__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mega-dropdown__promo { grid-column: span 2; }
  .mega-dropdown { min-width: 600px; }
}
@media (max-width: 767px) {
  .haupt { display: none; }
  .mega-dropdown, .sub-dropdown { display: none !important; }
}

/* ── Megamenü (.mega-nav) — Legacy/Widget-Sammlung ────────────── */
.mega-nav { background: #fff; border-bottom: 1.5px solid #E5E3DD; position: relative; z-index: 50; }
.mega-nav__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 0; }
.mega-nav__logo { flex-shrink: 0; padding: 12px 0; margin-right: 32px; }
.mega-nav__logo img { height: 52px; width: auto; }
.mega-nav__links { display: flex; align-items: stretch; gap: 0; flex: 1; }
.mega-nav__item { position: relative; }
.mega-nav__trigger { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: #000; padding: 20px 18px; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: color .2s; }
.mega-nav__trigger:hover { color: var(--fs-yellow); text-decoration: none; }
.mega-nav__trigger svg { width: 10px; height: 10px; transition: transform .25s var(--ease); }
.mega-nav__link { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: #000; padding: 20px 18px; text-decoration: none; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.mega-nav__link:hover { color: var(--fs-yellow); text-decoration: none; }
.mega-nav__link--shop { background: var(--fs-yellow); border-radius: 8px; padding: 10px 18px; margin: auto 0 auto auto; }
.mega-nav__link--shop img { height: 22px; width: auto; }
.mega-nav__link--shop:hover { filter: brightness(.95); color: #000; }

/* Megamenü Dropdown — Fullwidth */
.mega-nav__item { position: static; }
.mega-nav__dropdown { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1.5px solid #E5E3DD; box-shadow: 0 16px 48px rgba(0,0,0,.08); padding: 40px 0; display: none; z-index: 60; }
.mega-nav__item:hover .mega-nav__dropdown,
.mega-nav__item:focus-within .mega-nav__dropdown { display: block; }
.mega-nav__item:hover .mega-nav__trigger svg { transform: rotate(180deg); }
.mega-nav__dropdown-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 40px; }

/* Megamenü Spalte */
.mega-nav__col-title { font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: #6b6a63; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1.5px solid #E5E3DD; }
.mega-nav__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mega-nav__col a { font-family: var(--font-body); font-size: 15px; color: #000; text-decoration: none; padding: 8px 10px; display: flex; align-items: center; gap: 12px; border-radius: 8px; transition: background .15s var(--ease); }
.mega-nav__col a:hover { background: var(--fs-bg-light); text-decoration: none; }
.mega-nav__col a img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }

/* Megamenü Promo-Karte (rechte Spalte) */
.mega-nav__promo { background: var(--fs-bg-light); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.mega-nav__promo img { width: 100%; border-radius: 10px; aspect-ratio: 16/9; object-fit: cover; }
.mega-nav__promo h4 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin: 0; }
.mega-nav__promo p { font-family: var(--font-body); font-size: 14px; color: #6b6a63; margin: 0; line-height: 1.5; }
.mega-nav__promo-cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: #000; text-decoration: none; margin-top: auto; }
.mega-nav__promo-cta:hover { color: var(--fs-yellow); }

@media (max-width: 1024px) {
  .mega-nav__dropdown-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mega-nav__promo { grid-column: span 2; flex-direction: row; align-items: center; }
  .mega-nav__promo img { width: 180px; flex-shrink: 0; aspect-ratio: 4/3; }
}
@media (max-width: 767px) {
  .mega-nav__links { display: none; }
  .mega-nav__dropdown { display: none !important; }
}

/* Scroll-Animationen */
[data-anim] { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-anim].sichtbar { opacity: 1; transform: none; }
[data-anim] > :nth-child(1) { transition-delay: 0s; }
[data-anim] > :nth-child(2) { transition-delay: .1s; }
[data-anim] > :nth-child(3) { transition-delay: .15s; }
[data-anim] > :nth-child(4) { transition-delay: .2s; }
[data-anim] > :nth-child(5) { transition-delay: .25s; }
/* Widget-spezifische Stagger-Animationen (Container bleibt sichtbar, Kinder cascaden) */
.bk-row[data-anim] { opacity: 1 !important; transform: none !important; }
.bk-row[data-anim] .bk { opacity: 0; transform: translateY(16px); }
.bk-row[data-anim].sichtbar .bk { opacity: 1; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease); }
.bk-row[data-anim].sichtbar .bk:nth-child(1) { transition-delay: 0s; }
.bk-row[data-anim].sichtbar .bk:nth-child(2) { transition-delay: .12s; }
.bk-row[data-anim].sichtbar .bk:nth-child(3) { transition-delay: .24s; }
.blog[data-anim] { opacity: 1 !important; transform: none !important; }
.blog[data-anim] .blog__card { opacity: 0; transform: translateY(16px); }
.blog[data-anim].sichtbar .blog__card { opacity: 1; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease); }
.blog[data-anim].sichtbar .blog__card:nth-child(1) { transition-delay: 0s; }
.blog[data-anim].sichtbar .blog__card:nth-child(2) { transition-delay: .12s; }
.blog[data-anim].sichtbar .blog__card:nth-child(3) { transition-delay: .24s; }
.trio[data-anim] { opacity: 1 !important; transform: none !important; }
.trio[data-anim] .trio__card { opacity: 0; transform: translateY(16px); }
.trio[data-anim].sichtbar .trio__card { opacity: 1; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease); }
.trio[data-anim].sichtbar .trio__card:nth-child(1) { transition-delay: 0s; }
.trio[data-anim].sichtbar .trio__card:nth-child(2) { transition-delay: .12s; }
.trio[data-anim].sichtbar .trio__card:nth-child(3) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { transition: none; opacity: 1; transform: none; }

  .bk,
  .bk__image,
  .blog__card,
  .pricing__card,
  .faq__item,
  .bento__card,
  .bento__feature,
  .bento__cta,
  .spotlight__card::after,
  .spotlight__card-text,
  .marquee__track,
  .ticker__digit,
  .text-reveal span,
  .reveal-card img,
  .reveal-card__overlay,
  .reveal-card__overlay h4,
  .reveal-card__overlay p,
  .tilt-card__inner,
  .progress-step,
  .progress-step__dot,
  .ms-overlay-row a { transition: none; animation: none; }

  .bk-row[data-anim] .bk,
  .blog[data-anim] .blog__card,
  .trio[data-anim] .trio__card { opacity: 1; transform: none; transition: none; }

  .blog__card,

  .bk:hover,
  .blog__card:hover,
  .bento__card:hover,
  .bento__feature:hover,
  .bento__cta:hover,
  .ms-overlay-row a:hover,
  [data-anim].sichtbar .pricing__card:hover { transform: none; }

  .bk:hover .bk__image,
  .bento__product:hover .pk__image,
  .reveal-card:hover img { transform: none; }

  .spotlight__card:hover::after { background: rgba(0,0,0,.5); }
  .spotlight__card:hover .spotlight__card-text { transform: none; }

  .tilt-card:hover .tilt-card__inner { transform: none; }

  .hotspot__dot { animation: none; }
  [data-anim].sichtbar .hotspot__dot { animation: none; }
  .hotspot__tip { transition: none; }

  .marquee__track { animation: none; }
  .ticker__digit { animation: none; }
  .text-reveal span { opacity: 1; transform: none; }
  .progress-step { opacity: 1; transform: none; }

  .parallax-img img { transform: none; }
  .ps-benefits__bg { background-attachment: scroll; }
  .cta-banner--full .cta-banner__inner { background-attachment: scroll; }
  .teaser--full .teaser__bg { background-attachment: scroll; }
}

/* ── Design-System: Button-Basis & Shared Styles ─────────────── */

/* Button-Basis (gilt für ALLE Button-Varianten) */
.btn,
.cta-box__btn,
.intro__cta,
.bk__cta,
.teaser__cta,
.lernen__cta,
.cta-banner__btn,
.duo__cta,
.blog-hero__cta,
.promo__cta,
.band__card-cta,
.pricing__btn,
.nl__submit,
.fs-submit,
.ps-hero__cta,
.trio__card-cta {
  border-radius: var(--btn-radius);
  box-shadow: none;
}

/* .btn Varianten */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--btn-font); font-weight: var(--btn-weight); font-size: var(--btn-size); padding: var(--btn-pad); border: none; cursor: pointer; text-decoration: none; transition: transform .15s var(--ease), box-shadow .15s var(--ease); }
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--fs-yellow); color: #000; }
.btn--primary:hover { opacity: .85; }
.btn--highlight { background: var(--fs-yellow); color: #000; box-shadow: var(--shadow-highlight); }
.btn--highlight:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 #000, 4px 4px 16px -6px rgba(43,46,52,.35); }
.btn--secondary { background: #fff; color: #000; border: 1.5px solid #E5E3DD; }
.btn--secondary:hover { border-color: #000; }
.btn--text { background: none; border-bottom: 2px solid #000; border-radius: 0; padding: 0 0 3px; font-size: 14.5px; box-shadow: none; }
.btn--text:hover { border-color: var(--fs-yellow); }
.btn img, .btn svg { width: 20px; height: auto; flex-shrink: 0; }
.btn:disabled, .fs-submit:disabled, .pricing__btn:disabled, .nl__submit:disabled { opacity: .4; cursor: default; pointer-events: none; }

/* Badges (.badge) */
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 700; font-size: 11.5px; padding: 6px 13px; border-radius: 999px; }
.badge--pink { background: var(--fs-level-junior); color: #fff; }
.badge--green { background: var(--fs-level-1); color: #000; }
.badge--orange { background: var(--fs-level-2); color: #000; }
.badge--blue { background: var(--fs-level-3); color: #fff; }
.badge--dark { background: #000; color: #fff; }
.badge--yellow { background: var(--fs-yellow); color: #000; }

/* Nummerierte Schritte (.steps) */
.steps { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: var(--gap-eng) auto; padding: 0 24px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__num { width: 30px; height: 30px; border-radius: 50%; background: #000; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step h3 { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.step p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; padding-top: 4px; margin: 0; }
.step + .step { position: relative; }
.step + .step::before { content: ""; position: absolute; top: -20px; left: 14px; width: 2px; height: 20px; background: #E5E3DD; }

/* Feature-Icon-Grid (.feat-grid) — konsolidiert mit .ib */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.feat { padding: 22px; border-radius: 14px; background: var(--fs-bg-light); transition: all .2s var(--ease); }
.feat:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.feat--white { background: #fff; border: 1.5px solid #E5E3DD; }
.feat--highlight { background: #fff; box-shadow: var(--shadow-highlight); }
.feat__icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 19px; }
.feat__icon--pink { background: #FBD9EA; }
.feat__icon--green { background: #EAF5D2; }
.feat__icon--blue { background: #D8F1FA; }
.feat__icon--yellow { background: var(--fs-yellow); }
.feat__icon--dark { background: #000; color: #fff; }
.feat h4 { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; margin: 0 0 5px; }
.feat p { font-family: var(--font-body); font-size: 13px; color: #6b6a63; line-height: 1.5; margin: 0; }
.feat-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .feat-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .feat-grid, .feat-grid--2, .feat-grid--4 { grid-template-columns: 1fr; } }

/* Team-Porträt (.team-card) */
.team-card { display: flex; align-items: center; gap: 16px; background: var(--fs-bg-light); border-radius: var(--fs-radius-card); padding: 20px; width: 100%; }
.team-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--fs-yellow); }
.team-card__body { display: flex; flex-direction: column; gap: 2px; }
.team-card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; margin: 0; }
.team-card span { font-family: var(--font-body); font-size: 12.5px; color: #6b6a63; }
.team-card p { font-family: var(--font-body); font-size: 13px; color: #6b6a63; line-height: 1.5; margin: 6px 0 0; }

/* Störer / Eye-Catcher */
.ribbon { position: relative; overflow: hidden; }
.ribbon__tag { position: absolute; top: 14px; right: -34px; background: var(--fs-level-junior); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 10px; padding: 4px 38px; transform: rotate(45deg); }
.sticker { width: 72px; height: 72px; border-radius: 50%; background: var(--fs-yellow); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(-8deg); font-family: var(--font-heading); font-weight: 700; color: #000; text-align: center; }
.sticker span:first-child { font-size: 15px; }
.sticker span:last-child { font-size: 8.5px; }
.floating-pill { background: #000; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 12px; padding: 9px 16px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }
.promo-strip { background: #000; color: #fff; border-radius: var(--btn-radius); padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-heading); font-weight: 600; font-size: 12.5px; gap: 12px; flex-wrap: wrap; max-width: var(--container-max); margin: 0 auto; }
.promo-strip strong { color: var(--fs-yellow); }

/* Video-Band (.video-band) */
.video-band { position: relative; border-radius: var(--fs-radius-card); overflow: hidden; aspect-ratio: 16/7; max-width: var(--container-max); margin: var(--gap-eng) auto; }
.video-band img { width: 100%; height: 100%; object-fit: cover; }
.video-band__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.28); cursor: pointer; }
.video-band__btn { width: 60px; height: 60px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-highlight); }

/* Fullwidth-Bänder (.fw-band) */
.fw-band { padding: 48px 24px; position: relative; border-radius: var(--fs-radius-card); }
.fw-band--full { border-radius: 0; }
.fw-band--color { background: var(--fs-yellow); }
.fw-band--soft-pink { background: #FBD9EA; }
.fw-band--soft-green { background: #EAF5D2; }
.fw-band--soft-blue { background: #D8F1FA; }
.fw-band--soft-orange { background: #FCE9C8; }
.fw-band--neutral { background: var(--fs-bg-light); }
.fw-band--dark { background: #000; color: #fff; }
.fw-band--photo { background-size: cover; background-position: center; min-height: 180px; display: flex; align-items: flex-end; }
.fw-band--photo::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4); border-radius: inherit; }
.fw-band--photo > * { position: relative; z-index: 1; }
.fw-band--photo, .fw-band--photo .fw-band__title, .fw-band--photo .fw-band__eyebrow { color: #fff; }
.fw-band__inner { max-width: var(--container-max); margin: 0 auto; }
.fw-band__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.fw-band--soft-pink .fw-band__eyebrow { color: var(--fs-level-junior); }
.fw-band--color .fw-band__eyebrow { color: #6b5a00; }
.fw-band__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.5em; line-height: 1.15; margin-top: 8px; }
.fw-band__text { font-family: var(--font-body); font-size: 15px; line-height: 1.6; margin-top: 10px; max-width: 600px; }
.fw-band--boxed { max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 36px; }
.fw-band__grid { display: grid; gap: 24px; margin-top: 24px; }
.fw-band__grid--2 { grid-template-columns: 1fr 1fr; }
.fw-band__grid--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 767px) { .fw-band__grid--2, .fw-band__grid--3 { grid-template-columns: 1fr; } .fw-band__title { font-size: 20px; } }

/* ── Neue moderne Widgets ──────────────────────────────────────── */

/* Stat-Card (.stat-card) — Große Zahl + Label */
.stat-card { border-radius: var(--fs-radius-card); padding: 28px 24px; text-align: center; }
.stat-card--flat { background: var(--fs-bg-light); }
.stat-card--highlight { background: #fff; box-shadow: var(--shadow-highlight); }
.stat-card__num { font-family: var(--font-heading); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.stat-card__label { font-family: var(--font-body); font-size: 13.5px; color: #6b6a63; margin-top: 6px; }

/* Logo-Strip (.logo-strip) — Vertrauens-/Partner-Logos */
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: var(--container-max); margin: 80px auto; padding: 0 24px; opacity: .5; }
.logo-strip img { height: 36px; width: auto; filter: grayscale(1); transition: filter .2s var(--ease), opacity .2s var(--ease); }
.logo-strip img:hover { filter: grayscale(0); opacity: 1; }

/* Alert / Notice (.alert) */
.alert { max-width: var(--container-max); margin: 24px auto; padding: 16px 24px; border-radius: var(--fs-radius-card); display: flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 14px; line-height: 1.5; }
.alert--info { background: #D8F1FA; color: #0a5e7d; }
.alert--success { background: #EAF5D2; color: #4d6b06; }
.alert--warning { background: #FCE9C8; color: #7a5000; }
.alert--highlight { background: var(--fs-yellow); color: #000; }
.alert strong { font-weight: 700; }

/* Avatar-Stack (.avatar-stack) — Social Proof */
.avatar-stack { display: flex; align-items: center; gap: 0; }
.avatar-stack img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -10px; }
.avatar-stack img:first-child { margin-left: 0; }
.avatar-stack__label { margin-left: 12px; font-family: var(--font-body); font-size: 14px; color: #6b6a63; }
.avatar-stack__label strong { color: #000; font-weight: 700; }

/* Comparison (.comparison) — Feature-Vergleich */
.comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 900px; margin: var(--gap-eng) auto; padding: 0 24px; border: 1.5px solid #E5E3DD; border-radius: var(--fs-radius-card); overflow: hidden; }
.comparison__col { padding: 32px 24px; display: flex; flex-direction: column; gap: 16px; }
.comparison__col + .comparison__col { border-left: 1.5px solid #E5E3DD; }
.comparison__col--highlight { background: var(--fs-bg-light); }
.comparison__head { font-family: var(--font-heading); font-weight: 700; font-size: 16px; padding-bottom: 16px; border-bottom: 1.5px solid #E5E3DD; }
.comparison__row { font-family: var(--font-body); font-size: 13.5px; color: #6b6a63; display: flex; align-items: center; gap: 8px; }
.comparison__row svg { flex-shrink: 0; }
@media (max-width: 767px) { .comparison { grid-template-columns: 1fr; } .comparison__col + .comparison__col { border-left: none; border-top: 1.5px solid #E5E3DD; } }

/* Marquee (.marquee) — Laufschrift */
.marquee { overflow: hidden; padding: 16px 0; border-top: 1px solid #E5E3DD; border-bottom: 1px solid #E5E3DD; }
.marquee__track { display: flex; gap: 48px; animation: marqueeScroll 20s linear infinite; white-space: nowrap; }
.marquee__item { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: #6b6a63; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.marquee__item span { color: var(--fs-yellow); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CTA-Split (.cta-split) — Bild | Text für Conversion */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; gap: 0; align-items: stretch; }
.cta-split__media { border-radius: var(--fs-radius-card) 0 0 var(--fs-radius-card); overflow: hidden; }
.cta-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-split__body { background: var(--fs-bg-light); border-radius: 0 var(--fs-radius-card) var(--fs-radius-card) 0; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.cta-split__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--fs-level-junior); }
.cta-split__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.5em; letter-spacing: -.02em; margin: 0; }
.cta-split__text { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: #6b6a63; margin: 0; max-width: 65ch; }
.cta-split--reverse { direction: rtl; }
.cta-split--reverse > * { direction: ltr; }
.cta-split--reverse .cta-split__media { border-radius: 0 var(--fs-radius-card) var(--fs-radius-card) 0; }
.cta-split--reverse .cta-split__body { border-radius: var(--fs-radius-card) 0 0 var(--fs-radius-card); }
@media (max-width: 1024px) { .cta-split, .cta-split--reverse { gap: 0; } .cta-split__body { padding: 36px 28px; } }
@media (max-width: 767px) { .cta-split, .cta-split--reverse { grid-template-columns: 1fr; direction: ltr; } .cta-split__media, .cta-split--reverse .cta-split__media { border-radius: var(--fs-radius-card) var(--fs-radius-card) 0 0; } .cta-split__body, .cta-split--reverse .cta-split__body { border-radius: 0 0 var(--fs-radius-card) var(--fs-radius-card); } .cta-split__title { font-size: 20px; } }

/* Testimonial (.testimonial) — Zitat mit Avatar */
.testimonial { max-width: 800px; margin: var(--gap-eng) auto; padding: 0 24px; text-align: center; }
.testimonial__text { font-family: var(--font-heading); font-weight: 600; font-size: 20px; line-height: 1.4; color: #000; margin: 0 0 24px; }
.testimonial__text::before { content: "\201E"; color: var(--fs-yellow); font-size: 32px; }
.testimonial__text::after { content: "\201C"; color: var(--fs-yellow); font-size: 32px; }
.testimonial__author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--fs-yellow); }
.testimonial__author-info { text-align: left; }
.testimonial__author-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.testimonial__author-role { font-family: var(--font-body); font-size: 12.5px; color: #6b6a63; }

/* Feature-Row (.feature-row) — Icon links + Text rechts, horizontal */
.feature-row { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; }
.feature-row + .feature-row { border-top: 1px solid #E5E3DD; }
.feature-row__icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 19px; background: var(--fs-bg-light); }
.feature-row__body h4 { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; margin: 0 0 4px; }
.feature-row__body p { font-family: var(--font-body); font-size: 13px; color: #6b6a63; line-height: 1.5; margin: 0; }
/* Feature-Row--list — kompakte Aufzählung ohne Subtitel, Icon mittig zum Text */
.feature-row--list { align-items: center; padding: 12px 0; }
.feature-row--list .feature-row__icon { width: 32px; height: 32px; background: transparent; font-size: 16px; }
.feature-row--list .feature-row__body h4 { margin-bottom: 0; font-weight: 400; }

/* Tab-Nav (.tab-nav) — Generalisierter Tab-Switcher */
.tab-nav { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.tab-nav__btn { font-family: var(--font-heading); font-weight: 600; font-size: 14px; padding: 12px 20px; border: 1.5px solid #E5E3DD; background: #fff; color: #000; cursor: pointer; transition: background .15s var(--ease), color .15s var(--ease); text-align: center; }
.tab-nav__btn:first-child { border-radius: var(--btn-radius) 0 0 var(--btn-radius); }
.tab-nav__btn:last-child { border-radius: 0 var(--btn-radius) var(--btn-radius) 0; }
.tab-nav__btn:not(:first-child) { border-left: none; }
.tab-nav__btn--active { background: #000; color: #fff; border-color: #000; }
.tab-nav__btn small { display: block; font-weight: 400; font-size: 11px; margin-top: 2px; opacity: .6; }

/* Hero-Varianten (.hero-alt) */
.hero-alt { max-width: var(--container-max); margin: 80px auto var(--gap-eng); padding: 0 24px; }
.hero-alt__box { background: var(--fs-bg-light); border-radius: 20px; padding: clamp(36px,5vw,64px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; overflow: visible; position: relative; }
.hero-alt__badge { display: inline-block; background: #fff; border-radius: 999px; padding: 7px 16px; font-family: var(--font-heading); font-weight: 700; font-size: 12px; margin-bottom: 20px; }
.hero-alt__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(44px, 5.5vw, 72px); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 18px; }
.hero-alt__text { font-family: var(--font-body); font-size: 16px; color: #4a4a44; line-height: 1.6; max-width: 42ch; margin: 0 0 26px; }
.hero-alt__media { position: relative; display: flex; justify-content: center; overflow: visible; }
.hero-alt__cover { max-width: 320px; width: 100%; position: relative; bottom: -40px; transform: rotate(-3deg); filter: drop-shadow(0 20px 40px rgba(43,46,52,.18)); }
.hero-alt__logo { position: absolute; top: 50%; right: 10%; width: 200px; opacity: .08; pointer-events: none; z-index: 0; transform: translateY(-50%); }
.hero-alt__media { z-index: 1; }
.hero-alt--color .hero-alt__box { background: var(--fs-yellow); }
.hero-alt--color .hero-alt__badge { background: #fff; }
.hero-alt--dark .hero-alt__box { background: #000; color: #fff; }
.hero-alt--dark .hero-alt__title { color: #fff; }
.hero-alt--dark .hero-alt__text { color: rgba(255,255,255,.7); }
.hero-alt--dark .hero-alt__badge { background: var(--fs-yellow); }
.hero-alt--dark .hero-alt__logo { opacity: .06; filter: invert(1); }
@media (max-width: 1024px) {
  .hero-alt__logo { width: 140px; }
}
@media (max-width: 767px) {
  .hero-alt__box { grid-template-columns: 1fr; padding: 32px; }
  .hero-alt__cover { bottom: -20px; max-width: 200px; margin-top: 20px; }
  .hero-alt__logo { width: 100px; right: 20px; top: 20px; transform: none; }
}

/* ── Kreative / Animations-Widgets ─────────────────────────────── */

/* Reveal-Card (.reveal-card) — Bild-Zoom + Overlay on Hover */
.reveal-card { position: relative; border-radius: var(--fs-radius-card); overflow: hidden; cursor: pointer; }
.reveal-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.reveal-card:hover img { transform: scale(1.06); }
.reveal-card__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity .3s var(--ease); }
.reveal-card:hover .reveal-card__overlay { opacity: 1; }
.reveal-card__overlay h4 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: #fff; margin: 0 0 6px; transform: translateY(8px); transition: transform .3s var(--ease); }
.reveal-card:hover .reveal-card__overlay h4 { transform: none; }
.reveal-card__overlay p { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.8); margin: 0; transform: translateY(8px); transition: transform .3s .05s var(--ease); }
.reveal-card:hover .reveal-card__overlay p { transform: none; }

/* Reveal-Card Variante: Text immer sichtbar */
.reveal-card--visible .reveal-card__overlay { opacity: 1; background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, transparent 60%); }
.reveal-card--visible .reveal-card__overlay h4, .reveal-card--visible .reveal-card__overlay p { transform: none; }
.reveal-card--visible:hover img { transform: scale(1.04); }
.reveal-card--visible:hover .reveal-card__overlay { background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 70%); }

/* Hover-Tilt (.tilt-card) — 3D-Neigung on Hover (CSS-only) */
.tilt-card { perspective: 800px; }
.tilt-card__inner { border-radius: var(--fs-radius-card); overflow: hidden; background: #fff; border: 1.5px solid #E5E3DD; transition: transform .3s var(--ease), box-shadow .3s var(--ease); transform-style: preserve-3d; }
.tilt-card:hover .tilt-card__inner { transform: rotateX(-2deg) rotateY(3deg) scale(1.01); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.tilt-card__inner img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.tilt-card__body { padding: 24px; }
.tilt-card__body h4 { font-family: var(--font-heading); font-weight: 700; font-size: 15.5px; margin: 0 0 6px; }
.tilt-card__body p { font-family: var(--font-body); font-size: 13.5px; color: #6b6a63; line-height: 1.5; margin: 0; }

/* Progress-Steps (.progress-steps) — Horizontale Fortschrittsleiste */
.progress-steps { display: flex; align-items: flex-start; max-width: 900px; margin: var(--gap-eng) auto; padding: 0 24px; }
.progress-step { flex: 1; text-align: center; position: relative; }
.progress-step::before { content: ""; position: absolute; top: 16px; left: 50%; width: 100%; height: 2px; background: #E5E3DD; z-index: 0; }
.progress-step:last-child::before { display: none; }
.progress-step__dot { width: 34px; height: 34px; border-radius: 50%; background: var(--fs-bg-light); border: 2px solid #E5E3DD; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; position: relative; z-index: 1; font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: #6b6a63; transition: all .3s var(--ease); }
.progress-step--active .progress-step__dot { background: var(--fs-yellow); border-color: var(--fs-yellow); color: #000; }
.progress-step--done .progress-step__dot { background: #000; border-color: #000; color: #fff; }
.progress-step--done::before { background: #000; }
.progress-step h4 { font-family: var(--font-heading); font-weight: 600; font-size: 13px; margin: 0 0 4px; }
.progress-step p { font-family: var(--font-body); font-size: 12px; color: #6b6a63; margin: 0; }

/* Progress-Steps vertikal (.progress-steps--vertical) */
.progress-steps--vertical { flex-direction: column; align-items: flex-start; gap: 0; }
.progress-steps--vertical .progress-step { display: flex; flex-direction: row; text-align: left; gap: 16px; padding: 0 0 32px; position: relative; flex: none; }
.progress-steps--vertical .progress-step::before { content: ""; position: absolute; top: 34px; left: 16px; width: 2px; height: calc(100% - 34px); background: #E5E3DD; }
.progress-steps--vertical .progress-step:last-child::before { display: none; }
.progress-steps--vertical .progress-step--done::before { background: #000; }
.progress-steps--vertical .progress-step__dot { margin: 0; flex-shrink: 0; }
.progress-steps--vertical .progress-step h4, .progress-steps--vertical .progress-step p { text-align: left; }

/* Progress-Steps Scroll-Animation */
.progress-steps[data-anim] .progress-step { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.progress-steps[data-anim].sichtbar .progress-step { opacity: 1; transform: none; }
.progress-steps[data-anim].sichtbar .progress-step:nth-child(1) { transition-delay: 0s; }
.progress-steps[data-anim].sichtbar .progress-step:nth-child(2) { transition-delay: .15s; }
.progress-steps[data-anim].sichtbar .progress-step:nth-child(3) { transition-delay: .3s; }
.progress-steps[data-anim].sichtbar .progress-step:nth-child(4) { transition-delay: .45s; }
.progress-steps[data-anim].sichtbar .progress-step:nth-child(5) { transition-delay: .6s; }
.progress-steps[data-anim].sichtbar .progress-step--done .progress-step__dot { animation: ps-pop .4s var(--ease) both; }
.progress-steps[data-anim].sichtbar .progress-step--active .progress-step__dot { animation: ps-pop .4s var(--ease) .6s both; }
@keyframes ps-pop { 0% { transform: scale(0.5); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* Text-Reveal (.text-reveal) — Wort-für-Wort Einblendung */
.text-reveal { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2em, 5vw, 3.5em); line-height: 1.1; letter-spacing: -.02em; }
.text-reveal span { display: inline-block; opacity: 0; transform: translateY(20px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.text-reveal.sichtbar span { opacity: 1; transform: none; }

/* Gradient-Text (.gradient-text) — Farbverlauf-Headline */
.gradient-text { background: linear-gradient(135deg, var(--fs-yellow) 0%, var(--fs-level-junior) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text--blue { background: linear-gradient(135deg, var(--fs-level-3) 0%, var(--fs-level-1) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Number-Ticker (.ticker) — Zahl rollt hoch */
.ticker { font-family: var(--font-heading); font-weight: 700; font-size: 48px; line-height: 1; letter-spacing: -.02em; display: inline-flex; overflow: hidden; }
.ticker__digit { display: inline-block; animation: tickerRoll .6s var(--ease) both; }
@keyframes tickerRoll { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* Parallax-Image (.parallax-img) — Langsamer Scroll */
.parallax-img { overflow: hidden; border-radius: var(--fs-radius-card); height: 400px; }
.parallax-img img { width: 100%; height: 140%; object-fit: cover; object-position: center; transform: translateY(calc(var(--scroll, 0) * -80px)); will-change: transform; }

/* Accordion-Visual (.accordion-visual) — Bild links, Accordion rechts */
.accordion-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; align-items: start; }
.accordion-visual__media { border-radius: var(--fs-radius-card); overflow: hidden; position: sticky; top: 120px; }
.accordion-visual__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: opacity .4s var(--ease); }
.accordion-visual__list { display: flex; flex-direction: column; }
.accordion-visual__item { border-bottom: 1px solid #E5E3DD; }
.accordion-visual__item summary { font-family: var(--font-heading); font-weight: 600; font-size: 15px; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.accordion-visual__item summary::after { content: "+"; font-size: 20px; font-weight: 300; color: #6b6a63; transition: transform .2s var(--ease); }
.accordion-visual__item[open] summary::after { transform: rotate(45deg); }
.accordion-visual__item p { font-family: var(--font-body); font-size: 14px; color: #6b6a63; line-height: 1.6; padding: 0 0 18px; margin: 0; }
@media (max-width: 767px) { .accordion-visual { grid-template-columns: 1fr; } .accordion-visual__media { position: static; } }

/* (App-Seite nutzt page-scoped <style> in app.html) */

/* Trio-Row (.trio) — 3-Spalten-Layout mit verschiedenen Kartentypen */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container-max); margin: var(--gap-eng) auto; padding: 0 24px; }
.trio__card { border: 1.5px solid #000; border-radius: var(--fs-radius-card); overflow: hidden; display: flex; flex-direction: column; }
.trio__card--gelb { background: var(--fs-yellow); }
.trio__card--weiss { background: #fff; padding: 40px 32px; justify-content: center; }
.trio__card--bild { padding: 0; }
.trio__card-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.trio__card-body { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.trio__card-title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 1.5em; line-height: 1.2; margin: 0; color: #000; }
.trio__card-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-family: var(--font-body); font-size: 15px; color: #000; }
.trio__card-list li { display: flex; align-items: center; gap: 10px; }
.trio__card-list li svg { width: 18px; height: 18px; flex-shrink: 0; }
.trio__card-list a { color: #000; text-decoration: none; }
.trio__card-list a:hover { text-decoration: underline; }
.trio__card-text { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #333; margin: 0; }
.trio__card-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; text-decoration: none; border: none; padding: 10px 20px; background: var(--fs-yellow); margin-top: auto; align-self: flex-start; white-space: nowrap; transition: opacity .15s ease; }
.trio__card-cta:hover { opacity: .85; }
.trio__card-cta img { width: 28px; height: auto; }
.trio--social .trio__card { padding: 48px 24px; text-align: center; align-items: center; justify-content: center; gap: 16px; }
.trio--social .trio__card-icon { width: 48px; height: 48px; }
.trio--social .trio__card-title { font-size: 1.2em; }
.trio--social .trio__card-link { font-family: var(--font-body); font-size: 14px; color: #333; text-decoration: none; margin-top: auto; }
.trio--social .trio__card-link:hover { text-decoration: underline; }
@media (max-width: 1024px) {
  .trio { grid-template-columns: 1fr 1fr; }
  .trio__card--bild { grid-column: span 2; }
  .trio__card--bild .trio__card-image { aspect-ratio: 16/9; }
}
@media (max-width: 767px) {
  .trio { grid-template-columns: 1fr; }
  .trio__card--bild { grid-column: span 1; }
  .trio__card-title { font-size: 20px; }
}

/* Focus-Visible */
:focus-visible { outline: 2px solid var(--fs-yellow); outline-offset: 2px; }

/* Pflichtschulen Hero (.ps-hero) — weißer BG mit Deko-Linie */
.ps-hero { margin: 80px 0 0; padding: 80px 0 160px; background: #fff; position: relative; overflow: visible; }
.ps-hero__deko { position: absolute; pointer-events: none; z-index: 0; }
.ps-hero__deko--top { top: -20px; right: 60px; width: 260px; }
.ps-hero__deko--bottom { bottom: -60px; left: 0; width: 72%; }
.ps-hero__inner { display: flex; align-items: center; gap: 48px; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.ps-hero__body { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.ps-hero__eyebrow { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 14px; color: #000; }
.ps-hero__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: clamp(44px, 5.5vw, 72px); line-height: 1.05; color: var(--fs-yellow); margin: 0; }
.ps-hero__list { list-style: disc; padding-left: 1.2em; font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #333; margin: 8px 0 0; }
.ps-hero__cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 15px; color: #000; text-decoration: none; border: none; border-radius: 0; padding: 12px 24px; background: var(--fs-yellow); margin-top: 8px; align-self: flex-start; white-space: nowrap; }
.ps-hero__cta:hover { opacity: .85; }
.ps-hero__cta img { width: 28px; height: auto; }
.ps-hero__image-wrap { flex: 0 0 auto; }
.ps-hero__image { width: 440px; max-width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--fs-radius-card); box-shadow: var(--fs-shadow-offset) var(--fs-yellow); display: block; }
@media (max-width: 767px) {
  .ps-hero { padding: 40px 0 60px; }
  .ps-hero__deko { display: none; }
  .ps-hero__inner { flex-direction: column; gap: 24px; }
  .ps-hero__eyebrow { font-size: 14px; }
  .ps-hero__image { width: 280px; }
}

/* Pflichtschulen Benefits-Band (.ps-benefits) — Parallax-BG + 3 Karten */
.ps-benefits { position: relative; margin: 0; padding: 0; }
.ps-benefits__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; z-index: 0; }
.ps-benefits__inner { position: relative; z-index: 1; max-width: var(--container-max); margin: 0 auto; padding: 80px 24px 120px; }
.ps-benefits__title { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 1.5em; line-height: 1.15; font-style: italic; color: #fff; text-align: center; margin: 0 0 48px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.ps-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ps-benefits__card { background: #fff; border: 1.5px solid #000; border-radius: var(--fs-radius-card); padding: 40px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ps-benefits__icon { display: inline-flex; align-items: center; justify-content: center; color: #000; }
.ps-benefits__card-title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 18px; margin: 0; }
.ps-benefits__card-text { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: #333; margin: 0; }
@media (max-width: 1024px) {
  .ps-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .ps-benefits__inner { padding: 60px 24px 80px; }
  .ps-benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .ps-benefits__title { font-size: 20px; }
}

/* Schulbuchaktion (.sba) — fullwidth, 2-Spalten: links Text+Logos, rechts Check/Cross-Tabelle */
.sba { margin: var(--gap-eng) 0; padding: 80px 0; background: var(--fs-bg-light); }
.sba__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.sba__header { text-align: left; }
.sba__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: 2em; margin: 0 0 16px; }
.sba__text { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #333; margin: 0 0 32px; }
.sba__logos { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.sba__logos img { height: 80px; width: auto; }
.sba__table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: 15px; }
.sba__table thead th { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 16px; letter-spacing: .02em; color: #000; text-align: center; padding: 0 24px 16px; }
.sba__table thead th:first-child { text-align: left; }
.sba__table tbody td { padding: 18px 24px; border-bottom: 1px solid rgba(0,0,0,.08); vertical-align: middle; }
.sba__table tbody tr:last-child td { border-bottom: none; }
.sba__table tbody tr { transition: background .15s ease; }
.sba__table tbody tr:hover { background: rgba(0,0,0,.04); }
.sba__product-name { font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 15px; }
.sba__bnr { display: block; font-family: var(--font-body); font-size: 13px; color: #777; font-weight: 400; margin-top: 2px; font-style: italic; }
.sba__check, .sba__cross { text-align: center; width: 80px; }
.sba__check svg { width: 32px; height: 32px; color: #22c55e; }
.sba__cross svg { width: 28px; height: 28px; color: #ef4444; }
@media (max-width: 767px) {
  .sba { padding: 48px 0; }
  .sba__inner { grid-template-columns: 1fr; gap: 32px; }
  .sba__logos { flex-direction: row; gap: 16px; }
  .sba__logos img { height: 40px; }
  .sba__table { font-size: 14px; }
  .sba__table thead th { font-size: 13px; padding: 0 12px 12px; }
  .sba__table tbody td { padding: 14px 12px; }
  .sba__check, .sba__cross { width: 56px; }
  .sba__check svg { width: 26px; height: 26px; }
  .sba__cross svg { width: 22px; height: 22px; }
}

/* Hero (.hero) */
.hero { position: relative; max-width: var(--container-max); margin: 80px auto 150px; overflow: visible; }
.hero__card { position: relative; overflow: visible; display: flex; flex-direction: row; align-items: center; gap: 60px; background: var(--fs-bg-light); border-radius: var(--fs-radius-card); padding: 50px; }
.hero__watermark { position: absolute; top: 50%; right: 5%; width: 240px; max-width: 30%; opacity: .08; pointer-events: none; z-index: 0; transform: translateY(-50%); }
.hero__content { position: relative; z-index: 1; flex: 0 0 53%; }
.hero__eyebrow { display: block; font-family: var(--font-heading); font-weight: var(--weight-semibold); font-size: 14px; color: #000; margin-bottom: .4em; }
.hero__title { font-family: var(--font-heading); font-weight: var(--weight-bold); font-size: clamp(44px, 5.5vw, 72px); line-height: 1.05; color: var(--fs-level-1); margin: 0 0 .35em; letter-spacing: -.02em; }
.hero__text { font-family: var(--font-body); font-size: 16px; line-height: 24px; color: #000; margin: 0 0 1.2em; max-width: 480px; }
.hero__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.hero__list li { display: flex; align-items: baseline; gap: 12px; font-family: var(--font-body); font-size: 16px; line-height: 24px; color: #000; }
.hero__list img { width: 18px; flex: 0 0 auto; align-self: flex-start; margin-top: .3em; }
.hero__cover-wrap { flex: 1; align-self: stretch; overflow: hidden; border-radius: var(--fs-radius-card); }
.hero__cover-wrap .car { height: 100% !important; box-shadow: none; }
.hero__cover-wrap .car__track { border-radius: 0; }
.hero__cover { position: absolute; z-index: 2; right: 30px; bottom: 0; width: 54%; max-width: 520px; height: auto; transform: translateY(28%); animation: coverSlide .8s .2s var(--ease) both; filter: drop-shadow(0 16px 36px rgba(0,0,0,.15)); }
@keyframes coverSlide {
  from { opacity: 0; transform: translateY(calc(28% + 30px)); }
  to { opacity: 1; transform: translateY(28%); }
}
@media (max-width: 767px) {
  .hero { margin-bottom: 80px; }
  .hero__card { flex-direction: column; align-items: stretch; gap: 24px; padding: 24px; padding-bottom: 0; }
  .hero__eyebrow { font-size: 14px; }
  .hero__text { max-width: none; }
  .hero__cover-wrap { flex: 0 0 auto; height: 0; }
  .hero__cover { position: static; display: block; margin: -40px auto 0; transform: none; width: 70%; max-width: 260px; animation: none; }
  .hero__watermark { width: 180px; }
}

/* ── Mobile Drawer Navigation ─────────────────────────────────── */

/* Burger Button — nur auf Mobilgeräten sichtbar */
.mobil-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1024px) {
  .mobil-btn { display: flex; order: 1; }
  .kopf .logo { margin-top: 0; order: 2; }
  .kopf .logo img { width: 110px; height: auto; }
  .kopf--scrolled .logo .logo__flieger { width: 36px; height: 36px; }
  /* style.css blendet .band auf ≤1024px aus — hier wieder einblenden */
  .band[data-astro-cid-3ef6ksr2] { display: block; }
}

/* Burger Animationszustand (offen) */
.mobil-btn[aria-expanded="true"] .burger[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2]:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.mobil-btn[aria-expanded="true"] .burger[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2]:nth-child(2) { opacity: 0; }
.mobil-btn[aria-expanded="true"] .burger[data-astro-cid-3ef6ksr2] i[data-astro-cid-3ef6ksr2]:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Backdrop */
.mobil-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobil-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer Panel */
.mobil-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #fff;
  z-index: 200;
  transform: translateX(-105%);
  transition: transform .35s var(--ease, cubic-bezier(.22,.9,.32,1));
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 6px 0 40px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
}
.mobil-drawer.is-open {
  transform: translateX(0);
}

/* Drawer Kopf */
.mobil-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1.5px solid #E5E3DD;
  flex-shrink: 0;
}
.mobil-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #000;
  line-height: 0;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
}
.mobil-drawer__close:hover { background: #f0eeea; }

/* Nav-Links im Drawer */
.mobil-drawer nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 4px;
  flex: 1;
}
.mobil-drawer nav > a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .15s ease;
}
.mobil-drawer nav > a:hover { background: #F6F5F2; }

/* Gruppen */
.mobil-drawer__gruppe {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1.5px solid #E5E3DD;
}
.mobil-drawer__titel {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(0, 0, 0, .4);
  margin: 0 0 4px 10px;
}
.mobil-drawer__gruppe a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 10px;
  transition: background .15s ease;
}
.mobil-drawer__gruppe a:hover { background: #F6F5F2; }

@media (prefers-reduced-motion: reduce) {
  .mobil-drawer { transition: none; }
  .mobil-backdrop { transition: none; }
}

/* ── .pf-list — Pfeil-Aufzählung ────────────────────────────────────── */
/* Vertikale Liste mit pfeil-button.svg als Bullet + Titel + Text        */
.pf-list { display: flex; flex-direction: column; gap: 32px; }
.pf-list__item { display: flex; gap: 16px; align-items: flex-start; }
.pf-list__arrow { flex-shrink: 0; margin-top: 6px; }
.pf-list__title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; line-height: 1.2; margin: 0 0 8px; color: #000; }
.pf-list__text { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #333; margin: 0; max-width: 65ch; }

/* ── .photo-card — Foto-Banner mit überlappender Info-Karte ─────────── */
/* Vollbreites Foto, darüber rechts eine weiße Karte mit Titel/Text/CTA */
/* Karte ragt unten aus dem Foto heraus (bottom: -28px)                  */
/* Einsatz: Personenprofile, Video-Call-CTAs, Produkt-Highlights         */
.photo-card { position: relative; padding-bottom: 28px; }
.photo-card__img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: 16px; }
.photo-card__card { position: absolute; right: 24px; top: 48px; bottom: -28px; width: 46%; background: #fff; border-radius: 16px; border: 1.5px solid #E5E3DD; padding: 40px; display: flex; flex-direction: column; justify-content: center; box-shadow: 6px 6px 0 0 #000; }
.photo-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.5em; line-height: 1.1; margin: 0 0 16px; color: #000; }
.photo-card__text { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: #333; margin: 0 0 28px; max-width: 65ch; }
.photo-card__cta { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border: 1.5px solid var(--fs-yellow); border-radius: 14px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: #000; text-decoration: none; background: transparent; transition: background .2s; align-self: flex-start; }
.photo-card__cta:hover { background: var(--fs-yellow); }
.photo-card--reverse .photo-card__card { right: auto; left: 24px; }
@media (max-width: 767px) {
  .photo-card { padding-bottom: 0; }
  .photo-card__img { height: 260px; }
  .photo-card__card { position: static; width: auto; box-shadow: 6px 6px 0 0 #000; margin-top: 16px; top: auto; right: auto; bottom: auto; left: auto; }
  .photo-card__title { font-size: 20px; }
}

/* ── .legal — Rechtliche Seiten (Impressum, Datenschutz, Nutzungsbedingungen) */
/* Einfaches, gut lesbares Layout für reine Rechtstextseiten                   */
.legal { max-width: 780px; margin: 80px auto 160px; padding: 0 24px; }
.legal__eyebrow { font-family: var(--font-body); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(0,0,0,.45); margin: 0 0 20px; }
.legal h1 { font-family: var(--font-heading); font-weight: 800; font-size: 2.2em; line-height: 1.1; color: #000; margin: 0 0 12px; letter-spacing: -.02em; }
.legal__version { font-family: var(--font-body); font-size: 14px; color: rgba(0,0,0,.5); margin: 0 0 40px; }
.legal h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.3em; color: #000; margin: 40px 0 12px; }
.legal h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.05em; color: #000; margin: 32px 0 10px; }
.legal p { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #2c2c2c; margin: 0 0 16px; }
.legal ul, .legal ol { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #2c2c2c; margin: 0 0 16px; padding-left: 28px; }
.legal li { margin-bottom: 6px; }
.legal ol > li > ol { margin-top: 6px; list-style-type: lower-alpha; }
.legal a { color: #000; text-decoration: underline; }
.legal a:hover { opacity: .7; }
.legal__pdf-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: #000; text-decoration: none; border: 1.5px solid #E5E3DD; border-radius: 14px; padding: 10px 20px; margin: 24px 0 0; box-shadow: 6px 6px 0 #E5E3DD; transition: transform .18s; }
.legal__pdf-link:hover { transform: translateY(-3px); }
.legal__related { margin-top: 48px; padding-top: 32px; border-top: 1.5px solid #E5E3DD; }
.legal__related p { font-size: 14px; color: rgba(0,0,0,.5); margin: 0 0 12px; }
.legal__related a { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: #000; text-decoration: none; border-bottom: 1.5px solid #E5E3DD; padding-bottom: 1px; }
.legal__related a:hover { border-bottom-color: #000; }
@media (max-width: 767px) {
  .legal { margin: 56px auto 100px; }
  .legal h1 { font-size: 1.8em; }
}
