/* ============================================================
   Herward Timm — Plattform-Demo
   Brand-Stylesheet · Sage-Grün, Serifen-Akzent, Premium-Anmutung
   ============================================================ */

/* ============================================================
   Schriften lokal selbst gehostet (DSGVO: keine Übertragung an Google).
   woff2-Dateien liegen in assets/fonts/ — Beschaffung siehe
   assets/fonts/README.md. Solange Dateien fehlen, greift der
   System-Fallback (sans-serif / serif) via font-display: swap.
   ============================================================ */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('assets/fonts/inter-800.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/cormorant-500.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('assets/fonts/cormorant-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/cormorant-600.woff2') format('woff2'); }

:root {
  /* --- Marken-Palette (Sage) --- */
  --sage:           #94A89F;
  --sage-mid:       #7E9389;
  --sage-dark:      #5F7066;
  --sage-darker:    #44524B;
  --sage-mint:      #D8E4DC;
  --sage-mint-soft: #ECF2EE;
  --white:          #FFFFFF;
  --cream:          #FAFBF9;

  /* --- Akzent Gold/Beige --- */
  --gold:        #C99B45;
  --gold-dark:   #A57E33;
  --gold-soft:   #E8D6AE;

  /* --- Text (Kontrast erhöht für bessere Lesbarkeit, WCAG AA) --- */
  --text:        #243029;
  --text-soft:   #44544C;
  --text-mute:   #677A70;

  /* --- Linien --- */
  --border:      #C9D6CE;
  --border-soft: #E4ECE7;

  /* --- Status --- */
  --success: #5F7E5F;
  --error:   #A85B53;

  /* --- Schatten (sehr dezent, premium) --- */
  --shadow-sm: 0 1px 2px rgba(60, 78, 70, 0.04), 0 1px 3px rgba(60, 78, 70, 0.03);
  --shadow-md: 0 2px 8px rgba(60, 78, 70, 0.06), 0 1px 3px rgba(60, 78, 70, 0.04);
  --shadow-lg: 0 12px 32px rgba(60, 78, 70, 0.08), 0 4px 12px rgba(60, 78, 70, 0.04);

  /* --- Layout --- */
  --radius-sm: 2px;
  --radius:    3px;
  --radius-lg: 4px;
  --container: 1180px;
  --header-h:  96px;

  /* --- Legacy Aliases (für Inline-Styles in HTML) --- */
  --petrol:        var(--sage-dark);
  --petrol-dark:   var(--sage-darker);
  --petrol-light:  var(--sage);
  --bg:            var(--sage-mint-soft);
  --bg-soft:       var(--white);
  --accent:        var(--gold);
  --accent-dark:   var(--gold-dark);
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   TYPOGRAFIE
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  color: var(--sage-darker);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }

p { margin: 0 0 1.1em; color: var(--text); }

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--gold-dark); }

img, svg { max-width: 100%; display: block; }

::selection { background: rgba(148, 168, 159, 0.35); }

/* ============================================================
   LAYOUT
   ============================================================ */

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

.section { padding: 96px 0; background: var(--white); }
.section-alt { padding: 96px 0; background: var(--sage-mint-soft); }
.section--tight { padding: 56px 0; }
.section--hero { padding: 80px 0 64px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* --- Logo Wordmark "HerwardTimm" (Bild-Logo) --- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sage-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
}
.logo img {
  display: block;
  max-width: 340px;
  width: auto;
  height: auto;
  max-height: 80px;
}
.logo img.logo-weiss {
  max-width: 360px;
  max-height: 84px;
}
.logo .brand-first {
  color: var(--sage-dark);
  font-weight: 500;
}
.logo .brand-second {
  color: var(--sage-dark);
  font-weight: 400;
  font-style: italic;
}
.logo-mark { display: none; } /* legacy "HT" square ausblenden */

/* Footer-Logo (weiße Variante auf dunklem Hintergrund) */
.site-footer .logo {
  color: var(--white);
  font-size: 1.7rem;
}
.site-footer .logo img {
  max-width: 220px;
  max-height: 60px;
}
.site-footer .logo .brand-first,
.site-footer .logo .brand-second { color: var(--white); }

/* Hero-Logo (groß, weiß) */
.hero .brand-logo-img {
  display: block;
  margin: 0 auto 4px;
  max-width: 400px;
  width: 80%;
  height: auto;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.55));
}

/* Zertifikat-Kopf (Druck-Größe) */
.cert-head .logo img {
  max-width: 220px;
  max-height: 80px;
}

/* ============================================================
   SPRACH-PICKER
   ============================================================ */
.lang-picker {
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  margin-right: 8px;
}
.lang-picker__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.lang-picker__toggle:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: var(--sage-mint-soft);
}
.lang-picker__icon { width: 14px; height: 14px; opacity: 0.7; }
.lang-picker__chev { width: 10px; height: 10px; opacity: 0.6; transition: transform .2s; }
.lang-picker.open .lang-picker__chev { transform: rotate(180deg); }
.lang-picker__current {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--sage-darker);
}
.lang-picker__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.lang-picker.open .lang-picker__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-picker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: background .12s, color .12s;
}
.lang-picker__item:hover {
  background: var(--sage-mint-soft);
  color: var(--sage-darker);
}
.lang-picker__item.active {
  background: var(--sage-mint);
  color: var(--sage-darker);
  font-weight: 600;
}
.lang-picker__flag {
  display: inline-block;
  min-width: 26px;
  padding: 2px 6px;
  background: var(--sage-mint-soft);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sage-darker);
  text-align: center;
}
.lang-picker__item.active .lang-picker__flag {
  background: var(--sage-dark);
  color: var(--white);
}

