/* LernPuls – eigene Seite, ohne fremden Ballast.
   Eine Schrift, eine Farbwelt, ein Knopf. Alles, was fest sein kann, steht hier
   und greift ab dem ersten Bildaufbau. */

/* ---------- Schrift ---------- */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/schrift/plus-jakarta-sans-regular.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/schrift/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/schrift/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/schrift/plus-jakarta-sans-800.woff2") format("woff2");
  font-weight: 800; font-display: swap;
}

/* ---------- Grundwerte ---------- */

:root {
  --orange: #ff6816;
  --orange-hell: #ff9a4d;
  --tinte: #2f2b29;
  --grau: #6b7280;
  --linie: rgba(0, 0, 0, .08);
  --sand: #f0eeea;
  --dunkel: #1a1e25;
  --schrift: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --breite: 1180px;
  --weich: cubic-bezier(.32, .72, 0, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--schrift);
  font-size: 20px;
  line-height: 1.6;
  color: var(--tinte);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
}

h1 { font-size: clamp(38px, 5vw, 64px); }
h2 { font-size: clamp(30px, 3.6vw, 48px); }
h3 { font-size: clamp(18px, 1.6vw, 21px); font-weight: 700; letter-spacing: -.02em; }

p { margin: 0 0 16px; }

.innen { max-width: var(--breite); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(60px, 7vw, 104px) 0; }
section.sand { background: var(--sand); }
section.hell { background: #fbfbfd; }

.mitte { text-align: center; }
.mitte p.unter { max-width: 880px; margin: 0 auto; }

.auge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 104, 22, .28);
  border-radius: 999px;
  background: rgba(255, 104, 22, .07);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.unter { color: var(--tinte); opacity: .92; font-size: clamp(16px, 1.4vw, 20px); }

mark {
  background: none;
  color: inherit;
  box-shadow: inset 0 -.14em 0 rgba(255, 104, 22, .85);
}

/* ---------- Knöpfe ---------- */

.knopf {
  display: inline-block;
  padding: 15px 28px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(100deg, var(--orange), var(--orange-hell));
  color: #fff;
  font: 700 16px/1.2 var(--schrift);
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(255, 104, 22, .32);
  transition: transform .25s var(--weich), box-shadow .3s ease;
}

.knopf:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255, 104, 22, .44); }
.knopf:active { transform: translateY(0) scale(.985); }

.knopf.stumm {
  background: #fff;
  color: var(--tinte);
  border: 1px solid var(--linie);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.knopf.stumm:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, .12); }

.knopf.hell {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  box-shadow: none;
}
.knopf.hell:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .55); }

/* ---------- Kopfbereich mit Glas-Leiste ---------- */

.kopf {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(16px, 3vw, 40px);
}

.kopf .marke { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.kopf .marke img { height: 30px; width: auto; }

.glasnav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 6px 6px 8px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  box-shadow: 0 6px 20px rgba(18, 20, 26, .1), inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.glasnav:hover {
  background: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 10px 30px rgba(18, 20, 26, .14), inset 0 1px 0 rgba(255, 255, 255, .7);
}

.glasnav a {
  position: relative;
  z-index: 1;
  padding: 9px 15px;
  border-radius: 999px;
  color: #12141a;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  opacity: .78;
  transition: opacity .25s ease;
}

.glasnav a:hover, .glasnav a.aktiv { opacity: 1; }
.glasnav a.aktiv { font-weight: 700; }
.glasnav a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.glasnav .marke-pille {
  position: absolute;
  top: 6px; bottom: 6px; left: 8px;
  z-index: 0;
  width: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(18, 20, 26, .14);
  opacity: 0;
  transition: transform .42s var(--weich), width .42s var(--weich), opacity .3s ease;
}

.glasnav .cta {
  margin-left: 6px;
  padding: 9px 17px;
  background: linear-gradient(100deg, var(--orange), var(--orange-hell));
  color: #fff;
  font-weight: 700;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(255, 104, 22, .26);
  transition: transform .25s ease, box-shadow .3s ease;
}
.glasnav .cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255, 104, 22, .4); }

