/* ============================================================
   TEACON: Teaching Economics
   1:1-Nachbau von teacon.ch. Alle Werte direkt auf der Live-Seite
   gemessen (Computed Styles), nicht geschätzt:

   Seitenbreite   980px
   Header         124px hoch, #FCF8F5
   Banner         78px hoch,  #C4C3D2, 30px bold
   Navy           #130D4C
   Creme          #FCF8F5
   Badge "Teilnahme"  #DB9A53
   CTA rot        #DA4F53
   Akzent "NUR BEI TEACON" #E8705F
   Schrift        Avenir LT → Figtree (nächste freie Entsprechung)
   ============================================================ */

:root {
  --navy: #130D4C;
  --navy-light: #322c73;
  --navy-soft: #ece9f6;
  --cream: #FCF8F5;
  --cream-dark: #f0e9e2;
  --lavender: #C4C3D2;          /* Banner / Flächen */
  --lavender-soft: #e4e3ec;
  --lavender-btn: #B4B2C6;      /* "Kurs starten" */
  --tan: #DB9A53;               /* Teilnahme-Badge */
  --red: #DA4F53;               /* CTA "Klicke hier für -30%" */
  --coral: #E8705F;             /* "NUR BEI TEACON" */
  --plan-btn: #4E4B77;          /* "Sofort kaufen" */
  --brown: #9C5F1E;
  --gold: #9C5F1E;
  --gold-dark: #7d4b17;
  --gold-soft: #fdf0e0;
  --peach: #FCCB96;
  --peach-soft: #fde6cd;
  --coral-dark: #c9543f;
  --danger: #b1442e;
  --lilac: #ece9f6;
  --text: #130D4C;
  --text-muted: #5f5b7d;
  --text-faint: #8e8aa6;
  --white: #ffffff;
  --line: rgba(19,13,76,0.14);

  --shadow-sm: 0 2px 10px rgba(19,13,76,0.06);
  --shadow: 0 10px 30px rgba(19,13,76,0.10);
  --shadow-lg: 0 24px 60px rgba(19,13,76,0.16);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 26px;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 20px;
  --sp-6: 24px; --sp-8: 32px; --sp-10: 40px; --sp-12: 48px;
  --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --site-width: 980px;
  --max-width: 980px;
  --max-width-narrow: 720px;
  --font: 'Figtree', 'Avenir Next', Avenir, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.24; letter-spacing: -0.005em; color: var(--navy); margin: 0; }
p { margin: 0 0 var(--sp-4); }

.container { max-width: var(--site-width); margin: 0 auto; padding: 0 var(--sp-5); }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 var(--sp-5); }

/* ---------- Header: 124px, Creme ---------- */
header.site-header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); padding: 0 var(--sp-6) 0 var(--sp-5);
  max-width: 1180px; margin: 0 auto; height: 124px;   /* breiter als der Inhalt → Logo steht weiter links */
}
.brand { display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0; }
.brand .logo-mark { width: 62px; height: 62px; background: transparent; }
.brand-text .name { font-weight: 700; font-size: 2.1rem; letter-spacing: 0.01em; color: var(--navy); line-height: 1; }
.brand-text .tagline { font-size: 0.95rem; color: var(--navy); font-weight: 400; letter-spacing: 0.01em; }

nav.main-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
nav.main-nav a {
  font-size: 1.12rem; font-weight: 500; color: var(--navy);
  padding: var(--sp-3) var(--sp-5);
  position: relative;
  transition: color .18s ease;
  white-space: nowrap;
}
/* Unterstrich wächst beim Hover aus der Mitte */
nav.main-nav a::after {
  content: ""; position: absolute; left: var(--sp-5); right: var(--sp-5); bottom: 4px;
  height: 2px; background: var(--tan);
  transform: scaleX(0); transform-origin: center;
  transition: transform .22s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { transform: scaleX(1); }
/* feine vertikale Trenner zwischen den Menüpunkten (wie im Original) */
nav.main-nav a + a::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 34px; background: var(--line);
}
nav.main-nav a:hover { color: var(--tan); }
nav.main-nav a.active { color: var(--tan); }

.nav-right { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-more { position: relative; }
.nav-more-menu {
  display: none; position: absolute; top: 46px; right: 0;
  background: var(--white); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); border-radius: 4px;
  padding: var(--sp-4) 0; min-width: 250px;
}
.nav-more:hover .nav-more-menu, .nav-more:focus-within .nav-more-menu { display: block; }
.nav-more-menu a { display: block; padding: var(--sp-3) var(--sp-6); font-size: 1rem; color: var(--navy); font-weight: 400; }
.nav-more-menu a:hover { background: var(--cream); }
.nav-more-menu .menu-divider { height: 1px; background: var(--line); margin: var(--sp-3) var(--sp-6); }
.nav-more-menu .menu-label { display: none; }

.nav-cta { background: var(--navy); color: var(--white) !important; padding: 11px 26px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; }
.nav-cta:hover { background: var(--navy-light); }

.account-chip { display: flex; align-items: center; gap: var(--sp-2); padding: 4px; background: transparent; border: none; cursor: pointer; }
.account-chip .avatar-mini { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; overflow: hidden; }
.account-chip .avatar-mini img { width: 100%; height: 100%; object-fit: cover; }
.account-chip .chev { font-size: 0.75rem; color: var(--navy); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

@media (max-width: 1000px) {
  .nav-wrap { height: 90px; }
  .brand .logo-mark { width: 46px; height: 46px; }
  .brand-text .name { font-size: 1.5rem; }
  .brand-text .tagline { font-size: 0.75rem; }
  nav.main-nav { position: fixed; top: 90px; left: 0; right: 0; bottom: 0; background: var(--cream); flex-direction: column; align-items: stretch; padding: var(--sp-6); gap: var(--sp-1); transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 300; }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav a { padding: var(--sp-4); }
  nav.main-nav a + a::before { display: none; }
  .menu-toggle { display: block; order: 3; }
  .nav-more-menu { position: static; display: block; box-shadow: none; border: none; padding: 0 0 0 var(--sp-3); min-width: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  background: var(--navy); color: var(--white);
  padding: 12px 30px; border-radius: 999px; font-weight: 500; font-size: 1rem;
  border: 1px solid var(--navy); cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { background: var(--navy-light); border-color: var(--navy-light); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.outline { background: transparent; border: 1.5px solid var(--white); color: var(--white); }
.btn.outline:hover { background: var(--white); color: var(--navy); }
.btn.navy-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn.navy-outline:hover { background: var(--navy); color: var(--white); }
.btn.gold { background: var(--tan); border-color: var(--tan); color: var(--white); }
.btn.gold:hover { background: var(--brown); border-color: var(--brown); }
.btn.grey { background: var(--cream); color: var(--navy); border-color: var(--cream-dark); }
.btn.grey:hover { background: var(--cream-dark); }
/* roter CTA wie "Klicke hier für -30%" (259x42 im Original) */
.btn.navy { background: var(--red); border-color: var(--red); border-radius: 999px; font-weight: 500; }
.btn.navy:hover { background: #c34449; border-color: #c34449; }
.btn.sm { padding: 10px 20px; font-size: 0.9rem; }
.btn.block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Lavendel-Banner: 78px, #C4C3D2, 30px bold ---------- */
.hero-banner {
  text-align: center;
  font-size: 1.875rem;      /* 30px */
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
  color: var(--navy);
  background: var(--lavender);
  padding: var(--sp-4) var(--sp-6);
  height: 78px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 700px) { .hero-banner { height: auto; min-height: 78px; font-size: 1.3rem; } }

/* ---------- Hero ---------- */
.hero { background: var(--white); padding: var(--sp-16) 0 var(--sp-20); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown); background: var(--peach-soft);
  padding: 6px 16px; border-radius: 999px; margin-bottom: var(--sp-5);
}
/* H1: 26px / 700 / lh 36.4px, exakt wie gemessen */
.hero-grid h1 {
  font-size: 1.625rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 var(--sp-6);
  text-align: center;
}
.hero-grid .lead { color: var(--text-muted); font-size: 1rem; margin-bottom: var(--sp-6); max-width: 460px; text-align: center; }

/* Pills: 290x42, Lavendel 31%, Text 16px/700 */
.pill-list { display: flex; flex-direction: column; gap: var(--sp-4); width: 360px; max-width: 100%; }
.pill {
  border: 1px solid var(--navy);
  border-radius: 999px;
  min-height: 58px;
  padding: var(--sp-3) var(--sp-8);
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
@media (max-width: 900px) { .pill-list { width: 100%; } }
.pill:hover { background: rgba(196,195,210,0.45); }
.pill .num { display: none; }
.pill.primary { background: rgba(196,195,210,0.31); }
.pill:nth-child(3) { background: rgba(196,195,210,0.31); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero-grid .illustration { order: -1; max-width: 400px; margin: 0 auto; }
}

/* ---------- Page header (Unterseiten): Titel 50px uppercase ---------- */
.page-header { padding: var(--sp-20) 0 var(--sp-12); text-align: center; background: var(--white); }
.page-header h1 {
  font-size: 3.125rem;      /* 50px */
  line-height: 1.15;
  color: var(--navy); font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.01em;
  position: relative; display: inline-block; padding-bottom: var(--sp-8);
}
.page-header h1::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 330px; max-width: 70vw; height: 1px; background: var(--navy); opacity: 0.5;
}
.page-header p { max-width: 700px; margin: var(--sp-5) auto 0; color: var(--navy); font-size: 1rem; line-height: 1.6; }
@media (max-width: 700px) { .page-header h1 { font-size: 2.1rem; } }

/* ---------- Sections ---------- */
section { padding: var(--sp-24) 0; background: var(--white); }
.hero { background: var(--white); }
section.tight { padding: var(--sp-16) 0; }
section + section { padding-top: 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-10); }

/* Section-Titel: 30px/700, zentriert, lange feine Linie darunter */
.section-title {
  font-size: 1.875rem;      /* 30px */
  line-height: 1.4;
  color: var(--navy);
  margin: 0 auto var(--sp-16);
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: var(--sp-8);
  display: block;
}
.section-title::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 600px; max-width: 85%; height: 1px; background: var(--navy); opacity: 0.35;
}
.section-title.left { text-align: left; }
.section-title.left::after { left: 0; transform: none; width: 100%; }
.section-sub { text-align: center; color: var(--navy); max-width: 640px; margin: 0 auto; }

.promise-list { list-style: none; padding: 0; margin: var(--sp-6) 0; display: grid; gap: var(--sp-3); }
.promise-list li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.promise-list li::before { content: "✓"; color: var(--brown); font-weight: 700; flex-shrink: 0; }

/* ---------- Leistungsversprechen: 2 Spalten, grosse Outline-Icons ---------- */
.section-rule { border: none; border-top: 1px solid var(--navy); opacity: 0.45; margin: var(--sp-6) 0 var(--sp-10); }
.ic { width: 48px; height: 48px; flex-shrink: 0; object-fit: contain; }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--sp-16); align-items: start; }
@media (max-width: 760px) { .promise-grid { grid-template-columns: 1fr; } }
.promise-col { display: flex; flex-direction: column; gap: var(--sp-10); }
.promise-item { display: flex; align-items: flex-start; gap: var(--sp-5); font-size: 1.05rem; font-weight: 400; color: var(--navy); line-height: 1.5; min-height: 56px; }
.promise-item > div { display: flex; flex-direction: column; gap: 4px; }
.promise-item strong { color: var(--navy); font-weight: 600; }
.promise-item .pi-sub { color: var(--navy); font-size: 0.98rem; line-height: 1.55; }
.promise-item a { text-decoration: underline; color: var(--navy); }