/* Footer-Variante (dunkler Hintergrund) */
.site-footer .lang-picker__toggle {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.site-footer .lang-picker__toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.site-footer .lang-picker__current { color: var(--white); }

/* Schulungs-Hinweis-Banner (Bild bleibt auf Deutsch) */
.lang-hinweis {
  display: none;
  margin: 16px 0 8px;
  padding: 10px 14px;
  background: rgba(201, 155, 69, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.86rem;
  color: var(--text-soft);
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}
html:not([lang="de"]) .lang-hinweis { display: block; }

/* ============================================================
   RTL — Arabisch
   ============================================================ */
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .nav-menu { flex-direction: row-reverse; }
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .lang-picker__menu { right: auto; left: 0; }
html[dir="rtl"] .lang-hinweis { border-left: none; border-right: 3px solid var(--gold); border-radius: var(--radius) 0 0 var(--radius); }
html[dir="rtl"] .footer-list { padding-right: 0; }
html[dir="rtl"] .btn-link::before { content: ''; }
html[dir="rtl"] .slide-nav { flex-direction: row-reverse; }
html[dir="rtl"] .learn-layout { direction: rtl; }
html[dir="rtl"] .learn-sidebar { direction: rtl; }
html[dir="rtl"] .quiz-option .letter { margin-left: 12px; margin-right: 0; }

/* Arabische Schrift braucht etwas mehr Zeilenhöhe */
html[lang="ar"] body {
  font-family: 'Inter', -apple-system, 'Segoe UI', 'Noto Sans Arabic', sans-serif;
  line-height: 1.8;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 {
  font-family: 'Inter', 'Noto Sans Arabic', sans-serif;
  font-weight: 600;
}

/* --- Nav-Menü --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--text);
  font-weight: 400;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  background: transparent;
  border-radius: 0;
  position: relative;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--sage-dark); background: transparent; }
.nav-menu a.active { color: var(--sage-dark); background: transparent; }
.nav-menu a.active::after {
  content: ""; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--sage-dark);
}
.nav-menu .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--sage-mint, #D8E4DC);
  border-radius: 999px;
  background: var(--sage-mint-soft, #EDF3EF);
  transition: border-color .15s, background .15s, color .15s;
}
.nav-menu .nav-phone svg { color: var(--gold-dark); flex: none; }
.nav-menu .nav-phone:hover {
  color: var(--sage-dark);
  border-color: var(--gold);
  background: #fff;
}
.nav-menu .nav-phone::after { display: none; }

.nav-menu .nav-cta {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #2A1E05;
  padding: 10px 22px;
  margin-left: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(201, 155, 69, 0.28);
}
.nav-menu .nav-cta:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.nav-menu .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--sage-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    flex-direction: column;
    background: var(--white);
    align-items: stretch;
    padding: 16px;
    gap: 0;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 16px; }
  .nav-menu a.active::after { display: none; }
  .nav-menu .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; justify-content: center; }
}

/* ============================================================
   BUTTONS (Outline-Stil)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  line-height: 1.2;
  background: transparent;
}

/* Primary = Outline Sage */
.btn-primary {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
  background: transparent;
}
.btn-primary:hover { background: var(--sage-dark); color: var(--white); }

/* Ghost = identisch zu primary (Outline Sage) — Alias für Bestands-Klassen */
.btn-ghost {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
  background: transparent;
}
.btn-ghost:hover { background: var(--sage-dark); color: var(--white); }

/* ============================================================
   CONVERSION-CTA — die EINE Hauptaktion (solid gold).
   Nur für die wichtigste Geld-Aktion einer Seite verwenden:
   "Sifa-Pauschale anfragen" bzw. im Shop "Jetzt kaufen".
   Solide Füllung = höchster Kontrast = klare Lenkung.
   ============================================================ */
.btn-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #2A1E05;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(201, 155, 69, 0.30);
}
.btn-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 155, 69, 0.40);
}
.btn-cta:active { transform: translateY(0); }

/* Accent = Outline Gold (Alt-Klasse; jetzt für sekundäre Gold-Akzente) */
.btn-accent {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn-accent:hover { background: var(--gold); color: var(--white); }

/* Sichtbarer Fokus-Ring für Tastatur-Navigation (Accessibility-Standard) */
.btn:focus-visible,
.nav-menu a:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Light = Outline auf dunklem Hintergrund (Hero) */
.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: var(--white); color: var(--sage-darker); }

/* Gold-Light = Gold-Outline auf dunklem Hintergrund */
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* Filled (selten — für CTA-Streifen mit dunklem Hintergrund) */
.btn-filled {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.btn-filled:hover { background: var(--sage-darker); border-color: var(--sage-darker); color: var(--white); }

.btn-link {
  background: transparent;
  color: var(--sage-dark);
  padding: 8px 4px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
  border: 0;
}
.btn-link:hover { color: var(--gold-dark); }

.btn-lg { padding: 16px 36px; font-size: 0.88rem; }
.btn-sm { padding: 8px 18px; font-size: 0.75rem; }
.btn-block { width: 100%; }

/* ============================================================
   CARDS · GRIDS
   ============================================================ */

.card {
  background: var(--white);
  border-radius: 0;
  padding: 36px;
  border: 1px solid var(--border-soft);
  box-shadow: none;
}
.card--hover { transition: border-color .2s, box-shadow .2s; }
.card--hover:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}
.card--accent {
  border-top: 2px solid var(--gold);
}

