/* ==========================================================================
   Stute Consulting — Globales Stylesheet
   Design-System nach Briefing: Navy dominiert, Orange als Akzent.
   Fonts: Playfair Display (Display) + Inter (Body) — lokal gehostet.
   Mobile First. WCAG 2.2 AA.
   ========================================================================== */

/* ---------- 0. Lokale Schriftarten ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Farben (zwingend nach Briefing) */
  --color-navy:        #1B2A4A;
  --color-navy-deep:   #131F38;
  --color-orange:      #E87722;
  --color-orange-dark: #C2611B;
  --color-white:       #FFFFFF;
  --color-light-blue:  #D6E4F0;
  --color-gray:        #6B7280;
  --color-gray-soft:   #9CA3AF;
  --color-gray-line:   #E5E7EB;
  --color-bg:          #F4F7FB;

  /* Typografie */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --fs-xs:   0.875rem;   /* 14px */
  --fs-sm:   1rem;       /* 16px */
  --fs-md:   1.125rem;   /* 18px */
  --fs-lg:   1.375rem;   /* 22px */
  --fs-xl:   1.875rem;   /* 30px */
  --fs-2xl:  2.5rem;     /* 40px */
  --fs-3xl:  3.5rem;     /* 56px */

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 16px rgba(27,42,74,0.08);
  --shadow-lg: 0 12px 40px rgba(27,42,74,0.12);

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* Globale Schriftgrößen-Skalierung +15% (16px → 18.4px). Alle rem-basierten Werte skalieren mit. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-size: 115%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--color-navy);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-navy);
  text-decoration: underline;
  text-decoration-color: rgba(27,42,74,0.25);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
a:hover { color: var(--color-orange); text-decoration-color: var(--color-orange); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--sp-4);
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, var(--fs-3xl)); line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3.5vw, var(--fs-2xl)); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

p { margin: 0 0 var(--sp-4); }

ul, ol { padding-left: 1.25rem; margin: 0 0 var(--sp-4); }
li { margin-bottom: var(--sp-2); }

/* ---------- 3. Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--sp-3) var(--sp-4);
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); outline: 2px solid var(--color-orange); }

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- 4. Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--sp-16) 0; }
.section--lg { padding: var(--sp-24) 0; }
/* Engere Sektion: weniger Weissraum, wenn Bloecke dicht aufeinander folgen sollen */
.section--tight { padding: var(--sp-12) 0; }
.section--navy { background: var(--color-navy); color: var(--color-white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--color-white); }
/* Fliesstext auf Dunkelblau lesbar halten (statt Standard-Grau) */
.section--navy .lead, .section--navy .section-header__lead, .section--navy p { color: var(--color-light-blue); }
.section--bg { background: var(--color-bg); }
.section--light-blue { background: var(--color-light-blue); }
.section--orange { background: var(--color-orange); color: var(--color-navy); }
.section--orange h1, .section--orange h2, .section--orange h3 { color: var(--color-navy); }
.section--orange a { color: var(--color-navy); text-decoration-color: rgba(27,42,74,0.4); }
.section--orange a:hover { color: var(--color-navy-deep); }

@media (min-width: 768px) {
  .container { padding: 0 var(--sp-8); }
  /* Vertikalen Rhythmus auf Desktop etwas straffen (mobil bleibt wie gehabt) */
  .section { padding: var(--sp-12) 0; }
  .section--lg { padding: var(--sp-16) 0; }
  .section--tight { padding: var(--sp-8) 0; }
}