.andre-row {
  display: flex; align-items: center; gap: var(--sp-6);
  margin-top: var(--sp-20);
  padding-top: var(--sp-10);
  border-top: 1px solid var(--line);
}
.andre-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.andre-avatar img { width: 100%; height: 100%; object-fit: cover; }
.andre-row p { margin: 0; color: var(--navy); font-size: 0.95rem; line-height: 1.6; }
.andre-row strong { color: var(--navy); font-weight: 700; }
.andre-row em { font-style: italic; }

/* ---------- 4-Spalten-Feature-Tabelle mit Rahmen ---------- */
.feature-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--navy);
  margin-top: var(--sp-6);
  background: var(--white);
  align-items: stretch;
}
@media (max-width: 900px) { .feature-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-cols { grid-template-columns: 1fr; } }
.feature-col {
  padding: var(--sp-10) var(--sp-6);
  border-right: 1px solid var(--navy);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.feature-col:last-child { border-right: none; }
@media (max-width: 900px) {
  .feature-col:nth-child(2n) { border-right: none; }
  .feature-col:nth-child(-n+2) { border-bottom: 1px solid var(--navy); }
}
@media (max-width: 600px) {
  .feature-col { border-right: none; border-bottom: 1px solid var(--navy); }
  .feature-col:last-child { border-bottom: none; }
}
.fc-head { display: flex; align-items: center; gap: var(--sp-3); justify-content: center; min-height: 46px; }
.fc-head h3 { margin: 0; color: var(--navy); font-size: 1.5rem; font-weight: 400; }
.fc-head .ic { width: 32px; height: 32px; }
.feature-col hr { border: none; border-top: 1px solid var(--navy); opacity: 0.6; margin: 0; }
.feature-col ul { list-style: disc; padding-left: var(--sp-6); margin: 0; display: flex; flex-direction: column; gap: var(--sp-2); color: var(--navy); font-size: 1rem; flex: 1; }
.fc-status { text-align: center; display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-6); align-items: center; }
.fc-status strong { color: var(--navy); font-size: 1.05rem; font-weight: 700; }
.fc-status span { color: var(--navy); font-size: 0.95rem; }
.fc-status a { color: var(--navy); font-size: 1rem; text-decoration: underline; }
/* "NUR BEI TEACON": Rechteck, kein Radius */
.fc-badge {
  display: inline-block; background: var(--coral); color: var(--white) !important;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em;
  padding: 12px 20px; margin-top: var(--sp-3); width: fit-content; border-radius: 0;
}

/* ---------- Kurskarten (Einzelkurse): Bild oben, zentrierter Text ---------- */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-6); margin-top: var(--sp-10); }
.course-card { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-6); text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--sp-2); background: var(--white); }
.course-card h3 { color: var(--navy); margin: 0; }
.course-card .price { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.course-card .alt { font-size: 0.86rem; color: var(--text-muted); }
.course-card .guarantee { font-size: 0.78rem; color: var(--brown); font-style: italic; }

/* Original: 3 Spalten, weisse Karten, Bild volle Breite oben */
.course-grid.rich {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--sp-6);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .course-grid.rich { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .course-grid.rich { grid-template-columns: 1fr; } }
.course-card.rich {
  border: none; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  border-radius: 0; padding: 0; text-align: center; overflow: hidden;
  background: var(--white); box-shadow: none;
  display: flex; flex-direction: column;
}
.course-thumb { overflow: hidden; background: var(--white); position: relative; aspect-ratio: 3 / 2; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.course-body { padding: var(--sp-10) var(--sp-6) var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-5); align-items: center; flex: 1; }
/* "Assessment UZH" wird im Original nicht angezeigt */
.course-tag { display: none; }
/* Kurstitel: 30px / 400 / lh 37px */
.course-card.rich h3 { margin: 0; font-size: 1.875rem; line-height: 1.24; font-weight: 400; color: var(--navy); min-height: 2.5em; display: flex; align-items: center; }
.course-card.rich p { display: none; }
/* "Teilnahme"-Badge: #DB9A53, 12px */
.course-card.rich .course-status {
  background: var(--tan); color: var(--navy);
  font-size: 0.75rem; line-height: 1.4; font-weight: 400;
  padding: 1px 12px; border-radius: 4px; width: fit-content;
}
/* kurze Trennlinie über dem Preis */
.course-price-row {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
  position: relative; padding-top: var(--sp-6); width: 100%;
}
.course-price-row::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46px; height: 1px; background: var(--navy); opacity: 0.35;
}
.course-price-row .price { font-weight: 400; color: var(--navy); font-size: 1.05rem; }
.course-price-row .alt { font-size: 1.05rem; color: var(--navy); font-weight: 400; }
/* "Kurs starten": voller Breite, lavendel, eckig, 16px/700 */
.course-card.rich .btn {
  width: 100%; margin-top: auto; border-radius: 0; padding: 14px 20px;
  font-size: 1rem; font-weight: 700;
  background: var(--lavender-btn); border-color: var(--lavender-btn); color: var(--navy);
}
.course-card.rich .btn:hover { background: var(--lavender); border-color: var(--lavender); transform: none; box-shadow: none; }
.course-card.rich .guarantee { font-size: 0.8rem; color: var(--navy); font-style: normal; margin-top: var(--sp-3); }
.lock-badge { position: absolute; top: var(--sp-3); right: var(--sp-3); background: var(--navy); color: var(--white); font-size: 0.74rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; display: flex; align-items: center; gap: 5px; }