.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ============================================================
   HERO (Premium-Variante mit Bild + Sage-Overlay)
   ============================================================ */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-darker) 0%, var(--sage-dark) 60%, var(--sage-mid) 100%);
  padding: 120px 0 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(160deg, rgba(44,62,54,0.55) 0%, rgba(95,112,102,0.65) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=70');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(44,62,54,0.45) 0%, rgba(36,48,41,0.72) 100%);
  z-index: 2;
}
.hero .container { position: relative; z-index: 3; }
.hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.brand-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1;
}
.brand-wordmark .brand-first { font-weight: 500; }
.brand-wordmark .brand-second { font-style: italic; font-weight: 400; }
.brand-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-soft);
  margin: 28px auto;
}
.hero h1, .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 22px;
  line-height: 1.25;
}
.hero-subtitle, .hero .lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-trust {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-top: 28px;
}
.hero-trust strong { color: var(--white); font-weight: 500; }
.hero-trust .dot { display: none; }

/* Sub-Hero (kleine Headline-Sektionen auf Unterseiten) */
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero-grid > div { color: var(--text); }
.hero-grid .lead { color: var(--text-soft); margin: 0 0 28px; max-width: none; }
.hero-grid h1 { color: var(--sage-darker); text-transform: none; letter-spacing: 0.005em; font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 0.4em; }
.hero-grid .eyebrow { display: block; margin-bottom: 16px; }

.hero-visual {
  background: var(--white);
  border-radius: 0;
  padding: 32px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 880px) {
  .hero { padding: 80px 0 64px; min-height: 540px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   EYEBROW, BADGES, PRICE
   ============================================================ */

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-mid);
  margin-bottom: 18px;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px; background: var(--sage-mid);
  transform: translateY(-50%);
}
/* Ohne linken Einzug gibt es keinen Platz für den Deko-Strich -> ausblenden,
   sonst liegt er auf dem Text ("durchgestrichen"). */
.eyebrow[style*="padding-left:0"]::before,
.eyebrow[style*="padding-left: 0"]::before { display: none; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sage-mint);
  color: var(--sage-darker);
  border: 1px solid var(--sage-mint);
}
.badge--accent { background: transparent; color: var(--gold-dark); border-color: var(--gold-soft); }
.badge--success { background: transparent; color: var(--success); border-color: rgba(95, 126, 95, 0.4); }
.badge--soft { background: var(--sage-mint-soft); color: var(--text-soft); border-color: var(--border-soft); }

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--sage-darker);
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}
.price-tag .currency { font-size: 0.95rem; opacity: 0.6; font-weight: 500; font-family: 'Inter', sans-serif; }
.price-tag .strike { font-size: 0.95rem; color: var(--text-mute); text-decoration: line-through; font-weight: 400; margin-left: 10px; font-family: 'Inter', sans-serif; }

/* ============================================================
   SERVICE CARDS (mit Outline-Icons)
   ============================================================ */

.service-card {
  position: relative;
  padding: 44px 36px;
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--border-soft);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: border-color .25s, box-shadow .25s;
}
.service-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--sage-darker);
  margin-bottom: 14px;
}

/* Icon-Wrap: nur Outline, kein gefüllter Hintergrund */
.service-card .icon-wrap,
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 0;
  position: relative;
}
.service-card .icon-wrap svg,
.icon-wrap svg { stroke: var(--sage-dark); stroke-width: 1.25; }
.service-card .icon-wrap::after {
  content: ""; position: absolute; bottom: -10px; left: 0;
  width: 32px; height: 1px; background: var(--gold);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
}
.service-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */

.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 0;
}
.step:last-child { border-bottom: 0; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--sage);
  font-weight: 500;
  line-height: 1;
  width: 64px;
  text-align: center;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--sage-darker);
  margin: 0 0 8px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0;
  padding: 24px 0;
  margin-bottom: 0;
}
.faq details:first-child { border-top: 1px solid var(--border-soft); }
.faq summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--sage-darker);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--sage);
  font-weight: 300;
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--sage-darker);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 32px;
  margin-top: 0;
}
.site-footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.65; }
.site-footer .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin: 8px 0 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: 0.03em;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   FORMULARE
   ============================================================ */

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--sage-dark);
}
.form-group .help {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 6px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], input[type="password"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid var(--border);
  font-size: 0.98rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  transition: border .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 2px rgba(95, 112, 102, 0.15);
}
textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.check-group {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.check-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  min-height: 58px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.check-item:hover { border-color: var(--sage); background: var(--sage-mint-soft); }
/* Eigene, hochwertige Checkbox statt nativer Standard-Box */
.check-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex-shrink: 0;
  margin: 0;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  position: relative;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.check-item input[type="checkbox"]:checked {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.check-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.check-item input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.check-item span { font-size: 0.95rem; line-height: 1.35; color: var(--text); }
.check-item input:checked + span { color: var(--sage-darker); font-weight: 600; }
/* Sichtbarer Auswahl-Zustand der ganzen Karte */
.check-item:has(input:checked) {
  border-color: var(--gold-dark);
  background: #FBF6EC;
  box-shadow: inset 0 0 0 1px var(--gold-dark);
}

.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--white);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.2;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.radio-row label:hover { border-color: var(--sage); background: var(--sage-mint-soft); }
.radio-row label:has(input:checked) {
  border-color: var(--gold-dark);
  background: #FBF6EC;
  box-shadow: inset 0 0 0 1px var(--gold-dark);
  font-weight: 500;
}
.radio-row input {
  accent-color: var(--sage-dark);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  top: 0;
  vertical-align: middle;
}

/* Stepper */
.stepper {
  display: flex;
  gap: 0;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 0;
}
.stepper-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.stepper-item .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.82rem;
  font-family: 'Cormorant Garamond', serif;
}
.stepper-item.active {
  color: var(--sage-darker);
  font-weight: 500;
  border-bottom-color: var(--gold);
}
.stepper-item.active .num { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }
.stepper-item.done .num { background: var(--sage); color: var(--white); border-color: var(--sage); }