/* ---------- 5. Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-gray-line);
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-top: var(--sp-4);
  padding-bottom: var(--sp-4);
}
.site-header__logo { display: inline-block; flex-shrink: 0; }
.site-header__logo svg { height: 44px; width: auto; }
.site-header__logo img { height: 56px; width: auto; display: block; }
.site-header__logo:hover { text-decoration: none; }
@media (min-width: 768px) { .site-header__logo img { height: 64px; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-navy);
}
.nav-toggle__bars { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor;
  transition: transform var(--transition), top var(--transition);
}
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-line);
  box-shadow: var(--shadow-md);
}
.site-nav.is-open { display: block; }
.site-nav__list {
  list-style: none;
  margin: 0; padding: var(--sp-4);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.site-nav__list li { margin: 0; }
.site-nav__list a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.site-nav__list a:hover, .site-nav__list a[aria-current="page"] {
  background: var(--color-bg);
  color: var(--color-orange);
}
.site-nav__cta { margin-top: var(--sp-2); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: var(--sp-2);
  }
  .site-nav__list a {
    padding: var(--sp-2) var(--sp-3);
    font-size: var(--fs-sm);
  }
  .site-nav__cta { margin: 0 0 0 var(--sp-4); }
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  min-height: 48px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--color-orange); color: var(--color-white); border-color: var(--color-orange); }
.btn--primary:hover { background: var(--color-orange-dark); border-color: var(--color-orange-dark); color: var(--color-white); }

.btn--navy { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }
.btn--navy:hover { background: var(--color-navy-deep); border-color: var(--color-navy-deep); color: var(--color-white); }

.btn--outline { background: transparent; color: var(--color-navy); border-color: var(--color-navy); }
.btn--outline:hover { background: var(--color-navy); color: var(--color-white); }

.btn--outline-white { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn--outline-white:hover { background: var(--color-white); color: var(--color-navy); }

.btn--light-blue { background: var(--color-light-blue); color: var(--color-navy); border-color: var(--color-light-blue); }
.btn--light-blue:hover { background: #b8d0e8; border-color: #b8d0e8; color: var(--color-navy); }

.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--fs-md); min-height: 56px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
  padding: var(--sp-16) 0 var(--sp-24);
  display: flex;
  align-items: center;
}
.hero--with-image { min-height: 70vh; }
@media (min-width: 768px) { .hero--with-image { min-height: 78vh; } }
/* Inhalt an den unteren Bildrand setzen (schlanker Hero) */
.hero--bottom { align-items: flex-end; padding-bottom: var(--sp-8); }
@media (min-width: 768px) { .hero--bottom { padding-bottom: var(--sp-12); } }
/* Höherer Hero (rund 20 %), damit das Porträt oben nicht abgeschnitten wird */
.hero--tall.hero--with-image { min-height: 84vh; }
@media (min-width: 768px) { .hero--tall.hero--with-image { min-height: 94vh; } }
/* Flacherer Hero (rund 15 % weniger), Text sitzt etwas höher über dem Bildrand */
.hero--short.hero--with-image { min-height: 60vh; }
@media (min-width: 768px) { .hero--short.hero--with-image { min-height: 66vh; } }
.hero--short.hero--bottom { padding-bottom: var(--sp-12); }
@media (min-width: 768px) { .hero--short.hero--bottom { padding-bottom: var(--sp-16); } }

/* Familien-Hero, mobil: Text nach oben und eigenes Hochformat, in dem die beiden
   Figuren rechts der Mitte stehen. Das Querformat gibt links zu wenig Raum her. */
@media (max-width: 767px) {
  .hero--familien.hero--bottom {
    align-items: flex-start;
    padding-top: var(--sp-4);
    padding-bottom: var(--sp-16);
  }
  .hero--familien.hero--with-image::before {
    background-image: url('/assets/images/hero-familien-mobil.webp');
    background-position: center bottom;
  }
}
.hero--with-image::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: var(--hero-pos, center);
  opacity: 0.85;
  z-index: 0;
}
.hero--with-image::after {
  content: "";
  position: absolute; inset: 0;
  /* Vertikales Overlay: oben dunkler für Headline-Lesbarkeit, mittig dezent, unten dunkler für Button-Kontrast */
  background: linear-gradient(180deg, rgba(19,31,56,0.78) 0%, rgba(19,31,56,0.30) 45%, rgba(19,31,56,0.65) 100%);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--sp-6);
}
.hero__title {
  color: var(--color-white);
  margin-bottom: var(--sp-6);
  max-width: 18ch;
}
.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, var(--fs-lg));
  color: var(--color-light-blue);
  max-width: 60ch;
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}
.hero__meta {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-8);
}
/* Formulare auf dunkelblauem Grund: Beschriftungen und Hinweise hell,
   sonst stehen dunkelblaue Labels unsichtbar auf Navy. */
.section--navy .form label { color: var(--color-white); }
.section--navy .form__check span { color: var(--color-light-blue); }
.section--navy .form__check a { color: var(--color-white); }
.section--navy .form__hint { color: var(--color-light-blue); }

/* Zwei Formularfelder nebeneinander (Vorname/Nachname), ab Tablet-Breite */
.form__cols { display: grid; gap: var(--sp-4); }
@media (min-width: 560px) { .form__cols { grid-template-columns: 1fr 1fr; } }

/* "oder"-Trenner zwischen Webinar-Formular und Erstgespraech-Button */
.webinar-oder {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-8) 0 var(--sp-6);
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
}
.webinar-oder::before, .webinar-oder::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.webinar-direkt {
  text-align: center;
  color: var(--color-light-blue);
  margin-bottom: var(--sp-2);
}
.webinar-direkt .btn { margin-top: var(--sp-3); }