.burger { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px; background: rgba(255,255,255,.1); cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--orange); border-radius: 2px; }

@media (max-width: 1240px) {
  .glasnav { left: auto; right: 20px; transform: none; max-width: calc(100vw - 250px); }
  .glasnav a { padding: 8px 11px; font-size: 12.5px; }
  .glasnav .cta { padding: 8px 14px; font-size: 12.5px; }
}

@media (max-width: 940px) {
  .glasnav a:not(.cta), .glasnav .marke-pille { display: none; }
  .glasnav { right: 74px; padding: 5px; }
  .burger { display: block; position: absolute; right: 16px; top: 14px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(780px, 96vh);
  padding: 0;
  background: #3b4652;
  overflow: hidden;
  isolation: isolate;
}

/* Das Foto liegt hinter dem ganzen Bereich, dunkel abgetönt – wie im Original */
.hero .bild { position: absolute; inset: 0; z-index: -1; }
.hero .bild img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 20%; }
.hero .bild::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(38, 46, 54, .92) 0%, rgba(38, 46, 54, .72) 45%, rgba(38, 46, 54, .25) 100%);
}

.hero .text { position: relative; max-width: var(--breite); margin: 0 auto;
  padding: 150px 24px 90px; }
.hero .text > * { max-width: 760px; }
.hero h1 { color: #f09170; }
.hero h1 mark { color: #f09170; box-shadow: inset 0 -.1em 0 rgba(240, 145, 112, .9); }
.hero .unter { color: #f09170; opacity: 1; font-size: 18px; margin-bottom: 34px; }

.hero .sterne { margin-top: 40px; font-size: 16px; }
.hero .sterne .zeile1 { display: block; margin-top: 8px; color: var(--orange-hell); font-weight: 700; }
.hero .sterne .zeile2 { display: block; color: #ffd9c4; }
.hero .sterne b { color: #fff; }
.sternreihe { color: #ffb020; letter-spacing: 3px; font-size: 18px; }

.gknopf {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 12px 20px; border-radius: 10px;
  background: #fff; color: var(--tinte); text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  transition: transform .25s var(--weich), box-shadow .3s ease;
}
.gknopf:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0, 0, 0, .3); }
.gknopf span { display: flex; flex-direction: column; line-height: 1.3; }
.gknopf b { font-size: 15px; }
.gknopf small { color: var(--grau); font-size: 12.5px; }
.gknopf svg { width: 26px; height: 26px; flex: 0 0 auto; }

@media (max-width: 900px) {
  .hero .text { padding: 130px 24px 60px; }
}

/* ---------- Fächer-Kacheln ---------- */

.kacheln {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 44px;
}

.kachel {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  aspect-ratio: 2 / 1;
  transition: transform .42s var(--weich), filter .42s ease;
}

.kachel img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--weich); }
.kachel:hover { transform: translateY(-10px) scale(1.02); filter: drop-shadow(0 22px 38px rgba(0, 0, 0, .18)); }
.kachel:hover img { transform: scale(1.07); }

@media (hover: none) { .kachel:hover { transform: none; filter: none; } .kachel:hover img { transform: none; } }
@media (max-width: 900px) { .kacheln { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kacheln { grid-template-columns: 1fr; } }

/* ---------- Leistungen mit Zeichen ---------- */

.zeichenraster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 3vw, 46px);
  margin-top: 48px;
}

.zeichenraster .punkt { text-align: center; }

.zeichen {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--orange), var(--orange-hell));
  box-shadow: 0 12px 28px rgba(255, 104, 22, .3);
  transition: transform .42s var(--weich), box-shadow .42s ease;
}

.zeichen svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.zeichenraster .punkt:hover .zeichen { transform: translateY(-5px) scale(1.05); box-shadow: 0 18px 38px rgba(255, 104, 22, .4); }
.zeichenraster p { color: var(--tinte); opacity: .85; font-size: 17px; }