/* ============================================================
   QUIZ / LERNEN
   ============================================================ */

.learn-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
@media (max-width: 860px) { .learn-layout { grid-template-columns: 1fr; gap: 32px; } }

.learn-sidebar {
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--border-soft);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.learn-sidebar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage-mid);
  margin-top: 0;
  margin-bottom: 18px;
}
.learn-sidebar ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.learn-sidebar li {
  padding: 12px 0;
  border-radius: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 0;
  cursor: pointer;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.learn-sidebar li:last-child { border-bottom: 0; }
.learn-sidebar li:hover { color: var(--sage-darker); }
.learn-sidebar li.active { color: var(--sage-darker); font-weight: 500; }
.learn-sidebar li.done .check { background: var(--sage); color: var(--white); border-color: var(--sage); }
.learn-sidebar li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: var(--border-soft);
  border-radius: 0;
  overflow: hidden;
  margin-top: 14px;
}
.progress-bar > span {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width .3s;
}

/* Slide / Folie */
.slide {
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  padding: 60px 56px;
  min-height: 460px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.slide-brand {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.slide-brand span { font-style: normal; font-weight: 500; color: var(--sage-dark); }
.slide-title-bar {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 28px;
}
.slide-title-bar .eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--sage);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
  padding-left: 0;
}
.slide-title-bar .eyebrow::before { display: none; }
.slide h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--sage-darker);
  margin: 4px 0 0;
}
.slide ul { padding-left: 22px; margin: 0 0 18px; }
.slide ul li { margin-bottom: 10px; line-height: 1.65; }

.practice-box {
  margin-top: 16px;
  padding: 22px 26px;
  background: var(--sage-mint-soft);
  border-left: 2px solid var(--gold);
  border-radius: 0;
}
.practice-box strong { color: var(--gold-dark); font-weight: 600; }

.trainer-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: transparent;
  border-radius: 0;
  border: 1px dashed var(--sage);
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.trainer-note strong { color: var(--sage-dark); font-style: normal; }

.slide-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 14px;
}
.slide-counter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mute);
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  cursor: pointer;
  margin-bottom: 12px;
  transition: border .2s, background .2s;
  font-size: 0.98rem;
}
.quiz-option:hover { border-color: var(--sage); background: var(--sage-mint-soft); }
.quiz-option.selected { border-color: var(--sage-dark); background: var(--sage-mint-soft); }
.quiz-option.correct { border-color: var(--success); background: rgba(95,126,95,0.06); }
.quiz-option.wrong { border-color: var(--error); background: rgba(168,91,83,0.05); }
.quiz-option .letter {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.quiz-option.correct .letter { background: var(--success); color: var(--white); border-color: var(--success); }
.quiz-option.wrong .letter { background: var(--error); color: var(--white); border-color: var(--error); }

.quiz-feedback {
  margin-top: 14px;
  padding: 16px 20px;
  border-radius: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.quiz-feedback.correct { background: rgba(95,126,95,0.08); color: #3d5b3d; border-left: 2px solid var(--success); }
.quiz-feedback.wrong { background: rgba(168,91,83,0.06); color: #8a4640; border-left: 2px solid var(--error); }

/* ============================================================
   TOAST
   ============================================================ */

#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--sage-darker);
  color: var(--white);
  padding: 16px 22px;
  border-radius: 0;
  border-left: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.93rem;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 380px;
  animation: toastIn .25s ease;
}
.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: var(--error); }
@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   TABELLEN
   ============================================================ */

table.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: none;
}
table.table th, table.table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.93rem;
}
table.table th {
  background: var(--sage-mint-soft);
  color: var(--sage-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
table.table tr:last-child td { border-bottom: 0; }
table.table tr:hover td { background: var(--sage-mint-soft); }

/* ============================================================
   KALENDER-SLOTS
   ============================================================ */

.cal-week {
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--border-soft);
  padding: 28px;
  margin-bottom: 24px;
}
.cal-week-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cal-week-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin: 0;
  color: var(--sage-darker);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.cal-slot {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.92rem;
  text-align: left;
  transition: border .2s, background .2s;
  font-family: 'Inter', sans-serif;
}
.cal-slot strong {
  display: block;
  color: var(--sage-darker);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
}
.cal-slot small { color: var(--text-soft); font-size: 0.82rem; letter-spacing: 0.02em; }
.cal-slot:hover { border-color: var(--sage); background: var(--sage-mint-soft); }
.cal-slot.selected { border-color: var(--gold); background: rgba(201,155,69,0.06); }
.cal-slot:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   DASHBOARD / ADMIN
   ============================================================ */

.kpi {
  background: var(--white);
  border-radius: 0;
  padding: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: none;
}
.kpi .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--sage-mid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.kpi .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--sage-darker);
  margin-top: 6px;
  line-height: 1;
}
.kpi .delta { font-size: 0.85rem; color: var(--success); font-weight: 500; margin-top: 6px; display: inline-block; }
.kpi .delta.down { color: var(--error); }

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent;
  border: 0;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--sage-darker); }