/* Terminhinweis ueber Anmeldeformularen (auf dunkelblauem Grund) */
.termin-hinweis {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-6);
  border-left: 3px solid var(--color-orange);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.termin-hinweis strong { color: var(--color-white); }

/* Mobiler Dauer-Knopf: bei langen Landingpages muss der naechste Schritt
   immer erreichbar sein, ohne dass jemand zurueckscrollen muss. */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 1rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-line);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  display: none;
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body:has(.sticky-cta) { padding-bottom: 4.75rem; }
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
}
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; gap: var(--sp-4); }
}
@media (min-width: 768px) {
  .hero { padding: var(--sp-24) 0 var(--sp-32); }
}

/* Zwei-Wege-Auswahl direkt unter dem Hero */
.choice-section { padding-top: var(--sp-8); padding-bottom: var(--sp-8); }
.choice-lead {
  font-size: var(--fs-lg);
  color: var(--color-navy);
  max-width: 62ch;
  margin: 0 auto var(--sp-8);
  text-align: center;
  line-height: 1.5;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 768px) {
  .choice-grid { grid-template-columns: 1fr 1fr; }
}
.choice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
}
.choice-card__title { margin: 0; }
.choice-card__text { margin: 0; flex-grow: 1; }
.choice-card .btn { margin-top: var(--sp-2); }
.choice-card--blue { background: var(--color-light-blue); color: var(--color-navy); }
/* Weisse Variante fuer Karten, die selbst auf hellblauem Grund stehen */
.choice-card--weiss { background: var(--color-white); color: var(--color-navy); }
.choice-card--navy { background: var(--color-navy); color: var(--color-white); }
.choice-card--navy .choice-card__title { color: var(--color-white); }

/* Kompakte Variante: die Karten sollen sich der Kernaussage unterordnen,
   nicht mit ihr konkurrieren. Kleinere Titel, weniger Polsterung. */
.choice-grid--kompakt .choice-card { padding: var(--sp-6); gap: var(--sp-3); }
.choice-grid--kompakt .choice-card__title { font-size: var(--fs-md); }
.choice-grid--kompakt .choice-card__text { font-size: var(--fs-sm); color: var(--color-gray); }
.wege-lead {
  text-align: center;
  font-weight: 600;
  color: var(--color-navy);
  margin: var(--sp-8) 0 var(--sp-4);
}
/* Die Kernaussage traegt den Abschnitt, deshalb eine Stufe groesser */
.plan-titel { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }

/* Hero Split (Bild + Text) */
.hero-split { display: grid; gap: var(--sp-8); align-items: center; }
@media (min-width: 1024px) {
  .hero-split { grid-template-columns: 1.2fr 1fr; gap: var(--sp-16); }
}
.hero-split__image {
  background: var(--color-light-blue);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: var(--fs-xs);
  font-style: italic;
  text-align: center;
  padding: var(--sp-4);
  border: 2px dashed rgba(27,42,74,0.15);
}

/* ---------- 8. Cards ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--color-light-blue); }
.card__icon {
  width: 48px; height: 48px;
  margin-bottom: var(--sp-4);
  color: var(--color-orange);
}
.card__title { margin-bottom: var(--sp-3); }
.card__text { color: var(--color-gray); margin-bottom: var(--sp-4); flex-grow: 1; }
.card__link {
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  margin-top: auto;
}
.card__link::after { content: " →"; color: var(--color-orange); transition: margin-left var(--transition); }
.card__link:hover::after { margin-left: 4px; }

.card--dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.card--dark .card__title { color: var(--color-white); }
.card--dark .card__text  { color: var(--color-light-blue); }
.card--dark .card__link  { color: var(--color-white); }

/* Card mit Bild-Header */
.card--with-image { padding: 0; overflow: hidden; }
.card--with-image .card__image-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-light-blue);
}
.card--with-image .card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.card--with-image:hover .card__image-wrap img { transform: scale(1.04); }
.card--with-image .card__body { padding: var(--sp-6); display: flex; flex-direction: column; flex-grow: 1; }

/* Weitere Formate (uebergangsweise, unter den Kacheln) */
.more-formats { margin-top: var(--sp-12); text-align: center; }
.more-formats__label { color: var(--color-gray); font-size: var(--fs-sm); margin-bottom: var(--sp-3); }
.more-formats__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  justify-content: center;
}
.more-formats__list a { color: var(--color-navy); font-weight: 600; text-decoration: none; }
.more-formats__list a:hover { color: var(--color-orange); text-decoration: underline; }

/* Card-Badge (kleines Label) */
.card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray);
  background: var(--color-bg);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
  align-self: flex-start;
}
.card__badge--accent { background: var(--color-orange); color: var(--color-white); }