/* ---------- Preispläne: weisse Karten, grosse Zahl, "Sofort kaufen" ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-8); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan-card {
  position: relative; border: 1px solid var(--line); border-radius: 0;
  padding: 0 0 var(--sp-10); box-shadow: none;
  display: flex; flex-direction: column; gap: var(--sp-5);
  background: var(--white); text-align: center; align-items: center;
  overflow: hidden;
}
.plan-thumb { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: var(--white); }
.plan-thumb img { width: 100%; height: 100%; object-fit: cover; }
.plan-card h3 { margin: var(--sp-8) var(--sp-5) 0; color: var(--navy); font-weight: 700; font-size: 1.15rem; min-height: 1.4em; }
.plan-card .price { font-size: 4rem; font-weight: 300; color: var(--navy); line-height: 1; }
.plan-card .price small { font-size: 1.25rem; font-weight: 300; color: var(--navy); display: block; margin-bottom: -6px; }
.plan-card ul { list-style: none; padding: 0 var(--sp-6); margin: 0; font-size: 0.95rem; color: var(--navy); display: flex; flex-direction: column; gap: 2px; line-height: 1.6; min-height: 4.8em; }
.plan-card .validity { font-size: 0.9rem; color: var(--navy); }
.plan-card .guarantee { font-size: 0.85rem; color: var(--navy); font-style: italic; }
.plan-card .btn {
  background: var(--plan-btn); border-color: var(--plan-btn); color: var(--white);
  border-radius: 999px; width: calc(100% - 2 * var(--sp-8)); padding: 14px 20px;
  font-weight: 400; font-size: 1rem; margin-top: var(--sp-2);
}
.plan-card .btn:hover { background: var(--navy); border-color: var(--navy); transform: none; box-shadow: none; }
.plan-card .tag {
  position: absolute; top: 200px; left: 50%; transform: translateX(-50%);
  background: rgba(196,195,210,0.85); color: var(--navy);
  font-size: 0.9rem; font-weight: 400; padding: 6px 16px; border-radius: 0; white-space: nowrap;
}
.plan-card.featured { background: #FAFAFA; }

.guarantee-badge { display: flex; align-items: center; gap: var(--sp-2); justify-content: center; border: 1px solid var(--navy); border-radius: 999px; padding: 10px var(--sp-6); width: fit-content; margin: 0 auto var(--sp-8); font-size: 1rem; font-weight: 400; color: var(--navy); background: var(--white); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: var(--sp-5) 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); cursor: pointer; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.faq-answer { display: none; color: var(--navy); margin-top: var(--sp-4); font-size: 0.98rem; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }
.faq-toggle { transition: transform .2s ease; font-size: 1.4rem; color: var(--tan); flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ---------- Team / Mission ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.stat-strip { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.stat-strip span { background: var(--cream); border-radius: 999px; padding: var(--sp-2) var(--sp-4); font-size: 0.9rem; font-weight: 400; color: var(--navy); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--sp-10); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
input, textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px;
  font-family: inherit; font-size: 1rem; margin-bottom: var(--sp-4); background: var(--white); color: var(--text);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--navy); }
textarea { min-height: 120px; resize: vertical; }
label { font-size: 0.9rem; font-weight: 400; color: var(--navy); display: block; margin-bottom: var(--sp-2); }
.contact-info { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: var(--sp-8); }
.contact-info h3 { margin-top: 0; color: var(--white); }
.contact-info .row { margin-bottom: var(--sp-5); }
.contact-info .row span.label { display: block; font-size: 0.78rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; color: var(--white); }

/* ---------- Events ---------- */
.event-hero { display: grid; grid-template-columns: 260px 1fr; gap: var(--sp-8); align-items: center; background: var(--lavender-soft); border-radius: 0; padding: var(--sp-8); margin-bottom: var(--sp-5); }
.event-hero-illustration { background: var(--white); padding: var(--sp-4); }
@media (max-width: 700px) { .event-hero { grid-template-columns: 1fr; } }
.event-list { display: flex; flex-direction: column; margin-top: var(--sp-8); }
.event-row { display: grid; grid-template-columns: 170px 1fr auto; gap: var(--sp-5); align-items: center; padding: var(--sp-5) 0; border-top: 1px solid var(--line); }
.event-row:last-child { border-bottom: 1px solid var(--line); }
.event-date { font-size: 0.92rem; color: var(--navy); }
.event-date span { opacity: 0.75; }
.event-info h3 { margin: 0 0 4px; color: var(--navy); font-size: 1.15rem; font-weight: 400; }
.event-info p { margin: 0; color: var(--navy); font-size: 0.9rem; opacity: 0.8; }
@media (max-width: 620px) { .event-row { grid-template-columns: 1fr; text-align: left; } }

/* ---------- Footer im TEACON-Stil ---------- */
footer.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.82);
  padding: var(--sp-20) 0 var(--sp-10); margin-top: 0; font-size: 0.95rem;
}
.ft-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.1fr;
  gap: var(--sp-10); padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (max-width: 1000px) { .ft-top { grid-template-columns: 1fr 1fr 1fr; } .ft-map { grid-column: span 3; max-width: 320px; } }
@media (max-width: 640px)  { .ft-top { grid-template-columns: 1fr; } .ft-map { grid-column: auto; } }

.ft-brand { display: flex; flex-direction: column; gap: var(--sp-4); }
.ft-lockup { display: flex; align-items: center; gap: var(--sp-3); }
.ft-mark { width: 48px; height: 48px; filter: brightness(0) invert(1); }
.ft-words { display: flex; flex-direction: column; line-height: 1.1; }
.ft-name { font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.ft-sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.ft-claim { margin: 0; color: rgba(255,255,255,0.68); font-size: 0.92rem; line-height: 1.65; max-width: 280px; }
.ft-guarantee {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 999px;
  padding: 7px 16px; font-size: 0.86rem; color: var(--peach);
}

.ft-col { display: flex; flex-direction: column; }
.ft-col h4 {
  color: #fff; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 var(--sp-4);
}
.ft-col a, .ft-col span {
  color: rgba(255,255,255,0.78); font-size: 0.94rem;
  margin-bottom: var(--sp-3); line-height: 1.5;
}
.ft-col a { transition: color .15s ease; }
.ft-col a:hover { color: var(--peach); }
.ft-cta { color: var(--peach) !important; font-weight: 600; margin-top: var(--sp-1); }

.ft-map a { display: block; border-radius: var(--radius-sm); overflow: hidden; }
.ft-map svg { width: 100%; height: auto; display: block; }

.ft-pay {
  display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap;
  padding: var(--sp-8) 0; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.ft-pay-label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.payment-icons { display: flex; gap: var(--sp-2); align-items: center; flex-wrap: wrap; }
.payment-icons img { height: 28px; width: auto; border-radius: 4px; background: #fff; padding: 2px; }

.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4); padding-top: var(--sp-6);
}
.ft-copy { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.ft-legal { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.ft-legal a { color: rgba(255,255,255,0.6); font-size: 0.86rem; text-decoration: underline; text-underline-offset: 3px; }
.ft-legal a:hover { color: var(--peach); }
.ft-rights { margin: var(--sp-5) 0 0; color: rgba(255,255,255,0.4); font-size: 0.8rem; line-height: 1.6; max-width: 780px; }

/* Notenschnitte (Über uns) */
.results { padding: var(--sp-16) 0; background: var(--cream); }
.rs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
@media (max-width: 760px) { .rs-grid { grid-template-columns: 1fr; } }
.rs-card {
  background: var(--white); border-radius: var(--radius);
  padding: var(--sp-10) var(--sp-6); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
}
.rs-grade { font-size: 3.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.rs-scale { font-size: 0.85rem; color: var(--text-faint); }
.rs-card h3 { margin: var(--sp-3) 0 0; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.rs-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.rs-note { text-align: center; margin: var(--sp-8) auto 0; max-width: 640px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Checkout-Modal ---------- */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(19,13,76,0.55); z-index: 1000; align-items: center; justify-content: center; padding: var(--sp-5); }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius); max-width: 460px; width: 100%; padding: var(--sp-8); max-height: 90vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: var(--sp-5); right: var(--sp-5); background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-muted); }
.modal h3 { color: var(--navy); margin-top: 0; }
.order-summary { background: var(--cream); border-radius: 4px; padding: var(--sp-4); margin: var(--sp-4) 0; font-size: 0.95rem; }
.order-summary .row { display: flex; justify-content: space-between; padding: var(--sp-1) 0; }
.order-summary .total { font-weight: 700; color: var(--navy); border-top: 1px solid var(--line); margin-top: var(--sp-2); padding-top: var(--sp-2); }
.invoice-box { border: 1px dashed var(--tan); border-radius: 4px; padding: var(--sp-4); font-size: 0.9rem; margin-top: var(--sp-4); display: none; background: var(--peach-soft); }
.invoice-box.show { display: block; }
.invoice-box .row { display: flex; justify-content: space-between; padding: 3px 0; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: var(--sp-3); }

/* ============================================================
   Auth
   ============================================================ */
.auth-shell { min-height: calc(100vh - 124px); display: flex; align-items: center; justify-content: center; background: var(--white); padding: var(--sp-16) var(--sp-5); }
.auth-card { background: var(--cream); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--sp-10) var(--sp-8); max-width: 420px; width: 100%; }
.auth-card .logo-row { display: flex; align-items: center; gap: var(--sp-2); justify-content: center; margin-bottom: var(--sp-6); }
.auth-card .logo-row img { width: 40px; height: 40px; }
.auth-card .logo-row span { font-weight: 700; color: var(--navy); font-size: 1.4rem; }
.auth-card h1 { font-size: 1.6rem; color: var(--navy); text-align: center; margin: 0 0 var(--sp-2); font-weight: 700; }
.auth-card .sub { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--sp-8); }
.auth-divider { display: flex; align-items: center; gap: var(--sp-3); margin: var(--sp-6) 0; color: var(--text-faint); font-size: 0.85rem; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-social { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); width: 100%; padding: 12px; border-radius: 4px; border: 1px solid var(--line); background: var(--white); font-weight: 500; font-size: 0.95rem; cursor: pointer; margin-bottom: var(--sp-3); }
.auth-social:hover { background: var(--cream); border-color: var(--navy); }
.auth-foot { text-align: center; font-size: 0.95rem; color: var(--text-muted); margin-top: var(--sp-6); }
.auth-foot a { color: var(--navy); font-weight: 700; }
.auth-note { display: flex; gap: var(--sp-2); align-items: flex-start; background: var(--peach-soft); color: var(--brown); border-radius: 4px; padding: var(--sp-3) var(--sp-4); font-size: 0.88rem; margin-top: var(--sp-6); }