.tab-btn.active { color: var(--sage-darker); border-color: var(--gold); font-weight: 500; }

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 220px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.bar-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: 0;
  position: relative;
  min-height: 8px;
}
.bar-chart .bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.76rem;
  color: var(--text-mute);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.bar-chart .bar::before {
  content: attr(data-value);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  color: var(--sage-darker);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   ANFRAGE STEP CONTENT
   ============================================================ */

.step-content { display: none; }
.step-content.active { display: block; }

.tier-result {
  padding: 48px;
  background: var(--sage-mint-soft);
  border-radius: 0;
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--gold);
}
.tier-result .tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-darker);
}
.tier-result .price-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 14px 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial {
  background: var(--white);
  border-radius: 0;
  padding: 36px;
  border: 0;
  border-left: 2px solid var(--gold);
  position: relative;
}
.testimonial::before {
  content: "\201E";
  position: absolute;
  top: 0;
  left: 14px;
  font-size: 4.5rem;
  color: var(--sage-mint);
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--sage-darker);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial .who {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--sage-darker);
  letter-spacing: 0.04em;
}
.testimonial .role {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ============================================================
   ZERTIFIKAT
   ============================================================ */

.cert-page {
  width: 100%;
  max-width: 1100px;
  margin: 32px auto;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 64px 80px;
  position: relative;
  font-family: 'Inter', sans-serif;
  aspect-ratio: 1.414 / 1;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cert-page::before,
.cert-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.cert-page::before {
  top: 24px; left: 24px; right: 24px; bottom: 24px;
  border: 1px solid var(--gold);
}
.cert-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid var(--sage-dark);
  z-index: 1;
}
.cert-corner.tl { top: 36px; left: 36px; border-right: 0; border-bottom: 0; }
.cert-corner.tr { top: 36px; right: 36px; border-left: 0; border-bottom: 0; }
.cert-corner.bl { bottom: 36px; left: 36px; border-right: 0; border-top: 0; }
.cert-corner.br { bottom: 36px; right: 36px; border-left: 0; border-top: 0; }

.cert-head {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cert-head .logo {
  justify-content: center;
  font-size: 2rem;
  color: var(--sage-darker);
}
.cert-head .logo .brand-first,
.cert-head .logo .brand-second { color: var(--sage-darker); }
.cert-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-top: 6px;
}
.cert-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--sage-darker);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 16px 0 6px;
  position: relative;
  z-index: 1;
}
.cert-subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cert-divider {
  width: 90px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.cert-divider::before, .cert-divider::after {
  content: ""; position: absolute; top: -3px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.cert-divider::before { left: -12px; }
.cert-divider::after { right: -12px; }

.cert-body {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.cert-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--sage-darker);
  margin: 18px 0;
  letter-spacing: 0.02em;
}
.cert-course {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 14px 0 22px;
  font-style: normal;
}
.cert-meta {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  margin-top: auto;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}
.cert-meta div { text-align: center; }
.cert-meta .label {
  font-family: 'Inter', sans-serif;
  color: var(--text-mute);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.cert-meta .value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--sage-darker);
  margin-top: 6px;
}
.signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--sage-darker);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 6px;
}

/* Druck-Stile fürs Zertifikat */
@media print {
  body { background: var(--white); }
  .site-header, .site-footer, .no-print { display: none !important; }
  .cert-print-wrap { background: #fff !important; padding: 0 !important; }
  .cert-page {
    box-shadow: none;
    margin: 0;
    max-width: 100%;
    aspect-ratio: auto;
    border-color: var(--gold);
  }
  @page { size: A4 landscape; margin: 8mm; }
}

/* ============================================================
   REGION MAP
   ============================================================ */

.region-map {
  background: var(--white);
  border-radius: 0;
  padding: 36px;
  border: 1px solid var(--border-soft);
}
.region-map svg { width: 100%; height: auto; }
.region-map svg .land { fill: var(--sage-mint); stroke: var(--sage); stroke-width: 1; }
.region-map svg .land.active { fill: var(--sage); stroke: var(--sage-dark); }
.region-map svg .pin { fill: var(--gold); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 62, 54, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
  animation: fadeIn .2s;
}
.modal {
  background: var(--white);
  border-radius: 0;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--gold);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.text-muted { color: var(--text-soft); }
.text-accent { color: var(--gold-dark); }
.text-petrol { color: var(--sage-dark); }
.text-sage { color: var(--sage-dark); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }

.headline-serif {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500;
  color: var(--sage-darker);
}
.headline-sage { color: var(--sage-darker); }
.body-text { font-family: 'Inter', sans-serif; color: var(--text); }

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  border: 0;
}