/* Hervorgehobene Card (Coaching-Termin als Empfehlung) */
.card--featured {
  border-color: var(--color-orange);
  box-shadow: 0 8px 30px rgba(232,119,34,0.15);
}
.card--featured:hover { box-shadow: 0 12px 40px rgba(232,119,34,0.22); }

/* Workshop-Card mit Datum-Header */
.workshop-card { padding: 0; overflow: hidden; }
.workshop-card .card__body { padding: var(--sp-6); display: flex; flex-direction: column; flex-grow: 1; }
.workshop-card__date {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  font-family: var(--font-display);
  border-bottom: 4px solid var(--color-orange);
}
.workshop-card__day {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.workshop-card__month {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
  color: var(--color-light-blue);
  font-family: var(--font-body);
}

/* Form-Notices (Erfolg, Geo-Block, Rate-Limit) */
.form-notice {
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-6);
  border-left: 4px solid var(--color-orange);
  background: var(--color-bg);
}
.form-notice strong { display: block; margin-bottom: var(--sp-1); color: var(--color-navy); }
.form-notice p { margin: 0; color: var(--color-gray); font-size: var(--fs-xs); }
.form-notice--block   { border-left-color: #DC2626; background: #FEF2F2; }
.form-notice--block strong { color: #B91C1C; }
.form-notice--warn    { border-left-color: #F59E0B; background: #FFFBEB; }
.form-notice--warn strong { color: #92400E; }
.form-notice--success { border-left-color: #16A34A; background: #F0FDF4; }
.form-notice--success strong { color: #166534; }

/* ---------- Trust-Bar (4 Spalten mit Icons) ---------- */
.trust-bar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: 0;
}
.trust-bar svg {
  width: 28px; height: 28px;
  color: var(--color-orange);
  flex-shrink: 0;
}
.trust-bar span {
  display: flex;
  flex-direction: column;
  font-size: var(--fs-xs);
  color: var(--color-gray);
  line-height: 1.3;
}
.trust-bar strong {
  display: block;
  color: var(--color-navy);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}
@media (min-width: 1024px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Workshop-Tiles (mit Bild + Datum-Overlay) ---------- */
.workshop-tile {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.workshop-tile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.workshop-tile__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-light-blue);
}
.workshop-tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.workshop-tile:hover .workshop-tile__media img { transform: scale(1.06); }
.workshop-tile__date {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  background: var(--color-white);
  color: var(--color-navy);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-display);
  border-top: 4px solid var(--color-orange);
  box-shadow: var(--shadow-md);
  min-width: 76px;
}
.workshop-tile__day {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.workshop-tile__month {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--color-orange);
  font-family: var(--font-body);
  font-weight: 700;
}
.workshop-tile__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.workshop-tile__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  margin: 0 0 var(--sp-3);
  color: var(--color-navy);
  line-height: 1.2;
}
.workshop-tile__text {
  color: var(--color-gray);
  margin: 0 0 var(--sp-4);
  flex-grow: 1;
}
.workshop-tile__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--fs-xs);
  color: var(--color-navy);
  border-top: 1px solid var(--color-gray-line);
  padding-top: var(--sp-3);
}
.workshop-tile__meta li {
  margin: 0;
  font-weight: 500;
}

/* ---------- Anmeldung-Layout (Side-by-Side) ---------- */
.anmeldung-layout {
  display: grid;
  gap: var(--sp-12);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .anmeldung-layout {
    grid-template-columns: 0.85fr 1fr;
    gap: var(--sp-16);
  }
}
.anmeldung-aside {
  position: relative;
}
@media (min-width: 1024px) {
  .anmeldung-aside { position: sticky; top: 100px; }
}
.anmeldung-aside h2 {
  margin-bottom: var(--sp-4);
}
.anmeldung-aside .lead { margin-bottom: var(--sp-4); }
.anmeldung-aside__benefits {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.anmeldung-aside__benefit {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--color-navy);
}
.anmeldung-aside__benefit svg {
  width: 20px; height: 20px;
  color: var(--color-orange);
  flex-shrink: 0;
  background: rgba(232,119,34,0.12);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}
.anmeldung-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .anmeldung-form-wrap { padding: var(--sp-12); }
}
.anmeldung-form-wrap .form { max-width: none; }

/* ---------- Hero-Workshop-Spezial ---------- */
.hero--workshop {
  min-height: 56vh;
}
@media (min-width: 768px) {
  .hero--workshop { min-height: 60vh; }
}