/* ============================================================
   Kontobereich
   ============================================================ */
.account-shell { display: grid; grid-template-columns: 260px 1fr; gap: var(--sp-8); padding: var(--sp-10) 0 var(--sp-20); align-items: start; background: var(--white); }
@media (max-width: 860px) { .account-shell { grid-template-columns: 1fr; } }
.account-sidebar { background: var(--cream); border-radius: 0; padding: var(--sp-6); position: sticky; top: 140px; }
.account-profile { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.account-profile .avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 600; flex-shrink: 0; }
.account-profile .avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-profile .name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.account-profile .email { font-size: 0.85rem; color: var(--text-muted); }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav a { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3); border-radius: 4px; font-size: 0.98rem; font-weight: 400; color: var(--navy); }
.account-nav a:hover { background: var(--white); }
.account-nav a.active { background: var(--navy); color: var(--white); font-weight: 500; }
.account-nav .nav-icon { width: 18px; text-align: center; flex-shrink: 0; }
.account-nav-divider { height: 1px; background: var(--cream-dark); margin: var(--sp-3) 0; }
.account-nav a.danger { color: var(--danger); }
.account-nav a.danger:hover { background: #fbeae8; }

.account-main h1 { font-size: 2rem; color: var(--navy); margin: 0 0 var(--sp-2); font-weight: 400; }
.account-main .lead { color: var(--navy); margin-bottom: var(--sp-8); }
.account-card { background: var(--white); border: 1px solid var(--line); border-radius: 0; padding: var(--sp-6); margin-bottom: var(--sp-5); }
.account-card h3 { margin: 0 0 var(--sp-4); color: var(--navy); font-size: 1.15rem; font-weight: 700; }
.account-card .row-item { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-3) 0; border-bottom: 1px solid var(--cream-dark); gap: var(--sp-4); }
.account-card .row-item:last-child { border-bottom: none; }
.account-card .row-label { font-size: 0.88rem; color: var(--text-faint); }
.account-card .row-value { font-weight: 500; color: var(--navy); font-size: 1rem; }
.empty-state { text-align: center; padding: var(--sp-10) var(--sp-5); color: var(--navy); }
.empty-state .icon { font-size: 2rem; margin-bottom: var(--sp-3); }

.dash-course { display: flex; align-items: center; gap: var(--sp-5); padding: var(--sp-5); border-bottom: 1px solid var(--line); }
.dash-thumb { width: 64px; height: 64px; border-radius: 4px; flex-shrink: 0; overflow: hidden; }
.dash-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dash-info { flex: 1; min-width: 0; }
.dash-info h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.05rem; font-weight: 400; }
.dash-progress-track { height: 6px; border-radius: 999px; background: var(--cream-dark); overflow: hidden; max-width: 260px; }
.dash-progress-fill { height: 100%; background: var(--tan); }
.dash-pct { font-size: 0.82rem; color: var(--text-faint); margin-top: 4px; }
.status-pill { font-size: 0.78rem; font-weight: 400; padding: 3px 12px; border-radius: 4px; background: var(--tan); color: var(--navy); }
.status-pill.paid { background: var(--tan); color: var(--navy); }
.status-pill.pending { background: var(--cream); color: var(--navy); }

/* ---------- Gesperrte Inhalte ---------- */
.locked-wrap { position: relative; }
.locked-blur { filter: blur(6px); pointer-events: none; user-select: none; }
.locked-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-3); background: rgba(252,248,245,0.88); text-align: center; padding: var(--sp-6); }
.locked-overlay .lock-icon { font-size: 1.8rem; }
.locked-overlay h4 { margin: 0; color: var(--navy); font-size: 1.1rem; }
.locked-overlay p { margin: 0; color: var(--navy); font-size: 0.92rem; max-width: 320px; }

/* ---------- Status-Banner ---------- */
.status-banner { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-4) var(--sp-6); border-radius: 4px; font-size: 0.95rem; font-weight: 400; margin-bottom: var(--sp-6); }
.status-banner.success { background: var(--peach-soft); color: var(--brown); }
.status-banner.info { background: var(--navy-soft); color: var(--navy); }
.status-banner.warning { background: var(--peach-soft); color: var(--brown); }

/* Gratis-Vorschau-Link auf den Kurskarten */
.preview-link {
  color: var(--navy); font-size: 0.95rem; text-decoration: underline;
  text-underline-offset: 3px; margin-top: var(--sp-2);
}
.preview-link:hover { color: var(--tan); }