/* ============================================================
   PAGE HEADER (Sub-Seiten ohne Hero-Bild)
   ============================================================ */
.page-header {
  background: var(--sage-mint-soft);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border-soft);
}
.page-header h1 {
  text-align: center;
  margin: 0 auto 12px;
  max-width: 820px;
}
.page-header p {
  text-align: center;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-header .eyebrow {
  display: block;
  text-align: center;
  margin: 0 auto 18px;
  padding-left: 0;
}
.page-header .eyebrow::before { display: none; }

/* Hero Risk-Reversal-Mikrozeile unter dem CTA */
.hero-reassure {
  margin: 18px 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}

/* ============================================================
   FEATURE-SPLIT — Primär-Sektion (Pauschalbetreuung): Text + Visual.
   ============================================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split__text h2 { margin: 8px 0 16px; }
.feature-split__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--sage-mint-soft);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  padding: 56px 32px;
  color: var(--sage-dark);
}
.feature-split__caption {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.feature-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list-check li {
  position: relative;
  padding-left: 32px;
  color: var(--text-soft);
  line-height: 1.5;
}
.feature-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}
@media (max-width: 860px) {
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-split__visual { order: -1; padding: 40px 24px; }
}

/* ============================================================
   MOBILE STICKY-CTA-BAR — konstante Haupt-Aktion im Sichtbereich.
   Daumen-erreichbar (Fitts's Law). Nur auf kleinen Screens.
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-soft);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(36, 48, 41, 0.10);
}
.sticky-cta .btn { width: 100%; padding: 15px; font-size: 0.9rem; }
@media (max-width: 880px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; } /* Platz, damit Footer nicht verdeckt wird */
}

/* Bewegungsreduktion respektieren (Barrierefreiheit) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   ============================================================
   PREMIUM UPGRADE — Schulungs-Shop, Detail, Lernen
   Juni 2026 · Hero, Filter, Cover-Cards, Pakete, Lightbox
   ============================================================
   ============================================================ */

/* ---------- Shop-Hero ---------- */
.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  color: var(--white);
  isolation: isolate;
}
.shop-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(44,62,54,0.78) 0%, rgba(95,112,102,0.70) 65%, rgba(126,147,137,0.62) 100%),
    url('assets/covers/hero-shop.svg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.shop-hero .container { position: relative; }
.shop-hero .hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-left: 38px;
  position: relative;
  margin-bottom: 22px;
}
.shop-hero .hero-eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px; background: var(--gold-soft);
  transform: translateY(-50%);
}
.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 820px;
}
.shop-hero .hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  max-width: 680px;
  margin: 0 0 36px;
  font-weight: 300;
}
.shop-hero .hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: flex-end;
}
.shop-hero .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shop-hero .stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.shop-hero .stat .num .gold { color: var(--gold-soft); }
.shop-hero .stat .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
}
.trust-badge svg {
  flex-shrink: 0;
  width: 28px; height: 28px;
  stroke: var(--gold-soft);
  stroke-width: 1.4;
  fill: none;
}

@media (max-width: 720px) {
  .shop-hero { padding: 64px 0 56px; }
  .shop-hero .hero-stats { gap: 24px; }
  .shop-hero .stat .num { font-size: 1.9rem; }
}

/* ---------- Premium Bundle-Banner ---------- */
.bundle-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: linear-gradient(125deg, var(--sage-darker) 0%, var(--sage-dark) 60%, var(--sage-mid) 100%);
  color: var(--white);
  overflow: hidden;
  border: 0;
  box-shadow: 0 24px 60px rgba(44,62,54,0.18), 0 6px 20px rgba(44,62,54,0.10);
}
.bundle-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,155,69,0.25) 0%, rgba(201,155,69,0) 60%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,0.025) 18px 19px);
  pointer-events: none;
}
.bundle-banner__body {
  padding: 56px 48px 56px 60px;
  position: relative;
}
.bundle-banner__body .badge {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--gold-soft);
}
.bundle-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--white);
  margin: 14px 0 12px;
  letter-spacing: 0.005em;
}
.bundle-banner .lead {
  color: rgba(255,255,255,0.86);
  font-size: 1.02rem;
  margin: 0 0 24px;
  max-width: 540px;
  line-height: 1.65;
}
.bundle-banner__features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.bundle-banner__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bundle-banner__features span::before { content: "—"; color: var(--gold); }