@media (max-width: 900px) { .zeichenraster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zeichenraster { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */

.teamkopf { display: flex; align-items: baseline; gap: 10px; margin: 34px 0 14px; }
.teamzahl { padding: 5px 13px; border-radius: 999px; background: rgba(255, 104, 22, .1);
  color: var(--orange); font-size: 14px; font-weight: 800; }
.teamhinweis { color: var(--grau); font-size: 13.5px; }

.teamrahmen { position: relative; }

.teamreihe {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.teamreihe::-webkit-scrollbar { display: none; }

.teamreihe.offen { flex-wrap: wrap; overflow: visible; }
.teamreihe.offen .person { flex: 0 0 calc(25% - 20px); }

.person {
  flex: 0 0 clamp(210px, 21vw, 260px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.person img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; flex: 0 0 auto; }
.person .name { margin: 16px 0 2px; font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.person .faecher { color: var(--grau); font-size: 15.5px; }
.person .st { margin: 10px 0 16px; font-size: 15px; letter-spacing: 2px; }
.person .knopf { margin-top: auto; align-self: flex-start; padding: 12px 26px; font-size: 15px; }

.pfeil {
  position: absolute;
  top: 40%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-top: -24px;
  border: 1px solid rgba(255, 104, 22, .35);
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255, 104, 22, .26), rgba(255, 154, 77, .14));
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 8px 26px rgba(255, 104, 22, .22), inset 0 1px 0 rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .3s ease;
}
.pfeil:hover { transform: scale(1.09); box-shadow: 0 12px 32px rgba(255, 104, 22, .32); }
.pfeil.links { left: -8px; }
.pfeil.rechts { right: -8px; }
.pfeil[hidden] { display: none; }
.pfeil svg { width: 19px; height: 19px; stroke: var(--orange); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.alle {
  display: block;
  margin: 26px auto 0;
  padding: 12px 26px;
  border: 1px solid rgba(255, 104, 22, .32);
  border-radius: 999px;
  background: rgba(255, 104, 22, .07);
  color: var(--orange);
  font: 700 15px var(--schrift);
  cursor: pointer;
  transition: background-color .25s ease, transform .25s ease, box-shadow .3s ease;
}
.alle:hover { background: rgba(255, 104, 22, .13); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255, 104, 22, .18); }

@media (max-width: 900px) { .teamreihe.offen .person { flex: 0 0 calc(50% - 13px); } }

/* ---------- Kennzahlen ---------- */

.zahlen { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); margin-top: 44px; }

.zahl {
  padding: clamp(24px, 2.6vw, 38px) 20px;
  border: 1px solid rgba(255, 104, 22, .16);
  border-radius: 24px;
  background: linear-gradient(168deg, rgba(255, 255, 255, .96), rgba(255, 247, 240, .9));
  text-align: center;
  transition: transform .42s var(--weich), box-shadow .42s ease;
}
.zahl:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(255, 104, 22, .16); }

.zahl b {
  display: block;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  background: linear-gradient(120deg, var(--orange), var(--orange-hell));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.zahl span { color: var(--grau); font-size: 15px; }

@media (max-width: 900px) { .zahlen { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Video ---------- */

.videoreihe { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.videobox { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18); cursor: pointer; }
.videobox img { width: 100%; height: 100%; object-fit: cover; }
.videobox iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.abspielen {
  position: absolute; inset: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer;
}
.abspielen i {
  display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), var(--orange-hell));
  box-shadow: 0 12px 34px rgba(255, 104, 22, .5);
  transition: transform .3s var(--weich);
}
.abspielen:hover i { transform: scale(1.09); }
.abspielen svg { width: 26px; height: 26px; margin-left: 4px; fill: #fff; }

@media (max-width: 900px) { .videoreihe { grid-template-columns: 1fr; } }

/* ---------- Vergleich ---------- */

.vergleich { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 30px); margin-top: 44px; }
.spalte { padding: clamp(26px, 3vw, 40px); border-radius: 26px; border: 1px solid var(--linie); background: #fff; }
.spalte.wir { border-color: transparent;
  background: linear-gradient(170deg, #fff8f2, #fffdfb 62%) padding-box,
              linear-gradient(140deg, var(--orange), var(--orange-hell)) border-box;
  border: 2px solid transparent; box-shadow: 0 22px 58px rgba(255, 104, 22, .16); }
.spalte h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; }
.spalte ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.spalte li { position: relative; padding-left: 30px; font-size: 15.5px; }
.spalte li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: rgba(0, 0, 0, .07) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.spalte.wir li::before {
  background: rgba(255, 104, 22, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6816' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
@media (max-width: 800px) { .vergleich { grid-template-columns: 1fr; } }

/* ---------- Ablauf ---------- */

.schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); margin-top: 48px; }
.schritt { position: relative; padding: 30px 26px; border: 1px solid var(--linie); border-radius: 24px; background: #fff;
  transition: transform .42s var(--weich), box-shadow .42s ease; }
.schritt:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0, 0, 0, .1); }
.schritt .nr {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 16px; border-radius: 14px;
  background: linear-gradient(150deg, var(--orange), var(--orange-hell)); color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: 0 8px 20px rgba(255, 104, 22, .3);
}
.schritt p { color: var(--tinte); opacity: .82; font-size: 16.5px; margin: 0; }
@media (max-width: 800px) { .schritte { grid-template-columns: 1fr; } }

/* ---------- Häufige Fragen ---------- */

.fragen { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.frage { border: 1px solid var(--linie); border-radius: 20px; background: #fff; overflow: hidden; }
.frage summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-size: 19px; font-weight: 650; letter-spacing: -.015em; cursor: pointer; list-style: none;
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: ""; flex: 0 0 auto; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312141a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--weich);
}
.frage[open] summary::after { transform: rotate(180deg); }
.frage .antwort { padding: 0 24px 22px; color: var(--grau); font-size: 15.5px; }
@media (max-width: 800px) { .fragen { grid-template-columns: 1fr; } }

/* ---------- Mitschriften ---------- */

.mitschriften { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 34px); margin-top: 44px; }
.mitschrift img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; border-radius: 20px; border: 1px solid var(--linie); background: #fff; }
.mitschrift h3 { margin: 18px 0 6px; }
.mitschrift p { color: var(--grau); font-size: 15.5px; }
@media (max-width: 700px) { .mitschriften { grid-template-columns: 1fr; } }