/* ---------- Profil: Avatar-Upload & Bio ---------- */
.avatar-editor { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.avatar-preview {
  width: 92px; height: 92px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; font-weight: 600;
}
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.avatar-actions { display: flex; flex-direction: column; gap: var(--sp-3); align-items: flex-start; }
.avatar-actions .btn { cursor: pointer; }
.avatar-actions .form-note { margin: 0; }
.bio-foot { font-size: 0.85rem; color: var(--text-faint); margin: -8px 0 var(--sp-4); text-align: right; }


/* ============================================================
   André-Banner (eigener Abschnitt mit viel Luft)
   ============================================================ */
.andre-band { background: var(--white); padding: var(--sp-16) 0; }
.andre-band .andre-row {
  display: flex; align-items: center; gap: var(--sp-8);
  margin: 0 auto; padding: var(--sp-8) var(--sp-12); border: none; max-width: 940px;
  background: var(--cream); border-radius: 999px;
}
@media (max-width: 760px) {
  .andre-band .andre-row { border-radius: var(--radius-lg); padding: var(--sp-8); }
}
.andre-band .andre-avatar { width: 84px; height: 84px; }
.andre-band .andre-row p { font-size: 1.02rem; line-height: 1.75; }
@media (max-width: 700px) {
  .andre-band .andre-row { flex-direction: column; text-align: center; gap: var(--sp-5); }
}

/* ============================================================
   Kursübersicht auf der Startseite (2 Spalten, Lavendel-Karten)
   ============================================================ */
.home-courses { background: var(--white); padding: var(--sp-16) 0 var(--sp-24); }
.hc-grid { display: flex; flex-direction: column; gap: var(--sp-6); }

.hc-card {
  position: relative; background: var(--lavender);
  display: grid; grid-template-columns: 300px 1fr; align-items: stretch;
  padding: var(--sp-4) 0;
  height: 210px;              /* flaches, breites Banner */
}
@media (max-width: 700px) { .hc-card { height: auto; grid-template-columns: 1fr; } }
.hc-badge {
  position: absolute; top: var(--sp-3); right: var(--sp-5); z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--navy);
  border: 1px solid var(--navy); border-radius: 999px;
  padding: 5px 14px; font-size: 0.8rem; font-weight: 400; white-space: nowrap;
}
.hc-media { background: var(--white); margin-left: var(--sp-4); display: flex; align-items: center; overflow: hidden; }
.hc-media img { width: 100%; height: 100%; object-fit: cover; }
.hc-body {
  padding: var(--sp-5) var(--sp-8) var(--sp-5) var(--sp-6); overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto 1fr;
  column-gap: var(--sp-8); align-content: center; align-items: start;
}
.hc-body .hc-eyebrow { grid-column: 1; }
.hc-body h3 { grid-column: 1; margin-top: 2px; }
.hc-body p { grid-column: 1; margin-top: 6px; max-width: 46ch; }
.hc-body .hc-btn { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
.hc-eyebrow { font-size: 0.86rem; letter-spacing: 0.16em; color: var(--navy); font-weight: 400; }
.hc-card h3 { margin: 0; font-size: 1.45rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.hc-card p { margin: 0; font-size: 0.94rem; color: var(--navy); line-height: 1.5; }
.hc-btn {
  align-self: flex-start; background: var(--navy); color: #fff;
  padding: 11px 22px; font-size: 1rem; letter-spacing: 0.06em; margin-top: var(--sp-2);
  transition: background .18s ease;
}
.hc-btn:hover { background: var(--navy-light); }
@media (max-width: 620px) {
  .hc-card { grid-template-columns: 1fr; }
  .hc-media { margin: 0 var(--sp-2); aspect-ratio: 3/2; }
  .hc-body { padding: var(--sp-6); }
}

/* ============================================================
   Feature-Spalten: alles auf gleicher Höhe (symmetrisch)
   ============================================================ */
.feature-col { display: grid; grid-template-rows: auto auto 1fr auto; gap: var(--sp-5); }
.fc-head { min-height: 4.4rem; }          /* 1- und 2-zeilige Titel gleich hoch */
.fc-head h3 { text-align: center; }
.feature-col hr { align-self: start; }     /* Trennlinien exakt auf einer Höhe */
/* Status-Block: "Im Kurs inbegriffen" + "Nach Kauf verfügbar" auf einer Linie,
   Badge/Link hängt darunter. Dadurch sind alle vier Spalten symmetrisch. */
.fc-status {
  margin-top: 0; min-height: 8.5rem;
  display: grid; grid-template-rows: auto auto 1fr; gap: var(--sp-2);
  align-items: start; justify-items: center;
}
.fc-status .fc-badge, .fc-status a { align-self: start; }


/* Assessmentstart-Banner: bewusst nach unten abgesetzt, mit Luft */
.assessment-band { padding: var(--sp-20) 0 var(--sp-16); background: var(--white); }
.assessment-band .hero-banner { margin: 0; }
.assessment-cta { text-align: center; padding: var(--sp-10) 0 var(--sp-4); background: var(--white); }

/* ============================================================
   Einzelkurse: Intro-Karte, grosses Assessment-Banner, XL-Balken
   ============================================================ */

/* Intro: weisser Textkasten auf cremefarbenem Band (wie im Original) */
.intro-band { background: var(--cream); padding: var(--sp-16) 0 var(--sp-20); }
.intro-card { background: var(--white); padding: var(--sp-16) var(--sp-16) var(--sp-20); }
.intro-card h1 {
  font-size: 3.125rem; line-height: 1.15; font-weight: 700;
  text-transform: uppercase; text-align: center; color: var(--navy);
  position: relative; padding-bottom: var(--sp-8); margin: 0 auto var(--sp-10);
  width: fit-content;
}
.intro-card h1::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0;
  width: 330px; max-width: 70%; height: 1px; background: var(--navy); opacity: 0.5;
}
.intro-card p { color: var(--navy); font-size: 1.05rem; line-height: 1.9; margin: 0 0 var(--sp-6); }
.intro-card p:last-child { margin-bottom: 0; }
.intro-card a { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 700px) {
  .intro-card { padding: var(--sp-10) var(--sp-6) var(--sp-12); }
  .intro-card h1 { font-size: 2.1rem; }
}

/* Assessment-Banner mit viel Raum */
.assessment-hero {
  background: var(--lavender);
  padding: var(--sp-16) 0 var(--sp-20);
  text-align: center;
}
.ah-kicker { color: var(--white); font-size: 1.75rem; font-weight: 700; margin: 0 0 var(--sp-6); }
.ah-title { color: var(--navy); font-size: 3.4rem; font-weight: 700; line-height: 1.1; margin: 0 0 var(--sp-8); }
.ah-btn {
  display: inline-block; background: var(--red); color: var(--white);
  border: 2px solid #B8442C; border-radius: 999px;
  padding: 12px 34px; font-size: 1.05rem; font-weight: 500;
  transition: background .18s ease, transform .18s ease;
}
.ah-btn:hover { background: #c4454a; transform: translateY(-1px); }
@media (max-width: 700px) {
  .assessment-hero { padding: var(--sp-12) 0 var(--sp-16); }
  .ah-kicker { font-size: 1.25rem; }
  .ah-title { font-size: 2rem; }
}

/* Bestehensgarantie-Abschnitt */
.guarantee-band { padding: var(--sp-20) 0; }

/* Kursbalken auf der Einzelkurse-Seite: gleiche Form wie Home, nur grösser */
.hc-card.lg { height: auto; min-height: 420px; grid-template-columns: 400px 1fr; }
.hc-card.lg .hc-body {
  display: flex; flex-direction: column; gap: var(--sp-3);
  justify-content: center; padding: var(--sp-8); overflow: visible;
}
.hc-card.lg h3 { font-size: 1.65rem; }
.hc-card.lg p { font-size: 1rem; max-width: 52ch; }
.hc-price { font-size: 1.02rem; color: var(--navy); }
.hc-actions { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; margin-top: var(--sp-2); }
.hc-card.lg .hc-btn { border-radius: 999px; padding: 12px 28px; font-size: 1rem; letter-spacing: 0; }
.hc-guarantee { font-size: 0.85rem; color: var(--navy); font-style: italic; }
/* "Teilnahme" erscheint erst nach Kauf + Kursstart */
.hc-card .course-status {
  background: var(--tan); color: var(--navy);
  font-size: 0.8rem; padding: 2px 12px; border-radius: 4px; width: fit-content;
}
.hc-card .course-status[hidden] { display: none; }
@media (max-width: 780px) {
  .hc-card.lg { height: auto; grid-template-columns: 1fr; }
  .hc-card.lg .hc-media { aspect-ratio: 3/2; }
}

/* Bestehensgarantie-Pille mit SVG-Schild */
.guarantee-badge svg { flex-shrink: 0; }

/* ============================================================
   Semester-Kennzeichnung: aktuelles vs. kommendes Semester
   ============================================================ */
.term-head { margin: var(--sp-10) 0 var(--sp-2); }
.term-head.next { margin-top: var(--sp-20); padding-top: var(--sp-10); border-top: 1px solid var(--line); }
.term-title { display: flex; align-items: center; gap: var(--sp-3); }
.term-title h3 { margin: 0; font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.term-head p { margin: var(--sp-2) 0 0; color: var(--text-muted); font-size: 0.98rem; }
.term-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.term-dot.now { background: #2E9E5B; box-shadow: 0 0 0 4px rgba(46,158,91,0.16); }
.term-dot.later { background: var(--lavender); box-shadow: 0 0 0 4px rgba(196,195,210,0.35); }

/* Chip auf der Karte */
.hc-meta { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.term-chip {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 3px 12px; border-radius: 999px; white-space: nowrap;
}
.term-chip.now { background: #E4F3EA; color: #1F7A45; }
.term-chip.later { background: var(--white); color: var(--text-muted); border: 1px solid var(--line); }

/* Karten des kommenden Semesters optisch zurückgenommen */
.hc-card.next-term { background: var(--lavender-soft); }
.hc-card.next-term .hc-media { opacity: 0.9; }

/* Seitentitel als eigener Block (Einzelkurse) */
.page-title-band { background: var(--white); padding: var(--sp-20) 0 var(--sp-8); }
.page-title {
  font-size: 3.125rem; line-height: 1.15; font-weight: 700;
  text-transform: uppercase; text-align: center; color: var(--navy);
  position: relative; padding-bottom: var(--sp-8); margin: 0 auto;
  width: fit-content;
}
.page-title::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0;
  width: 330px; max-width: 70%; height: 1px; background: var(--navy); opacity: 0.5;
}
@media (max-width: 700px) { .page-title { font-size: 2.1rem; } }

/* ============================================================
   Sparhinweis-Banner (Einzelkurse + Preispläne)
   ============================================================ */
.save-hint {
  display: flex; align-items: center; gap: var(--sp-4);
  background: var(--peach-soft); border: 1px solid rgba(156,95,30,0.28);
  border-radius: 999px; padding: var(--sp-4) var(--sp-6);
  margin: 0 0 var(--sp-10); color: var(--navy); font-size: 1rem;
  transition: background .18s ease, transform .18s ease;
}
a.save-hint:hover { background: #fbdfc0; transform: translateY(-1px); }
.save-hint .sh-icon { display: flex; flex-shrink: 0; }
.save-hint .sh-text { flex: 1; line-height: 1.5; }
.save-hint .sh-text strong { color: var(--brown); }
.save-hint .sh-cta { color: var(--brown); font-weight: 600; white-space: nowrap; }
.save-hint.static { justify-content: center; text-align: center; }
@media (max-width: 700px) {
  .save-hint { border-radius: var(--radius); flex-direction: column; text-align: center; gap: var(--sp-2); }
}

/* ============================================================
   Preispläne: Paketkarten mit Ersparnis
   ============================================================ */
.pricing-section { padding: var(--sp-16) 0 var(--sp-24); }
.pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); margin-bottom: var(--sp-10); align-items: stretch; }
.pp-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
@media (max-width: 900px) { .pp-grid, .pp-grid.two { grid-template-columns: 1fr 1fr; max-width: none; } }
@media (max-width: 620px) { .pp-grid, .pp-grid.two { grid-template-columns: 1fr; } }

.pp-card {
  position: relative; background: var(--white); overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 0 var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-5);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
/* Bildkopf */
.pp-media { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.pp-media img { width: 100%; height: 100%; object-fit: cover; }
/* alle Textblöcke bekommen den gleichen Innenabstand */
.pp-card > :not(.pp-media):not(.pp-ribbon) { margin-left: var(--sp-8); margin-right: var(--sp-8); }
.pp-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pp-card.featured { border: 2px solid var(--navy); background: var(--cream); }

.pp-ribbon {
  position: absolute; top: var(--sp-4); left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--navy); color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
/* Ersparnis-Tag: der Blickfang */
.pp-save {
  align-self: flex-start; margin-top: var(--sp-2);
  background: #1F7A45; color: #fff;
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 5px 14px; border-radius: 999px;
}
.pp-card h3 { margin: 0; font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.pp-tagline { margin: -6px 0 0; font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }

.pp-price { display: flex; flex-direction: column; gap: 2px; }
.pp-old { font-size: 0.92rem; color: var(--text-faint); text-decoration: line-through; }
.pp-now { font-size: 2.8rem; font-weight: 300; color: var(--navy); line-height: 1.05; }
.pp-now small { font-size: 1.1rem; font-weight: 400; margin-right: 6px; }
.pp-pct { font-size: 0.86rem; font-weight: 600; color: #1F7A45; }

.pp-includes { border-top: 1px solid var(--line); padding-top: var(--sp-5); }
.pp-inc-label {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--sp-3);
}
.pp-includes ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.pp-includes li {
  position: relative; padding-left: 26px; font-size: 0.96rem; color: var(--navy); line-height: 1.45;
}
.pp-includes li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--navy);
}
.pp-includes li::after {
  content: ""; position: absolute; left: 4.5px; top: 9px; width: 7px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}

.pp-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pp-perks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.4;
}
.pp-perks li::before { content: "·"; color: var(--text-faint); font-weight: 700; }
.pp-perks li svg { flex-shrink: 0; }

.pp-btn { width: auto; border-radius: 999px; padding: 14px 20px; font-size: 1rem; margin-top: auto; }
.pp-card.featured .pp-btn { background: var(--navy); }

/* ============================================================
   Kursbalken im Preisplan-Stil (Startseite + Einzelkurse)
   Bild links, Inhalt rechts, helle Fläche, Häkchen-Liste
   ============================================================ */
.cb-grid { display: flex; flex-direction: column; gap: var(--sp-6); margin-bottom: var(--sp-10); }

.cb-card {
  display: grid; grid-template-columns: 320px 1fr; align-items: stretch;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.cb-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.cb-card.next-term { background: #FBFAFC; }

.cb-media { background: var(--cream); overflow: hidden; }
.cb-media img { width: 100%; height: 100%; object-fit: cover; }

.cb-body { padding: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-4); }

.cb-head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }
.cb-meta { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.cb-eyebrow { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.cb-guarantee {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--navy);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; white-space: nowrap;
}
.cb-card h3 { margin: 0; font-size: 1.55rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.cb-card .course-status {
  background: var(--tan); color: var(--navy);
  font-size: 0.8rem; padding: 2px 12px; border-radius: 4px; width: fit-content;
}
.cb-card .course-status[hidden] { display: none; }

.cb-includes { border-top: 1px solid var(--line); padding-top: var(--sp-4); }
.cb-inc-label {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--sp-3);
}
.cb-includes ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2) var(--sp-6);
}
@media (max-width: 900px) { .cb-includes ul { grid-template-columns: 1fr; } }
.cb-includes li {
  position: relative; padding-left: 26px; font-size: 0.94rem; color: var(--navy); line-height: 1.45;
}
.cb-includes li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--navy);
}
.cb-includes li::after {
  content: ""; position: absolute; left: 4.5px; top: 8px; width: 7px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}