.bundle-banner__price {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 56px 40px;
  background: rgba(0,0,0,0.18);
  border-left: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.bundle-banner__price .save-badge {
  display: inline-block;
  background: var(--gold);
  color: #2A1E05;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(201,155,69,0.35);
}
.bundle-banner__price .strike {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
}
.bundle-banner__price .price-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.bundle-banner__price .price-now .cur {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--gold-soft);
  font-weight: 400;
  vertical-align: top;
  margin-left: 4px;
}
.bundle-banner__price .price-note {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

@media (max-width: 880px) {
  .bundle-banner { grid-template-columns: 1fr; }
  .bundle-banner__body { padding: 40px 28px 30px; }
  .bundle-banner__price { padding: 36px 28px; border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .bundle-banner__price .price-now { font-size: 3rem; }
}

/* ---------- Filter-Bar ---------- */
.filter-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 18px;
  align-items: end;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.filter-bar__group { display: flex; flex-direction: column; gap: 6px; }
.filter-bar__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-mid);
}
.filter-bar__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
}
.chip:hover { border-color: var(--sage); color: var(--sage-darker); }
.chip.active {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.chip.active::before { content: "✓ "; font-weight: 600; }
.filter-bar input[type="search"] {
  padding: 11px 14px;
  font-size: 0.9rem;
  background: var(--white);
}
.filter-bar select {
  padding: 11px 14px;
  font-size: 0.9rem;
  background: var(--white);
}
.filter-result-count {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: -18px 0 24px;
}
@media (max-width: 860px) {
  .filter-bar { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Training-Cards mit Cover ---------- */
.t-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(44,62,54,0.10), 0 6px 16px rgba(44,62,54,0.06);
  border-color: var(--sage);
}
.t-card__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--sage-mint-soft);
  overflow: hidden;
}
.t-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.t-card:hover .t-card__cover img { transform: scale(1.04); }
.t-card__cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,62,54,0) 40%, rgba(44,62,54,0.55) 100%);
  pointer-events: none;
}
.t-card__pflicht {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.92);
  color: var(--sage-darker);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 2px solid var(--gold);
  backdrop-filter: blur(4px);
}
.t-card__premium {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #2A1E05;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  box-shadow: 0 2px 8px rgba(201,155,69,0.35);
}
.t-card__body {
  padding: 24px 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.t-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--sage-darker);
  margin: 0 0 8px;
  line-height: 1.25;
}
.t-card__short {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 0 0 14px;
  line-height: 1.5;
  flex: 1;
}
.t-card__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.t-card__stats .stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.t-card__stats .stat svg {
  width: 14px; height: 14px;
  stroke: var(--sage-mid);
  stroke-width: 1.6;
  fill: none;
}
.t-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.t-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
}
.t-card__price .cur {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  opacity: 0.7;
  margin-left: 2px;
}
.t-card__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.t-card__actions .btn { padding: 8px 14px; font-size: 0.72rem; }

/* Card-Grid: bessere Default-Größe für Cover-Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
@media (max-width: 720px) {
  .cards-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Branchen-Pakete ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.pkg-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pkg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(44,62,54,0.10);
  border-color: var(--sage);
}
.pkg-card__cover {
  aspect-ratio: 16/9;
  background: var(--sage-mint-soft);
  position: relative;
  overflow: hidden;
}
.pkg-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-card__label {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--sage-darker);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-left: 2px solid var(--gold);
}
.pkg-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.pkg-card__body h3 { font-size: 1.3rem; margin: 0; color: var(--sage-darker); }
.pkg-card__inhalte {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.pkg-card__inhalte li {
  position: relative;
  padding-left: 18px;
  margin: 0 0 4px;
}
.pkg-card__inhalte li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}
.pkg-card__priceline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
}
.pkg-card__priceline .now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
}
.pkg-card__priceline .now .cur { font-family: 'Inter', sans-serif; font-size: 0.8rem; opacity: 0.7; margin-left: 2px; }
.pkg-card__priceline .strike {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mute);
  text-decoration: line-through;
}
.pkg-card .btn { width: 100%; }

/* ---------- "So funktioniert es" 3 Schritte ---------- */
.how-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0;
  position: relative;
}
.how-strip__step {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  position: relative;
  text-align: center;
}
.how-strip__step + .how-strip__step { border-left: 0; }
.how-strip__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.how-strip__step h3 { font-size: 1.2rem; margin: 0 0 6px; color: var(--sage-darker); }
.how-strip__step p { font-size: 0.92rem; color: var(--text-soft); margin: 0; line-height: 1.55; }
@media (max-width: 720px) {
  .how-strip { grid-template-columns: 1fr; }
  .how-strip__step + .how-strip__step { border-left: 1px solid var(--border-soft); border-top: 0; }
}

/* ---------- Detail-Hero ---------- */
.detail-hero {
  position: relative;
  padding: 90px 0 64px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.detail-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: -2;
}
.detail-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(44,62,54,0.85) 0%, rgba(95,112,102,0.65) 100%);
  z-index: -1;
}
.detail-hero a.btn-link { color: var(--gold-soft); }
.detail-hero a.btn-link:hover { color: var(--white); }
.detail-hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 18px;
}
.detail-hero h1 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 16px 0 12px;
  letter-spacing: 0.005em;
}
.detail-hero .lead {
  color: rgba(255,255,255,0.86);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 0 28px;
  line-height: 1.65;
}
.detail-hero__statline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 24px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 28px;
  max-width: 640px;
}
.detail-hero__statline .s {
  display: flex; flex-direction: column; gap: 2px;
}
.detail-hero__statline .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1;
}
.detail-hero__statline .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.detail-hero__pricebox {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 28px 28px 26px;
  color: var(--white);
}
.detail-hero__pricebox .strike {
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  font-size: 0.9rem;
}
.detail-hero__pricebox .now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
  margin: 6px 0;
}
.detail-hero__pricebox .now .cur { color: var(--gold-soft); font-family: 'Inter', sans-serif; font-size: 1rem; margin-left: 4px; }
.detail-hero__pricebox .meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}
.detail-hero__pricebox .btn { width: 100%; }
.detail-hero__pricebox .btn + .btn { margin-top: 10px; }
.detail-hero__pricebox .btn-outline-light:hover { background: var(--white); color: var(--sage-darker); }