/* Form-Radio-Group (Workshop-Auswahl) */
.form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 var(--sp-6);
}
.form fieldset legend {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--sp-3);
  padding: 0;
}
.form__radio-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form__radio {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.form__radio:hover { border-color: var(--color-orange); background: var(--color-bg); }
.form__radio input[type="radio"] {
  width: 20px; height: 20px; min-height: 20px;
  margin-top: 0.15em; flex-shrink: 0;
  accent-color: var(--color-orange);
}
.form__radio input[type="radio"]:checked + span { color: var(--color-navy); }
.form__radio:has(input:checked) { border-color: var(--color-orange); background: rgba(232,119,34,0.04); }

.card-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 9. Drei Säulen / Pillars ---------- */
.pillar {
  text-align: center;
  padding: var(--sp-6);
}
.pillar__icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto var(--sp-6);
  background: var(--color-light-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-navy);
}
.pillar__icon-wrap svg { width: 40px; height: 40px; }
.pillar__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}
.pillar__text { color: var(--color-gray); }

/* ---------- 9b. Qualifikationen / Credentials ---------- */
.cred-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 560px)  { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cred-grid { grid-template-columns: repeat(4, 1fr); } }
.cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  background: var(--color-white);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-4);
  box-shadow: var(--shadow-sm);
}
.cred__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-light-blue);
  color: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.cred__icon svg { width: 28px; height: 28px; }
.cred__label { font-weight: 600; color: var(--color-navy); line-height: 1.3; }
.cred__sub { display: block; font-weight: 400; font-size: var(--fs-sm); color: var(--color-gray); margin-top: 2px; }

/* ---------- 9c. Über mich: Zwei Welten (Farbkarten) ---------- */
.two-worlds {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  margin-top: var(--sp-8);
}
@media (min-width: 768px) { .two-worlds { grid-template-columns: repeat(2, 1fr); } }
.world-card {
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.world-card__eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: var(--sp-3);
}
.world-card h3 { margin-bottom: var(--sp-3); }
.world-card__list { list-style: none; margin: var(--sp-4) 0 0; padding: 0; }
.world-card__list li { padding: 6px 0 6px 26px; position: relative; }
.world-card__list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px; border-radius: 50%;
}
.world-card--business { background: var(--color-navy); color: var(--color-light-blue); }
.world-card--business h3 { color: var(--color-white); }
.world-card--business .world-card__eyebrow { color: var(--color-orange); }
.world-card--business .world-card__list li::before { background: var(--color-orange); }
.world-card--family { background: var(--color-light-blue); color: var(--color-navy); }
.world-card--family h3 { color: var(--color-navy); }
.world-card--family .world-card__eyebrow { color: var(--color-orange-dark); }
.world-card--family .world-card__list li::before { background: var(--color-navy); }

/* ---------- 9d. Statement-Band ---------- */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  margin: 0 auto var(--sp-4);
  max-width: 24ch;
}
.section--navy .statement { color: var(--color-white); }
.statement__accent { color: var(--color-orange); }

/* ---------- 9e. Timeline (Werdegang) ---------- */
.timeline { list-style: none; margin: var(--sp-6) 0 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: var(--color-light-blue);
}
.timeline li { position: relative; padding: 0 0 var(--sp-6) var(--sp-8); color: var(--color-gray); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--color-white); border: 3px solid var(--color-orange);
}
.timeline strong { color: var(--color-navy); }

/* ---------- 9f. Über-mich: Navy-Split-Hero (wie Kennenlernen) ---------- */
.about-hero.section { padding-top: 2.5rem; padding-bottom: calc(2.5rem + 0.5cm); }
.about-hero .hero__eyebrow { margin-bottom: var(--sp-6); }
.about-hero__grid { display: grid; gap: var(--sp-8); align-items: start; }
@media (min-width: 768px) {
  .about-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-16); align-items: stretch; }
  /* Text über die volle Bildhöhe verteilen: Name oben bündig, letzte Zeile unten bündig */
  .about-hero__grid > div:first-child { display: flex; flex-direction: column; justify-content: space-between; }
  /* Foto-Oberkante auf die Oberkante der großen Namensschrift bringen */
  .about-hero__photo { margin-top: 18px; }
  /* Letzte Textzeile optisch auf die untere Bildkante ziehen (Zeilenluft ausgleichen) */
  .about-hero__grid > div:first-child .hero__subtitle { margin-bottom: -0.45em; }
}
@media (max-width: 767px) { .about-hero__photo { order: -1; } }
.about-hero__role {
  color: var(--color-orange); font-weight: 700; letter-spacing: 0.04em;
  margin: 0 0 var(--sp-5);
}
.section--navy .about-hero__role { color: var(--color-orange); }
.about-hero__grid .hero__subtitle { font-size: clamp(0.96rem, 1.2vw, 1.06rem); line-height: 1.6; max-width: 48ch; margin-bottom: 0; }
.about-hero__photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.section--navy .breadcrumb a { color: var(--color-light-blue); }
.section--navy .breadcrumb a:hover { color: var(--color-white); }
.section--navy .breadcrumb li[aria-current="page"] { color: rgba(255,255,255,0.7); }