.cb-foot {
  margin-top: auto; padding-top: var(--sp-5); border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap;
}
.cb-price { font-size: 1.05rem; color: var(--navy); font-weight: 500; }
.cb-actions { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.cb-btn { border-radius: 999px; padding: 13px 30px; font-size: 1rem; }

@media (max-width: 820px) {
  .cb-card { grid-template-columns: 1fr; }
  .cb-media { aspect-ratio: 16 / 9; }
  .cb-body { padding: var(--sp-6); }
  .cb-card h3 { font-size: 1.35rem; }
}

/* Startseite: kompakte Schlagwort-Liste, fliesst in einer Reihe */
.cb-includes.compact ul {
  display: flex; flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  grid-template-columns: none;
}
.cb-includes.compact li { font-size: 0.95rem; white-space: nowrap; }

/* Pulsierender Punkt beim aktuellen Semester */
.term-dot.now { position: relative; }
.term-dot.now::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #2E9E5B; animation: teacon-pulse 2s ease-out infinite;
}
@keyframes teacon-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .term-dot.now::after { animation: none; }
}

/* ============================================================
   Events & Kurse
   ============================================================ */
.aperol { padding: var(--sp-8) 0 var(--sp-20); }
.ap-card {
  display: grid; grid-template-columns: 300px 1fr; gap: var(--sp-10);
  align-items: center;
  background: var(--cream); border-radius: var(--radius-lg);
  padding: var(--sp-12); position: relative; overflow: hidden;
}
@media (max-width: 820px) { .ap-card { grid-template-columns: 1fr; padding: var(--sp-8); gap: var(--sp-6); } }
.ap-art svg { width: 100%; height: auto; }
.ap-kicker {
  display: inline-block; background: var(--tan); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: var(--sp-4);
}
.ap-body h2 { font-size: 2.3rem; font-weight: 700; color: var(--navy); margin: 0 0 var(--sp-4); line-height: 1.15; }
.ap-lead { font-size: 1.05rem; color: var(--navy); line-height: 1.65; margin-bottom: var(--sp-6); }

.ap-facts {
  list-style: none; padding: 0; margin: 0 0 var(--sp-6);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: var(--sp-5) 0;
}
@media (max-width: 720px) { .ap-facts { grid-template-columns: 1fr 1fr; } }
.ap-facts li { display: flex; flex-direction: column; gap: 3px; }
.af-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.af-value { font-size: 1rem; font-weight: 700; color: var(--navy); }

.ap-perks { list-style: none; padding: 0; margin: 0 0 var(--sp-8); display: grid; gap: var(--sp-2); }
.ap-perks li { position: relative; padding-left: 28px; color: var(--navy); font-size: 0.98rem; }
.ap-perks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--tan);
}
.ap-perks li::after {
  content: ""; position: absolute; left: 5px; top: 9.5px; width: 7px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}
.ap-actions { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }

/* Kooperationsband */
.intensiv { padding: var(--sp-8) 0 var(--sp-24); }
.partner-band {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-10); align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-8); margin-bottom: var(--sp-12); background: var(--white);
}
@media (max-width: 760px) { .partner-band { grid-template-columns: 1fr; gap: var(--sp-5); } }
.pb-logos { display: flex; align-items: center; gap: var(--sp-4); }
.pb-teacon { width: 46px; height: 46px; }
.pb-x { font-size: 1.3rem; color: var(--text-faint); }
.pb-sp { display: flex; align-items: center; gap: var(--sp-2); }
.pb-sp-name { font-weight: 700; font-size: 1.15rem; color: #2D5BFF; }
.pb-text h3 { margin: 0 0 var(--sp-2); font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.pb-text p { margin: 0; color: var(--navy); line-height: 1.65; font-size: 0.98rem; }
.pb-text a { color: #2D5BFF; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* Intensivkurs-Karten */
.ic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); margin-bottom: var(--sp-16); align-items: stretch; }
@media (max-width: 900px) { .ic-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .ic-grid { grid-template-columns: 1fr; } }
.ic-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: box-shadow .2s ease, transform .2s ease;
}
.ic-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ic-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.ic-media img { width: 100%; height: 100%; object-fit: cover; }
.ic-body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.ic-tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); }
.ic-card h3 { margin: 0; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.ic-card p { margin: 0; color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; }
.ic-list { list-style: none; padding: 0; margin: var(--sp-2) 0 0; display: grid; gap: 7px; }
.ic-list li { position: relative; padding-left: 24px; font-size: 0.92rem; color: var(--navy); line-height: 1.45; }
.ic-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 15px; height: 15px; border-radius: 50%; background: var(--navy); }
.ic-list li::after { content: ""; position: absolute; left: 4px; top: 7.5px; width: 6.5px; height: 3.5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.ic-foot { margin-top: auto; padding-top: var(--sp-5); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }
.ic-price { display: flex; flex-direction: column; }
.ic-amount { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.ic-note { font-size: 0.82rem; color: var(--brown); }
.ic-foot .btn { padding: 11px 22px; font-size: 0.94rem; }

/* Ablauf-Block */
.ic-info { background: var(--cream); border-radius: var(--radius); padding: var(--sp-12); }
.ic-info h3 { margin: 0 0 var(--sp-8); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.ic-steps { list-style: none; padding: 0; margin: 0 0 var(--sp-10); display: grid; gap: var(--sp-6); }
.ic-steps li { display: grid; grid-template-columns: 44px 1fr; gap: var(--sp-4); align-items: start; }
.is-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.ic-steps strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.ic-steps p { margin: 0; color: var(--text-muted); font-size: 0.96rem; line-height: 1.6; }
.ic-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); border-top: 1px solid var(--line); padding-top: var(--sp-6); }
@media (max-width: 760px) { .ic-meta { grid-template-columns: 1fr 1fr; } }
.ic-meta > div { display: flex; flex-direction: column; gap: 3px; }
.im-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.im-value { font-size: 0.98rem; font-weight: 600; color: var(--navy); }

/* ============================================================
   Über uns
   ============================================================ */
.about-intro { padding: var(--sp-8) 0 var(--sp-16); }
.ab-lead { max-width: 780px; margin: 0 auto var(--sp-16); text-align: center; }
.ab-big { font-size: 1.3rem; line-height: 1.6; color: var(--navy); margin-bottom: var(--sp-6); }
.ab-lead p { color: var(--text-muted); line-height: 1.75; font-size: 1.02rem; }
.ab-goal { color: var(--navy) !important; margin-top: var(--sp-6); }

.ab-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
@media (max-width: 800px) { .ab-stats { grid-template-columns: 1fr 1fr; } }
.ab-stat {
  background: var(--cream); border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-5); text-align: center;
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.as-num { font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.as-label { font-size: 0.92rem; color: var(--text-muted); line-height: 1.45; }

.about-mission { padding: var(--sp-16) 0; }
.am-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
@media (max-width: 860px) { .am-grid { grid-template-columns: 1fr; gap: var(--sp-10); } }
.about-mission p { color: var(--text-muted); line-height: 1.75; }
.am-art svg { width: 100%; height: auto; }

.about-values { padding: var(--sp-16) 0 var(--sp-24); }
.av-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); align-items: stretch; }
@media (max-width: 900px) { .av-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .av-grid { grid-template-columns: 1fr; } }
.av-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  background: var(--white);
  transition: box-shadow .2s ease, transform .2s ease;
}
.av-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.av-card .ic { width: 44px; height: 44px; }
.av-card h3 { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.av-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   Startseite: UZH-Badge, Leistungsversprechen, Feature-Karten
   ============================================================ */
.uzh-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
  margin-bottom: var(--sp-5);
}
.uzh-badge svg { flex-shrink: 0; }