/* ---------- Fußbereich ---------- */

.fuss { background: #0e1014; color: #fff; padding: clamp(50px, 6vw, 80px) 0 40px; }
.fussraster { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.fuss .marke img { height: 34px; }
.fuss .klein { color: rgba(255, 255, 255, .5); font-size: 14px; margin-top: 14px; }
.fuss h4 { margin: 0 0 16px; font-size: 16px; font-weight: 700; position: relative; display: inline-block; }
.fuss h4::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; background: var(--orange); border-radius: 2px; }
.fuss ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.fuss a { position: relative; color: #fff; text-decoration: none; font-size: 15px; }
.fuss a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; border-radius: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left center;
  transition: transform .42s var(--weich);
}
.fuss a:hover::after, .fuss a:focus-visible::after { transform: scaleX(1); }
.fuss .sozial { display: flex; gap: 16px; margin-top: 20px; }
.fuss .sozial a::after { content: none; }
.fuss .sozial svg { width: 24px; height: 24px; fill: #fff; opacity: .85; transition: opacity .2s ease; }
.fuss .sozial a:hover svg { opacity: 1; }
.fuss .chef { display: flex; align-items: center; gap: 14px; }
.fuss .chef img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.fuss .chef b { display: block; font-size: 15px; }
.fuss .chef span { color: rgba(255, 255, 255, .5); font-size: 14px; }
@media (max-width: 900px) { .fussraster { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .fussraster { grid-template-columns: 1fr; } }

/* ---------- Schwebender WhatsApp-Knopf ---------- */

.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 800;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 999px; background: #25d366; color: #fff;
  font: 700 15px var(--schrift); text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  transition: transform .25s var(--weich), box-shadow .3s ease;
}
.wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 211, 102, .55); }
.wa svg { width: 22px; height: 22px; fill: #fff; }

/* ---------- Einblenden beim Scrollen ---------- */

.auf { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--weich), transform .7s var(--weich); }
.auf.da { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .auf { opacity: 1; transform: none; transition: none; } }