/* ---------- 9g. Werte-Karten (gleiche Höhe) ---------- */
.value-card {
  background: var(--color-white); border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  padding: var(--sp-8) var(--sp-6);
  height: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.value-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--color-light-blue); color: var(--color-orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5);
}
.value-card__icon svg { width: 30px; height: 30px; }
.value-card__title { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--color-navy); margin-bottom: var(--sp-3); }
.value-card__text { color: var(--color-gray); margin: 0; }

/* ---------- 9h. Zertifikate: kompaktes Karussell (Wisch-Leiste) ---------- */
.cert-carousel { margin-top: var(--sp-8); }
.cert-strip {
  display: flex; gap: var(--sp-4);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: var(--sp-2) var(--sp-2) var(--sp-4);
  scroll-padding-inline: var(--sp-2);
  scrollbar-width: none; -ms-overflow-style: none;
}
.cert-strip::-webkit-scrollbar { display: none; }
.cert-chip {
  flex: 0 0 auto; width: 180px; scroll-snap-align: start;
  background: var(--color-white); border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  padding: var(--sp-6) var(--sp-4); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
}
.cert-chip--link { text-decoration: none; color: inherit; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); }
.cert-chip--link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cert-chip--logo { justify-content: center; padding: var(--sp-5) var(--sp-4); width: 210px; }
.cert-chip__logo { display: block; width: auto; height: 210px; max-width: 100%; margin: 0 auto; }
.cert-chip__link { display: flex; align-items: center; justify-content: center; width: 100%; text-decoration: none; }
.cert-chip__link img { transition: transform var(--transition); }
.cert-chip__link:hover img { transform: translateY(-2px); }
.cert-chip__icon {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: var(--sp-1);
  background: var(--color-light-blue); color: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
}
.cert-chip__icon svg { width: 22px; height: 22px; }
.cert-chip__title { font-weight: 600; color: var(--color-navy); font-size: 0.98rem; line-height: 1.3; display: block; min-height: 2.6em; }
.cert-chip__sub { color: var(--color-gray); font-size: var(--fs-xs); }
.cert-chip__img { width: 100%; border-radius: var(--radius-md); }
.cert-carousel__nav { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-2); }
.cert-arrow {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--color-gray-line); background: var(--color-white); color: var(--color-navy);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cert-arrow:hover { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }
.cert-arrow svg { width: 20px; height: 20px; }
.cert-arrow:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 2px; }

/* ---------- 10. Testimonials ---------- */
.testimonial {
  background: var(--color-white);
  border-left: 4px solid var(--color-orange);
  padding: var(--sp-6) var(--sp-8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
  flex-grow: 1;
}
.testimonial__stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 0.05em; margin-bottom: var(--sp-3); }
.testimonial__author { font-weight: 600; color: var(--color-navy); }
.testimonial__role { color: var(--color-gray); font-size: var(--fs-xs); }

/* ---------- 11. Lists / Features ---------- */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  position: relative;
  padding-left: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 14px; height: 2px;
  background: var(--color-orange);
}

/* Numbered Steps */
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li {
  position: relative;
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-12);
  border-bottom: 1px solid var(--color-gray-line);
  counter-increment: step;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-orange);
  font-weight: 600;
}
.steps li:last-child { border-bottom: 0; }
.steps strong { display: block; margin-bottom: var(--sp-1); color: var(--color-navy); font-size: var(--fs-md); }

/* ---------- 12. Section Header ---------- */
.section-header {
  max-width: 700px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}
.section-header--left { text-align: left; margin-left: 0; }
.section-header__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--sp-3);
}
.section-header__title { margin-bottom: var(--sp-4); }
.section-header__lead {
  font-size: var(--fs-md);
  color: var(--color-gray);
  line-height: 1.6;
}