/* Leistungsversprechen als Karten */
.value-promise { padding: var(--sp-24) 0 var(--sp-16); }
.vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); align-items: stretch; }
@media (max-width: 900px) { .vp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vp-grid { grid-template-columns: 1fr; } }
.vp-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  background: var(--white);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.vp-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--lavender); }
.vp-card .ic { width: 46px; height: 46px; }
.vp-card h3 { margin: 0; font-size: 1.12rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.vp-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.vp-link { margin-top: auto; color: var(--navy); font-weight: 600; font-size: 0.92rem; text-decoration: underline; text-underline-offset: 3px; }
.vp-link:hover { color: var(--tan); }

/* Feature-Karten (Lernkarten, Chat-Assistant …) */
.features { padding: var(--sp-16) 0 var(--sp-24); }
.ft-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); align-items: stretch; }
@media (max-width: 900px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-card {
  background: var(--cream); border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-5);
  transition: box-shadow .2s ease, transform .2s ease;
}
.ft-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ft-head { display: flex; align-items: center; gap: var(--sp-3); min-height: 52px; }
.ft-head .ic { width: 34px; height: 34px; }
.ft-head h3 { margin: 0; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.ft-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); flex: 1; }
.ft-list li { position: relative; padding-left: 22px; font-size: 0.94rem; color: var(--navy); line-height: 1.45; }
.ft-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--tan);
}
.ft-foot {
  border-top: 1px solid var(--line); padding-top: var(--sp-4);
  display: flex; flex-direction: column; gap: var(--sp-2); align-items: flex-start;
}
.ft-foot strong { color: var(--navy); font-size: 1rem; }
.ft-foot span { color: var(--text-muted); font-size: 0.9rem; }
.ft-badge {
  background: var(--coral); color: #fff !important;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px; margin-top: var(--sp-1);
}
.ft-link { color: var(--navy); font-weight: 600; font-size: 0.92rem; text-decoration: underline; text-underline-offset: 3px; margin-top: var(--sp-1); }
.ft-link:hover { color: var(--tan); }

/* ============================================================
   Kontaktseite
   ============================================================ */
.ct-section { padding: var(--sp-12) 0 var(--sp-24); }

/* Schnellkontakt-Kacheln */
.ct-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-bottom: var(--sp-16); }
@media (max-width: 900px) { .ct-quick { grid-template-columns: 1fr; } }
.ctq-card {
  display: flex; align-items: center; gap: var(--sp-5);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-6); background: var(--white);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
a.ctq-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--navy); }
a.ctq-card:hover .ctq-arrow svg { transform: translateX(4px); }
.ctq-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.ctq-icon svg { width: 22px; height: 22px; }
.ctq-icon.andre { overflow: hidden; background: var(--navy); }
.ctq-icon.andre img { width: 100%; height: 100%; object-fit: cover; }
.ctq-text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.ctq-text strong { color: var(--navy); font-size: 0.98rem; }
.ctq-text span { color: var(--text-muted); font-size: 0.88rem; overflow: hidden; text-overflow: ellipsis; }
.ctq-arrow { color: var(--navy); display: flex; flex-shrink: 0; }
.ctq-arrow svg { width: 20px; height: 20px; transition: transform .2s ease; }
.ctq-live { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #1F7A45; font-weight: 600; }
.ctq-dot { width: 8px; height: 8px; border-radius: 50%; background: #2E9E5B; position: relative; }
.ctq-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #2E9E5B; animation: teacon-pulse 2s ease-out infinite;
}

/* Grid: Formular + Seitenspalte */
.ct-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-12); align-items: start; }
@media (max-width: 900px) { .ct-grid { grid-template-columns: 1fr; gap: var(--sp-10); } }