/* ---------- Unterricht & Preise ---------- */

.preise { position: relative; overflow: hidden; background: #fbfbfd; isolation: isolate; }
.preise::before {
  content: ""; position: absolute; inset: -30% 20% auto; height: 620px; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 104, 22, .16), transparent 68%);
}

.schalter {
  position: relative; display: flex; width: fit-content; margin: 34px auto 8px; padding: 5px;
  border: 1px solid var(--linie); border-radius: 999px; background: #ececed;
}
.schalter button {
  position: relative; z-index: 2; padding: 12px 26px; border: 0; border-radius: 999px; background: transparent;
  color: var(--grau); font: 700 15px var(--schrift); cursor: pointer; white-space: nowrap;
  transition: color .3s ease;
}
.schalter button[aria-selected="true"] { color: var(--tinte); }
.schalter .pille {
  position: absolute; top: 5px; bottom: 5px; z-index: 1; border-radius: 999px; background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: transform .42s var(--weich), width .42s var(--weich);
}

.preishinweis { margin: 0 0 40px; text-align: center; color: var(--grau); font-size: 14px; min-height: 20px; }

.preiskarten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.preiskarten[hidden] { display: none !important; }

.preiskarte {
  position: relative; display: flex; flex-direction: column; padding: 32px 28px 30px;
  border: 1px solid var(--linie); border-radius: 26px; background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  transition: transform .45s var(--weich), box-shadow .45s ease;
}
.preiskarte:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, .12); }

.preiskarte.top {
  border: 2px solid transparent;
  background: linear-gradient(170deg, #fff8f2, #fffdfb 62%) padding-box,
              linear-gradient(140deg, var(--orange), var(--orange-hell)) border-box;
  box-shadow: 0 22px 58px rgba(255, 104, 22, .18);
  transform: scale(1.035); z-index: 2;
}
.preiskarte.top:hover { transform: scale(1.035) translateY(-6px); box-shadow: 0 32px 78px rgba(255, 104, 22, .26); }

.fahne {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px;
  background: linear-gradient(100deg, var(--orange), var(--orange-hell));
  color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap; box-shadow: 0 6px 18px rgba(255, 104, 22, .4);
}

.dauer { margin-bottom: 20px; font-size: 15px; font-weight: 700; color: var(--grau); }
.preiskarte.top .dauer { color: var(--orange); }

.preiszeile { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.preiszahl { font-size: clamp(46px, 4.6vw, 62px); font-weight: 800; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.preiskarte.top .preiszahl {
  background: linear-gradient(100deg, var(--orange), var(--orange-hell));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.euro { font-size: 26px; font-weight: 700; }
.preiskarte.top .euro { color: var(--orange); }
.proschueler { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--grau); }

.sparen {
  display: inline-block; margin-top: 12px; padding: 5px 12px; border-radius: 999px;
  background: rgba(16, 160, 90, .12); color: #0f9d58; font-size: 13px; font-weight: 700;
}

.preistext { margin: 18px 0 20px; color: var(--grau); font-size: 15px; line-height: 1.55; }

.punkte { margin: 0 0 26px; padding: 0; list-style: none; display: grid; gap: 11px; }
.punkte li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.45; }
.punkte li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255, 104, 22, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6816' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.preiskarte .knopf { margin-top: auto; display: block; text-align: center; }

/* In jedem Paket enthalten */

.enthalten {
  position: relative; overflow: hidden; margin-top: 46px;
  padding: clamp(30px, 3.4vw, 46px) clamp(24px, 3vw, 44px) clamp(32px, 3.4vw, 46px);
  border: 1px solid rgba(255, 104, 22, .2); border-radius: 30px;
  background: radial-gradient(120% 100% at 50% -30%, rgba(255, 104, 22, .09), transparent 62%),
              linear-gradient(168deg, #fffdfb, #fff7f0);
  box-shadow: 0 26px 70px rgba(255, 104, 22, .1);
}
.enthalten::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px; opacity: .75;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-hell), transparent);
}
.enthalten .kopf2 { text-align: center; margin-bottom: clamp(26px, 3vw, 40px); }
.enthalten h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; margin-bottom: 10px; }
.enthalten .kopf2 p { max-width: 560px; margin: 0 auto; color: var(--grau); font-size: clamp(14px, 1.2vw, 16px); }