/* ---------- 13. Über-Mich-Teaser ---------- */
.about-teaser { display: grid; gap: var(--sp-8); align-items: center; }
@media (min-width: 1024px) {
  .about-teaser { grid-template-columns: 1fr 1.4fr; gap: var(--sp-16); }
}
.about-teaser__image {
  aspect-ratio: 4 / 5;
  background: var(--color-light-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: var(--fs-xs);
  font-style: italic;
  text-align: center;
  padding: var(--sp-4);
  border: 2px dashed rgba(27,42,74,0.15);
  overflow: hidden;
}
/* Wenn ein Bild drin ist: kein Border, kein Padding, Bild füllt komplett */
.about-teaser__image--photo {
  padding: 0;
  border: 0;
  background: var(--color-navy);
}
.about-teaser__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- 13b. Video-Platzhalter ---------- */
.video-frame {
  position: relative;
  padding-top: 56.25%; /* 16:9 per Padding, funktioniert auch ohne aspect-ratio */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-navy);
  margin: 0;
}
.video-frame img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.7;
}
.video-frame__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: linear-gradient(180deg, rgba(27,42,74,0.15) 0%, rgba(27,42,74,0.55) 100%);
  color: var(--color-white);
}
.video-frame__button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame__button svg { width: 32px; height: 32px; margin-left: 4px; }
.video-frame__note {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Expertenblock unter dem Video: fuer alle, die das Video nicht starten */
.expert-note { margin-top: var(--sp-8); }
.expert-note .lead { margin-bottom: var(--sp-6); }

/* ---------- 13c. KI-Kennzeichnung (On-Bild-Badge) ---------- */
.ai-badge {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 0.4em;
  height: 26px; padding: 0 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; line-height: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.28);
  pointer-events: none; user-select: none;
}
.ai-badge__ai { font-weight: 800; letter-spacing: 0.04em; }
.ai-badge__word { text-transform: uppercase; letter-spacing: 0.1em; margin-right: -0.1em; font-size: 9.5px; font-weight: 700; }
.ai-badge--navy { background: var(--color-navy); color: #fff; }
.ai-badge--navy .ai-badge__word { color: #e7edf5; }
.ai-badge--light { background: var(--color-light-blue); color: var(--color-navy); }
.ai-badge--accent { background: var(--color-navy); color: #fff; }
.ai-badge--accent .ai-badge__ai { color: var(--color-orange); }
.ai-badge--br { right: 14px; bottom: 14px; }
.ai-badge--bl { left: 14px; bottom: 14px; }
.ai-badge--tr { right: 14px; top: 14px; }
.ai-badge--tl { left: 14px; top: 14px; }
/* kompaktes Rundzeichen fuer sehr kleine Flaechen */
.ai-chip { position: absolute; z-index: 4; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; letter-spacing: 0.03em; box-shadow: 0 1px 4px rgba(0,0,0,0.28); pointer-events: none; }
.ai-chip--navy { background: var(--color-navy); color: #fff; }
.ai-chip--light { background: var(--color-light-blue); color: var(--color-navy); }
/* positionierende Eltern */
.hero { position: relative; }
.card--with-image .card__image-wrap { position: relative; }
@media (max-width: 640px) {
  .ai-badge { height: 21px; padding: 0 8px; font-size: 9.5px; gap: 0.35em; }
  .ai-badge__word { font-size: 8px; }
  .ai-badge--br, .ai-badge--bl { bottom: 10px; }
  .ai-badge--br, .ai-badge--tr { right: 10px; }
  .ai-badge--bl, .ai-badge--tl { left: 10px; }
  .ai-chip { width: 21px; height: 21px; font-size: 9.5px; }
}

/* ---------- 14. CTA-Block ---------- */
.cta-block {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--sp-16) var(--sp-4);
  text-align: center;
  border-radius: var(--radius-lg);
}
.cta-block h2 { color: var(--color-white); margin-bottom: var(--sp-4); }
.cta-block p { color: var(--color-light-blue); max-width: 50ch; margin: 0 auto var(--sp-8); font-size: var(--fs-md); }

/* ---------- 15. FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--color-gray-line);
  padding: var(--sp-4) 0;
}
.faq details:first-of-type { border-top: 1px solid var(--color-gray-line); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-navy);
  padding-right: var(--sp-8);
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  width: 24px; height: 24px;
  font-size: 1.5rem;
  color: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) {
  margin-top: var(--sp-3);
  color: var(--color-gray);
  line-height: 1.65;
}

/* ---------- 16. Forms ---------- */
.form { max-width: 560px; }
.form__row { margin-bottom: var(--sp-4); }
.form label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--color-navy);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.15);
}
.form__hint { font-size: var(--fs-xs); color: var(--color-gray); margin-top: var(--sp-1); }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--color-gray);
}
.form__check input {
  width: 20px; height: 20px;
  min-height: 20px;
  margin-top: 0.15em;
  flex-shrink: 0;
}
.form__honeypot { position: absolute; left: -9999px; }