@media (max-width: 880px) {
  .detail-hero__grid { grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
}

/* ---------- Learning-objectives & Module-Liste auf Detail-Seite ---------- */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.objectives-grid li {
  position: relative;
  padding: 16px 18px 16px 50px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-soft);
}
.objectives-grid li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50%;
}

.module-list-visual {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  counter-reset: m;
}
.module-list-visual li {
  counter-increment: m;
  position: relative;
  padding: 18px 20px 18px 70px;
  border: 1px solid var(--border-soft);
  margin-bottom: 10px;
  background: var(--white);
  transition: border-color .2s, background .2s;
}
.module-list-visual li:hover { border-color: var(--sage); background: var(--cream); }
.module-list-visual li::before {
  content: counter(m, decimal-leading-zero);
  position: absolute;
  left: 20px; top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.module-list-visual strong { color: var(--sage-darker); display: block; margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; }
.module-list-visual .meta { font-size: 0.82rem; color: var(--text-mute); letter-spacing: 0.02em; }

/* ---------- Preview-Slide-Mini-Cards (anklickbar für Lightbox) ---------- */
.preview-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.preview-thumb {
  background: var(--white);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-align: left;
  font: inherit;
  padding: 0;
  display: block;
}
.preview-thumb:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.preview-thumb__head {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-mid) 100%);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preview-thumb__head .zoom { opacity: 0.6; }
.preview-thumb__body {
  padding: 18px 18px 22px;
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.preview-thumb__body strong {
  color: var(--sage-darker);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(44,62,54,0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: lightboxIn .25s ease;
}
.lightbox.open { display: flex; }
.lightbox__inner {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 48px 56px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.lightbox__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--sage-darker);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover { background: var(--sage-mint-soft); }
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Fade-in beim Scrollen ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Lade-Spinner Sage-Pulse ---------- */
.sage-spinner {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--sage-mint);
  border-top-color: var(--sage-dark);
  animation: sagespin 1s linear infinite;
}
@keyframes sagespin { to { transform: rotate(360deg); } }

/* ---------- Lernen-Viewer Upgrades ---------- */
.viewer-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(44,62,54,0.06), 0 2px 6px rgba(44,62,54,0.04);
  transition: box-shadow .25s;
}
.viewer-card:hover {
  box-shadow: 0 18px 40px rgba(44,62,54,0.09), 0 4px 12px rgba(44,62,54,0.05);
}

/* Trainer-Kommentar (Mint-Sage Hintergrund, Cormorant-Italic) */
.trainer-comment {
  margin: 20px 0 0;
  padding: 22px 28px;
  background: linear-gradient(180deg, var(--sage-mint-soft) 0%, rgba(216,228,220,0.6) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0;
}
.trainer-comment__head {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 8px;
}
.trainer-comment__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.trainer-comment__text .lead-words {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--sage-darker);
  margin-right: 4px;
}

/* Sticky Bottom-Bar Navigation für Viewer */
.viewer-nav-sticky {
  position: sticky;
  bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-soft);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 5;
}
.viewer-nav-sticky .progress-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-soft);
  flex: 1;
  max-width: 340px;
}
.viewer-nav-sticky .progress-mini .bar {
  flex: 1;
  height: 3px;
  background: var(--border-soft);
  position: relative;
  overflow: hidden;
}
.viewer-nav-sticky .progress-mini .bar > span {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width .3s;
}

/* Erfolgsseite — Konfetti CSS-only */
.success-screen {
  text-align: center;
  padding: 64px 32px 48px;
  position: relative;
  overflow: hidden;
}
.success-screen h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--sage-darker);
  margin: 18px 0 8px;
}
.success-screen .score {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
  margin: 12px 0;
}
.success-screen .score .total { color: var(--text-mute); font-size: 2.2rem; }
.confetti {
  position: absolute;
  width: 8px; height: 14px;
  top: -20px;
  opacity: 0;
  animation: confettiFall 3.5s ease-out forwards;
}
.confetti.c1 { background: var(--gold); }
.confetti.c2 { background: var(--sage); }
.confetti.c3 { background: var(--sage-dark); }
.confetti.c4 { background: var(--gold-soft); }
@keyframes confettiFall {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(560px) rotate(720deg); }
}

/* ---------- Slide-Quiz: anklickbare Karten ---------- */
.quiz-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}
@media (min-width: 720px) {
  .quiz-card-grid { grid-template-columns: 1fr 1fr; }
}

/* Sage / Rot Glow für Quiz-Feedback */
@keyframes glowOK {
  0%   { box-shadow: 0 0 0 0 rgba(95,126,95,0.0); }
  50%  { box-shadow: 0 0 24px 4px rgba(95,126,95,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(95,126,95,0); }
}
@keyframes glowKO {
  0%   { box-shadow: 0 0 0 0 rgba(168,91,83,0); }
  50%  { box-shadow: 0 0 24px 4px rgba(168,91,83,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(168,91,83,0); }
}
.quiz-option.correct { animation: glowOK 1.2s ease; }
.quiz-option.wrong { animation: glowKO 1.2s ease; }