.leistungen { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: clamp(18px, 2vw, 30px);
  margin: 0; padding: 0; list-style: none; }
.leistungen li { text-align: center; transition: transform .4s var(--weich); }
.leistungen li:hover { transform: translateY(-5px); }
.leistungen .zeichen { width: 52px; height: 52px; border-radius: 17px; margin-bottom: 14px; box-shadow: 0 10px 24px rgba(255, 104, 22, .3); }
.leistungen .zeichen svg { width: 24px; height: 24px; }
.leistungen b { display: block; margin-bottom: 6px; font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.leistungen span { display: block; color: var(--grau); font-size: 14px; line-height: 1.5; }

.preisfuss { margin-top: 26px; text-align: center; color: var(--grau); font-size: 14px; }

@media (max-width: 1040px) {
  .preiskarten { gap: 14px; }
  .preiskarte { padding: 26px 20px 24px; }
}
@media (max-width: 700px) {
  .preise .innen { padding: 0; }
  .preise .mitte, .schalter, .preishinweis, .enthalten, .preisfuss { margin-left: 18px; margin-right: 18px; }
  .preiskarten { display: flex; gap: 14px; padding: 14px 18px 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .preiskarten::-webkit-scrollbar { display: none; }
  .preiskarte { flex: 0 0 min(78vw, 330px); scroll-snap-align: center; }
  .preiskarte.top, .preiskarte.top:hover { transform: none; }
  .leistungen { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Kontakt-Pop-up ---------- */

.overlay {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px;
  background: rgba(10, 12, 16, .62); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.overlay.offen { opacity: 1; pointer-events: auto; }

.dialog {
  position: relative; width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
  padding: clamp(28px, 4vw, 44px); border-radius: 28px; background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .34);
  transform: translateY(16px) scale(.98); transition: transform .35s var(--weich);
}
.overlay.offen .dialog { transform: none; }
.dialog .zu {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: rgba(0, 0, 0, .06); cursor: pointer; font-size: 20px; line-height: 1; color: var(--tinte);
  transition: background-color .2s ease;
}
.dialog .zu:hover { background: rgba(0, 0, 0, .12); }
.dialog .logo { height: 34px; width: auto; margin-bottom: 22px; }
.dialog h2 { font-size: clamp(24px, 2.6vw, 32px); font-style: italic; }
.dialog p { color: var(--grau); font-size: 15.5px; }

.wege { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.weg {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid var(--linie);
  border-radius: 16px; background: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
  box-shadow: 0 2px 6px rgba(18, 20, 26, .05);
  transition: transform .28s var(--weich), box-shadow .32s ease, border-color .28s ease;
}
.weg:hover { transform: translateY(-3px); }
.weg.grün:hover { border-color: rgba(37, 211, 102, .5); box-shadow: 0 12px 30px rgba(37, 211, 102, .28), 0 0 0 3px rgba(37, 211, 102, .1); }
.weg.orange:hover { border-color: rgba(255, 104, 22, .5); box-shadow: 0 12px 30px rgba(255, 104, 22, .26), 0 0 0 3px rgba(255, 104, 22, .1); }
.weg svg { width: 24px; height: 24px; flex: 0 0 auto; }
.weg small { display: block; color: var(--grau); font-weight: 500; }
@media (max-width: 520px) { .wege { grid-template-columns: 1fr; } }

/* ---------- Kontaktformular ---------- */

.formular { background: linear-gradient(160deg, #e8845c, #e0764f); color: #fff; }
.formular h2, .formular .unter { color: #fff; }
.formular .unter { opacity: .88; }

.felder { display: grid; gap: 14px; max-width: 620px; margin: 36px auto 0; }
.felder input, .felder textarea {
  width: 100%; padding: 17px 20px; border: 0; border-radius: 14px; background: #fff;
  font: 400 16px var(--schrift); color: var(--tinte);
}
.felder textarea { min-height: 140px; resize: vertical; }
.felder input::placeholder, .felder textarea::placeholder { color: #9aa0a8; }
.felder input:focus, .felder textarea:focus { outline: 2px solid rgba(255, 255, 255, .8); outline-offset: 2px; }
.zustimmung { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: 14px;
  background: rgba(255, 255, 255, .14); font-size: 15px; }
.zustimmung input { width: 22px; height: 22px; flex: 0 0 auto; accent-color: #fff; }
.zustimmung a { color: #fff; }
.felder .knopf { background: #fff; color: var(--tinte); box-shadow: 0 10px 26px rgba(0, 0, 0, .16); }
.felder .knopf:hover { box-shadow: 0 16px 38px rgba(0, 0, 0, .24); }
.dank { margin-top: 16px; padding: 16px 20px; border-radius: 14px; background: rgba(255, 255, 255, .2);
  font-weight: 700; display: none; }
.dank.zeigen { display: block; }

/* ---------- Lehrkräfte-Seiten ---------- */

.lkheld {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  min-height: min(700px, 88vh);
  background: radial-gradient(90% 120% at 12% 18%, rgba(255, 104, 22, .16), transparent 58%),
              linear-gradient(155deg, #232830 0%, #191d24 55%, #12151b 100%);
  overflow: hidden;
}
.lkheld .text { padding: 140px clamp(24px, 4vw, 64px) 80px; max-width: 660px; margin-left: auto; color: #fff; }
.lkheld .rolle { display: inline-block; margin-bottom: 14px; padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 104, 22, .18); color: var(--orange-hell); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; }
.lkheld h1 { color: #fff; margin-bottom: 16px; }
.lkchips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; }
.lkchip { padding: 7px 14px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px;
  background: rgba(255, 255, 255, .08); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.lknote { padding: 7px 14px; border-radius: 999px; background: rgba(255, 104, 22, .16);
  color: var(--orange-hell); font-size: 13.5px; font-weight: 700; white-space: nowrap; }
.lkknoepfe { display: flex; flex-wrap: wrap; gap: 12px; }
.lkheld .bild { height: 100%; min-height: 420px; }
.lkheld .bild img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
@media (max-width: 900px) {
  .lkheld { grid-template-columns: 1fr; }
  .lkheld .text { padding: 120px 24px 48px; max-width: none; }
  .lkheld .bild { min-height: 340px; }
}

.lkzahlen { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.6vw, 22px); max-width: 720px; margin: 0 auto; }

.lktext { max-width: 780px; margin: 0 auto; }
.lktext p { color: var(--grau); font-size: 16.5px; }


/* ---------- Bewertungs-Baustein in Seitenschrift und Markenfarben ---------- */

[class*="eapps-google-reviews"], [class*="eapps-google-reviews"] *,
[class*="ReviewBackground"], [class*="ReviewBackground"] *,
[class*="ReviewsHeader"], [class*="ReviewsHeader"] *,
[class*="HeaderBackground"], [class*="HeaderBackground"] *,
[class*="ReviewAuthor"], [class*="ReviewAuthor"] *,
[class*="ReviewText"], [class*="ReviewText"] * {
  font-family: var(--schrift) !important;
}

[class*="ReviewBackground__Container"] {
  border-radius: 22px !important;
  border: 1px solid var(--linie) !important;
  background: #fff !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04) !important;
  transition: transform .42s var(--weich), box-shadow .42s ease !important;
}
[class*="ReviewBackground__Container"]:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .1) !important;
}

[class*="ReadMore"], [class*="ReviewText"] a, [class*="Review"] [class*="More"] {
  color: var(--orange) !important; font-weight: 700 !important;
}

[class*="LoadMore"], [class*="eapps"] button[class*="Button"] {
  border-radius: 999px !important;
  background: rgba(255, 104, 22, .08) !important;
  border: 1px solid rgba(255, 104, 22, .3) !important;
  color: var(--orange) !important; font-weight: 700 !important;
}

[class*="ReviewAuthorName"] { font-weight: 700 !important; color: var(--tinte) !important; }