/* Rueckmeldung nach dem Absenden eines Formulars */
.form__meldung {
  margin-bottom: var(--sp-6);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-orange);
  background: var(--color-light-blue);
  color: var(--color-navy);
  font-size: var(--fs-sm);
  line-height: 1.55;
  /* Zeilenumbrueche aus der Servermeldung uebernehmen */
  white-space: pre-line;
}
/* Auf dunkelblauem Grund faerbt eine allgemeine Regel jeden Absatz hell.
   Die Meldung steht aber auf hellem Kasten und braucht dunkle Schrift. */
.section--navy .form__meldung { color: var(--color-navy); }
.form__meldung--fehler {
  background: #FBE9E7;
  border-left-color: #B3261E;
}
.form--sendet { opacity: 0.6; pointer-events: none; }

/* ---------- 17. Pain Points / Schmerzpunkte ---------- */
.painpoints {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .painpoints { grid-template-columns: repeat(2, 1fr); } }
.painpoint {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: var(--fs-md);
  line-height: 1.4;
  border-left: 4px solid var(--color-orange);
}

/* ---------- 18. Footer ---------- */
.site-footer {
  background: #D6E4F0; /* Rückfallfarbe, falls CSS-Variablen nicht greifen */
  background: var(--color-light-blue);
  color: var(--color-navy);
  padding: var(--sp-16) 0 var(--sp-8);
}
.site-footer a { color: var(--color-navy); text-decoration: none; }
.site-footer a:hover { color: var(--color-orange); }
.footer-grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-12);
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
/* Spaltenbeschriftung in der Fusszeile. Bewusst kein h4: das sind
   Navigationslabels, keine inhaltlichen Ueberschriften. Sie standen sonst
   in der Ueberschriftenstruktur jeder Seite und verfaelschten sie. */
.footer-col__title,
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--sp-2); font-size: 0.9rem; line-height: 1.35; }
.footer-col__brand { max-width: 300px; text-align: center; }
.footer-logo { display: inline-block; margin-bottom: 0; }
.footer-logo img { height: 64px; width: auto; display: block; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; line-height: 1.5; color: var(--color-navy); text-align: center; margin: -0.6rem 0 0; }
.footer-col__brand svg { height: 48px; margin-bottom: var(--sp-4); }
.footer-col__brand img { height: 56px; width: auto; margin-bottom: var(--sp-4); display: block; }
.footer-brand-line {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-brand-line img { height: 56px; width: auto; }
.footer-brand-line__text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand-line__text strong {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--color-white); font-weight: 600;
}
.footer-brand-line__text span {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-light-blue); margin-top: 2px;
}
.footer-social { display: flex; gap: var(--sp-4); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--color-orange); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(27,42,74,0.18);
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: rgba(27,42,74,0.7);
  text-align: center;
}
.footer-bottom p { margin: 0; }
.footer-bottom .footer-social { align-items: center; }
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
}

/* ---------- 19. Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-4); left: var(--sp-4); right: var(--sp-4);
  max-width: 560px;
  margin-left: auto;
  background: var(--color-white);
  color: var(--color-navy);
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: none;
  border: 1px solid var(--color-gray-line);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__title { font-family: var(--font-display); font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.cookie-banner__text { font-size: var(--fs-xs); color: var(--color-gray); margin-bottom: var(--sp-4); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.cookie-banner__actions .btn { min-height: 40px; padding: var(--sp-2) var(--sp-4); font-size: var(--fs-xs); }

/* ---------- 20. Breadcrumb ---------- */
.breadcrumb {
  font-size: var(--fs-xs);
  color: var(--color-gray);
  margin-bottom: var(--sp-6);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: var(--sp-2); color: var(--color-gray-soft); }
.breadcrumb a { color: var(--color-gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-orange); }
.breadcrumb [aria-current="page"] { color: var(--color-navy); font-weight: 600; }

/* ---------- 21. Utility ---------- */
/* Mobile First: nur ab Desktop sichtbar (fuer [D]-Zusatzinhalte) */
.d-only { display: none; }
@media (min-width: 1024px) { .d-only { display: revert; } }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--sp-4); } .mb-4 { margin-bottom: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); } .mb-8 { margin-bottom: var(--sp-8); }
.lead { font-size: var(--fs-md); color: var(--color-gray); line-height: 1.6; }
.divider { height: 1px; background: var(--color-gray-line); border: 0; margin: var(--sp-12) 0; }

/* ---------- 22. Calendly Embed ---------- */
.calendly-wrap {
  background: var(--color-bg);
  border: 1px dashed var(--color-gray-line);
  border-radius: var(--radius-md);
  padding: var(--sp-12) var(--sp-6);
  text-align: center;
  color: var(--color-gray);
}
.calendly-inline-widget { min-width: 320px; height: 700px; }