.ct-form-wrap { background: var(--cream); border-radius: var(--radius-lg); padding: var(--sp-12) var(--sp-12) var(--sp-10); }
.ct-form-head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap; margin-bottom: var(--sp-10); }
.ct-form-head h2 { margin: 0; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.ct-reply { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; color: #1F7A45; font-weight: 600; }
.ct-dot { width: 8px; height: 8px; border-radius: 50%; background: #2E9E5B; position: relative; }
.ct-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #2E9E5B; animation: teacon-pulse 2s ease-out infinite; }

/* Themen-Chips */
.ct-topics { border: none; padding: 0; margin: 0 0 var(--sp-10); }
.ct-topics legend { font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: var(--sp-4); padding: 0; }
.ct-chips { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.ct-chip input { position: absolute; opacity: 0; pointer-events: none; }
.ct-chip span {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; user-select: none;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 19px; font-size: 0.9rem; color: var(--navy); background: var(--white);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.ct-chip em { font-style: normal; }
.ct-chip-ico { width: 17px; height: 17px; flex-shrink: 0; opacity: .85; }
.ct-chip span:hover { border-color: var(--navy); transform: translateY(-1px); }
.ct-chip input:checked + span { background: var(--navy); color: #fff; border-color: var(--navy); }
.ct-chip input:checked + span .ct-chip-ico { opacity: 1; }
.ct-chip input:focus-visible + span { outline: 2px solid var(--tan); outline-offset: 2px; }

.ct-form-wrap input, .ct-form-wrap textarea { background: var(--white); }
.ct-form-wrap .form-row { margin-bottom: var(--sp-6); gap: var(--sp-5); }
.ct-form-wrap label { display: block; margin-bottom: var(--sp-2); font-size: 0.86rem; font-weight: 600; color: var(--navy); }
.ct-form-wrap input, .ct-form-wrap textarea { margin-bottom: var(--sp-6); padding: 14px 16px; }
.ct-form-wrap .form-row input { margin-bottom: 0; }
.ct-form-wrap textarea { min-height: 170px; margin-bottom: var(--sp-4); }
.ct-form-wrap .form-note { margin: var(--sp-5) 0 0; }
.ct-meta { display: flex; justify-content: space-between; gap: var(--sp-5); margin: calc(var(--sp-3) * -1) 0 var(--sp-6); flex-wrap: wrap; }
.ct-count { font-size: 0.82rem; color: var(--text-faint); }
.ct-count.warn { color: var(--coral-dark); font-weight: 600; }
.ct-hint { font-size: 0.85rem; color: var(--brown); }

/* Ausfüll-Fortschritt */
.ct-progress { height: 5px; border-radius: 999px; background: var(--cream-dark); overflow: hidden; margin-bottom: var(--sp-8); }
.ct-progress span { display: block; height: 100%; width: 0%; background: var(--tan); border-radius: 999px; transition: width .3s ease; }
.ct-submit { width: 100%; padding-top: var(--sp-4); padding-bottom: var(--sp-4); }

/* Erfolgszustand */
.ct-success { text-align: center; padding: var(--sp-12) var(--sp-4); }
.cts-badge { width: 76px; height: 76px; margin: 0 auto var(--sp-6); }
.cts-badge svg { width: 100%; height: 100%; }
.cts-circle { stroke-dasharray: 145; stroke-dashoffset: 145; animation: cts-draw .5s ease forwards; }
.cts-check { stroke-dasharray: 46; stroke-dashoffset: 46; animation: cts-draw .35s ease .4s forwards; }
@keyframes cts-draw { to { stroke-dashoffset: 0; } }
.ct-success h3 { margin: 0 0 var(--sp-4); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.ct-success p { color: var(--text-muted); max-width: 420px; margin: 0 auto var(--sp-10); line-height: 1.7; }
.cts-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* Konfetti */
.ct-confetti { position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden; }
.ct-confetti i {
  position: absolute; top: -14px; width: 9px; height: 14px; border-radius: 2px;
  animation: ct-fall 2.2s cubic-bezier(.25,.6,.4,1) forwards;
}
@keyframes ct-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(105vh) rotate(540deg); opacity: 0; }
}

/* Seitenspalte */
.ct-side { display: flex; flex-direction: column; gap: var(--sp-6); }
.ct-card { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-8); background: var(--white); }
.ct-card h3 { margin: 0 0 var(--sp-5); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.ct-card p { margin: 0 0 var(--sp-4); color: var(--text-muted); font-size: 0.94rem; line-height: 1.7; }
.ct-card p:last-child { margin-bottom: 0; }

.ct-hours ul { list-style: none; padding: 0; margin: 0 0 var(--sp-5); display: grid; gap: var(--sp-3); }
.ct-hours li { display: flex; justify-content: space-between; gap: var(--sp-5); font-size: 0.94rem; color: var(--navy); }
.ct-hours li span:last-child { color: var(--text-muted); }
.ct-hours li.ct-exam { border-top: 1px solid var(--line); padding-top: var(--sp-3); margin-top: var(--sp-1); }
.ct-hours li.ct-exam span { color: var(--brown); font-weight: 600; }
.ct-hours-note { font-size: 0.86rem !important; }

.ct-faq-link {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) 0; border-top: 1px solid var(--line);
  color: var(--navy); font-size: 0.92rem; transition: color .15s ease, padding-left .15s ease;
}
.ct-faq-link:hover { color: var(--tan); padding-left: 4px; }
.ct-arr { width: 17px; height: 17px; flex-shrink: 0; }

/* Jobs-Karte, bewusst der auffälligste Block der Seitenspalte */
.ct-jobs {
  background: var(--navy); border-color: transparent; color: #fff;
  position: relative; overflow: hidden;
}
.ct-jobs::after {
  content: ""; position: absolute; top: -70px; right: -70px;
  width: 190px; height: 190px; border-radius: 50%;
  background: rgba(219, 154, 83, 0.16); pointer-events: none;
}
.ct-jobs > * { position: relative; z-index: 1; }
.ct-jobs h3 { color: #fff; font-size: 1.25rem; margin-bottom: var(--sp-4); }
.ct-jobs-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tan); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: var(--sp-5);
}
.ctj-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; position: relative; }
.ctj-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #fff; animation: teacon-pulse 2s ease-out infinite; }
.ct-jobs-lead { color: rgba(255,255,255,0.82) !important; font-size: 0.95rem !important; margin-bottom: var(--sp-6) !important; }

.ctj-perks { list-style: none; padding: 0; margin: 0 0 var(--sp-8); display: grid; gap: var(--sp-4); }
.ctj-perks li { display: flex; gap: var(--sp-4); align-items: flex-start; font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,0.82); }
.ctj-perks svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--tan); }
.ctj-perks strong { color: #fff; font-weight: 700; }
.ctj-perks li:first-child strong { color: var(--tan); font-size: 1.02rem; }

.ctj-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--tan); color: #fff; font-weight: 700; font-size: 0.98rem;
  padding: 15px var(--sp-6); border-radius: 999px;
  transition: background .18s ease, transform .18s ease;
}
.ctj-cta:hover { background: #C98A45; color: #fff; transform: translateY(-2px); }
.ctj-cta:hover .ct-arr { transform: translateX(4px); }
.ctj-cta .ct-arr { transition: transform .18s ease; }
.ct-jobs-hint { font-size: 0.85rem !important; color: rgba(255,255,255,0.6) !important; text-align: center; margin: var(--sp-4) 0 0 !important; }

.ct-maps { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 600; font-size: 0.92rem; }
.ct-maps:hover { color: var(--tan); }

@media (max-width: 700px) {
  .ct-form-wrap { padding: var(--sp-8) var(--sp-6); }
  .ct-card { padding: var(--sp-6); }
}

/* ============================================================
   Inhaberbereich (Kundenübersicht im Profil)
   ============================================================ */
.adm-card { border: 1.5px solid var(--navy); }
.adm-hd { margin-bottom: var(--sp-6); }
.adm-badge {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: var(--sp-3);
}
.adm-hd h3 { margin: 0 0 var(--sp-2); }
.adm-hd p { margin: 0; font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.adm-stats { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-5); }
.adm-stat {
  background: var(--cream); border-radius: 12px; padding: var(--sp-4) var(--sp-5);
  display: flex; flex-direction: column; gap: 2px; min-width: 110px;
}
.adm-stat b { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.adm-stat span { font-size: 0.78rem; color: var(--text-muted); }

.adm-tools { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-5); flex-wrap: wrap; }
.adm-tools input {
  flex: 1; min-width: 200px; margin: 0; padding: 11px 15px;
  border: 1px solid var(--line); border-radius: 10px; font: 400 0.94rem var(--font);
}

.adm-table-wrap { overflow-x: auto; }
.adm-table { border-collapse: collapse; width: 100%; min-width: 940px; font-size: 0.9rem; }
.adm-table th {
  background: var(--navy); color: #fff; text-align: left; font-weight: 600;
  padding: var(--sp-3) var(--sp-4); font-size: 0.8rem;
}
.adm-table th:first-child { border-top-left-radius: 8px; }
.adm-table th:last-child { border-top-right-radius: 8px; }
.adm-table td { padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--line); vertical-align: top; }
.adm-table tbody tr:nth-child(even) { background: var(--cream); }
.adm-mail { color: var(--text-muted); }
.adm-chip {
  display: inline-block; background: rgba(219,154,83,0.18); color: var(--brown);
  font-size: 0.76rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; margin: 2px 4px 2px 0;
}
.adm-none { color: var(--text-faint); font-size: 0.84rem; }
.adm-hint { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.adm-error { background: rgba(232,112,95,0.1); border-left: 3px solid var(--coral); border-radius: 10px; padding: var(--sp-5); }
.adm-error strong { display: block; color: var(--coral-dark); margin-bottom: var(--sp-2); }
.adm-error p { margin: 0 0 var(--sp-2); font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.adm-error code { background: var(--cream); padding: 1px 6px; border-radius: 4px; font-size: 0.86em; }

/* Hinweis auf den Inhaberzugang in "Meine Kurse" */
.dash-master {
  display: flex; align-items: flex-start; gap: var(--sp-5);
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6); margin-bottom: var(--sp-6);
}
.dm-badge {
  flex-shrink: 0; background: var(--tan); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-top: 2px;
}
.dash-master > div { display: flex; flex-direction: column; gap: 3px; }
.dash-master strong { font-size: 1rem; font-weight: 700; }
.dash-master span { font-size: 0.87rem; color: rgba(255,255,255,0.66); line-height: 1.5; }
.dash-soon {
  display: inline-block; background: var(--cream-dark); color: var(--brown);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; vertical-align: middle; margin-left: 6px;
}


/* ---------- Fortschrittsspalten in der Kundenübersicht ---------- */
.adm-prog { display: flex; align-items: center; gap: var(--sp-3); min-width: 132px; }
.adm-prog-bar {
  flex: 1; height: 7px; border-radius: 999px;
  background: var(--cream-dark); overflow: hidden;
}
.adm-prog-bar span { display: block; height: 100%; background: var(--tan); border-radius: 999px; }
.adm-prog b { font-size: 0.84rem; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; min-width: 38px; text-align: right; }
.adm-num { font-variant-numeric: tabular-nums; color: var(--text-muted); white-space: nowrap; }

/* ============================================================
   Symbolsatz (js/icons.js)
   Feine Strichsymbole, die Grösse und Farbe aus der Umgebung
   erben. Damit sehen Konto, Kurs und Kasse gleich aus.
   ============================================================ */
.ic { width: 1em; height: 1em; display: block; flex-shrink: 0; }
.ic-wrap { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

.account-nav .nav-icon { width: 19px; height: 19px; font-size: 19px; color: var(--text-muted); transition: color .16s ease; }
.account-nav a:hover .nav-icon { color: var(--navy); }
.account-nav a.active .nav-icon { color: var(--white); }
.account-nav a.danger .nav-icon { color: var(--danger); }

/* Grosse Symbole in leeren Zuständen und Hinweisboxen */
.pw-icon .ic, .ph-icon .ic, .empty-state .icon .ic { width: 100%; height: 100%; stroke-width: 1.3; }
.pw-icon, .ph-icon { width: 46px; height: 46px; color: var(--tan); }
.empty-state .icon { width: 44px; height: 44px; margin: 0 auto var(--sp-4); color: var(--text-faint); }

/* Hinweisstreifen in der Bestellhistorie */
.bh-hinweis {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  background: rgba(219,154,83,.12); border-left: 3px solid var(--tan);
  border-radius: 0 12px 12px 0; padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-6); color: var(--brown); font-size: 0.92rem; line-height: 1.65;
}
.bh-hinweis .ic { width: 17px; height: 17px; margin-top: 2px; }
.bh-hinweis[hidden] { display: none; }

/* Offene Rechnungen im Inhaberbereich */
.rech-zahl {
  display: inline-flex; align-items: center; justify-content: center; min-width: 26px; height: 26px;
  padding: 0 8px; margin-left: 8px; border-radius: 999px;
  background: rgba(219,154,83,.2); color: var(--brown);
  font-size: 0.82rem; font-weight: 800; vertical-align: middle;
}
.rech-nr { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.78rem; color: var(--text-faint); }
.rech-alter { font-weight: 700; }
.rech-alter.bald { color: var(--brown); }
.rech-alter.ueberfaellig { color: var(--danger); }
.rech-erledigt { opacity: .45; }
.rech-erledigt .btn { pointer-events: none; }

/* Der Masterpunkt hebt sich ab. Er führt in einen anderen Bereich. */
.account-nav a.ma-nav { color: var(--brown); font-weight: 600; }
.account-nav a.ma-nav .nav-icon { color: var(--tan); }
.account-nav a.ma-nav:hover { background: rgba(219,154,83,.12); }
.account-nav a.ma-nav.active { background: var(--brown); color: #fff; }
.account-nav a.ma-nav.active .nav-icon { color: #fff; }
.account-nav [data-admin-only][hidden] { display: none !important; }
