/* ============================================================
   ABE – Akademie für berufliche Entwicklung
   Design: schlicht, modern, vertrauenswürdig
   Farben: Schieferblau (aus dem ABE-Logo) + Gold-Akzent
   Schrift: Titillium Web (selbst gehostet, DSGVO-konform)
   ============================================================ */

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/titillium-web-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/titillium-web-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/titillium-web-latin-700-normal.woff2') format('woff2');
}

:root {
  --blau: #263751;          /* Schieferblau aus dem ABE-Logo */
  --blau-hover: #1B2940;
  --blau-tief: #101928;     /* Footer */
  --gold: #F3B62B;          /* ABE-Gold, sparsam eingesetzt */
  --akzent: #A87410;        /* Gold-Dunkel für kleine Texte */
  --text: #232B37;
  --muted: #5A6675;
  --linie: #DFE4EA;
  --flaeche: #F5F7F9;
  --chip: #FAF2DE;          /* warmer Gold-Ton für Icon-Chips & Badges */
  --weiss: #FFFFFF;
  --gruen: #1E7F4F;
  --radius: 10px;
  --schatten: 0 1px 2px rgba(16, 25, 40, .06), 0 6px 18px rgba(16, 25, 40, .05);
  --font: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blau); }
a:hover { color: var(--blau-hover); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--blau); margin: 0 0 .6em; font-weight: 700; overflow-wrap: break-word; hyphens: auto; }
h1 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); letter-spacing: -.005em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.25rem; }
strong { font-weight: 600; color: var(--blau); }
.artikel-inhalt p a, .faq-inhalt a, .hinweis a { text-decoration: underline; text-underline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--blau); color: #fff; padding: .6rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; }

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
.schmal { max-width: 780px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--linie);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.logo img { height: 42px; width: auto; }
.hauptnav { display: flex; align-items: center; gap: 1.1rem; }
.hauptnav a {
  text-decoration: none; color: var(--text); font-weight: 600; font-size: .92rem;
  padding: .35rem 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.hauptnav a.btn-cta {
  background: var(--gold); color: var(--blau); border: 2px solid var(--gold);
  border-radius: 8px; padding: .6rem 1.05rem; font-weight: 700;
  transition: background .15s, border-color .15s;
}
.hauptnav a.btn-cta:hover { background: #E3A413; border-color: #E3A413; color: var(--blau); }
.hauptnav a:hover { color: var(--blau); }
.hauptnav a[aria-current="page"] { color: var(--blau); border-bottom-color: var(--gold); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--linie); border-radius: 8px;
  padding: .5rem .65rem; cursor: pointer; color: var(--blau);
}
.nav-toggle svg { display: block; }
.nav-toggle .icon-zu { display: none; }
.nav-toggle[aria-expanded="true"] { background: var(--blau); color: #fff; border-color: var(--blau); }
.nav-toggle[aria-expanded="true"] .icon-auf { display: none; }
.nav-toggle[aria-expanded="true"] .icon-zu { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-weight: 600; font-size: 1rem; line-height: 1.2;
  padding: .85rem 1.5rem; border-radius: 8px;
  border: 2px solid var(--blau); transition: background .15s, color .15s, border-color .15s;
}
.btn-primaer { background: var(--blau); color: #fff; }
.btn-primaer:hover { background: var(--blau-hover); border-color: var(--blau-hover); color: #fff; }
.btn-sekundaer { background: transparent; color: var(--blau); }
.btn-sekundaer:hover { background: var(--chip); }
.btn-hell { background: #fff; color: var(--blau); border-color: #fff; }
.btn-hell:hover { background: var(--chip); border-color: var(--chip); }
.btn-gross { padding: 1rem 1.9rem; font-size: 1.06rem; }

/* ---------- Sektionen ---------- */
section { padding: 4.25rem 0; }
.hell { background: var(--flaeche); }
.eyebrow {
  display: block; font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--akzent); margin-bottom: .55rem;
}
.section-kopf { max-width: 720px; margin-bottom: 2.4rem; }
.section-kopf.zentriert { margin-left: auto; margin-right: auto; text-align: center; }
.untertitel { color: var(--muted); font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero { padding: 3.5rem 0 4rem; background: linear-gradient(180deg, var(--flaeche) 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: .7rem; }
.hero .untertitel { font-size: 1.13rem; margin-bottom: 1.6rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--chip); color: var(--blau);
  font-size: .88rem; font-weight: 600; border: 1px solid #EFDFB4;
  border-radius: 999px; padding: .35rem .9rem; margin-bottom: 1.1rem;
}
.hero-badge .punkt { width: 8px; height: 8px; border-radius: 50%; background: var(--gruen); }
.hero-aktionen { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.4rem; }
.hero-fakten { display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: .95rem; }
.hero-fakten li { display: flex; align-items: center; gap: .4rem; }
.hero-fakten svg { color: var(--gruen); flex: none; }
.hero-bild { position: relative; }
.hero-bild img { border-radius: var(--radius); box-shadow: var(--schatten); }
.hero-siegel {
  position: absolute; right: -14px; bottom: -18px;
  background: #fff; border: 1px solid var(--linie); border-radius: 12px;
  padding: .7rem .9rem; box-shadow: var(--schatten);
  display: flex; align-items: center; gap: .6rem;
}
.hero-siegel svg { color: var(--gold); flex: none; }
.hero-siegel span { font-size: .8rem; font-weight: 600; color: var(--blau); line-height: 1.3; }

/* ---------- Vertrauensleiste ---------- */
.trustbar { border-top: 1px solid var(--linie); border-bottom: 1px solid var(--linie); background: #fff; padding: 1.1rem 0; }
.trust-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.trust-grid span { font-size: .95rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.trust-grid svg { color: var(--blau); flex: none; }

/* ---------- Karten ---------- */
.karten { display: grid; gap: 1.3rem; }
.karten-2 { grid-template-columns: repeat(2, 1fr); }
.karten-3 { grid-template-columns: repeat(3, 1fr); }
.karte {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 1.6rem; transition: box-shadow .15s;
}
.karte:hover { box-shadow: var(--schatten); }
.karte h3 { margin-bottom: .45rem; }
.karte p:last-child { margin-bottom: 0; }
.karte .icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--chip);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.karte .icon img { width: 28px; height: 28px; object-fit: contain; }
.karte-link { text-decoration: none; color: inherit; display: block; }
.karte-link:hover { color: inherit; }
.karte-mehr { color: var(--blau); font-weight: 600; }
.karte img.karten-bild { border-radius: 8px; margin-bottom: 1rem; aspect-ratio: 16/10; object-fit: cover; width: 100%; }

/* ---------- Modul-Karten ---------- */
.modul-grid .karte { display: flex; flex-direction: column; }
.modul-grid .karte-mehr { margin-top: auto; margin-bottom: 0; }
.modul-grid .karte p.teaser { color: var(--muted); font-size: .98rem; margin-bottom: 1rem; }

/* ---------- Zeitachse (Ablauf) ---------- */
.zeitachse { max-width: 760px; margin: 0 auto; }
.za-schritt { display: grid; grid-template-columns: 56px 1fr; gap: 1.4rem; position: relative; padding-bottom: 2.2rem; }
.za-schritt:last-child { padding-bottom: 0; }
.za-schritt::before {
  content: ''; position: absolute; left: 27px; top: 60px; bottom: 4px; width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--linie) 45%);
}
.za-schritt:last-child::before { display: none; }
.za-num {
  width: 56px; height: 56px; border: 2px solid var(--gold); border-radius: 14px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blau); font-size: 1.05rem;
}
.za-body h3 { margin: .45rem 0 .35rem; }
.za-body p { color: var(--text); margin-bottom: .2rem; }
.za-tag {
  display: inline-block; margin-top: .55rem; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--akzent);
  border: 1px solid #EBDDB6; background: var(--chip); border-radius: 999px; padding: .32rem .75rem;
}

/* ---------- Förder-Check ---------- */
.fc {
  max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--linie);
  border-radius: 14px; box-shadow: var(--schatten); overflow: hidden;
}
.fc-kopf {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 1.5rem; background: var(--flaeche); border-bottom: 1px solid var(--linie);
}
.fc-label { font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--akzent); }
.fc-step { font-size: .84rem; font-weight: 600; color: var(--muted); }
.fc-prog { height: 4px; background: var(--linie); }
.fc-prog i { display: block; height: 100%; width: 33%; background: var(--gold); transition: width .3s ease; }
.fc-body { padding: 1.7rem 1.5rem 1.9rem; }
.fc-view { display: none; }
.fc-view.aktiv { display: block; }
.fc-frage { font-size: 1.3rem; font-weight: 700; color: var(--blau); margin: 0 0 1.25rem; line-height: 1.3; }
.fc-frage em { font-style: normal; color: var(--akzent); }
.fc-opt {
  display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left;
  background: #fff; border: 1px solid var(--linie); border-radius: 10px;
  padding: 1rem 1.15rem; margin-bottom: .7rem; cursor: pointer; font: inherit; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.fc-opt:hover { border-color: var(--blau); box-shadow: var(--schatten); }
.fc-opt .oi {
  width: 44px; height: 44px; flex: none; border-radius: 10px; background: var(--chip);
  color: var(--blau); display: flex; align-items: center; justify-content: center;
}
.fc-opt .oi svg { width: 22px; height: 22px; }
.fc-opt b { display: block; color: var(--blau); font-weight: 600; }
.fc-opt small { color: var(--muted); font-size: .9rem; }
.fc-back, .fc-neustart {
  background: none; border: none; color: var(--muted); font: inherit; font-size: .92rem;
  cursor: pointer; padding: .35rem 0; margin-top: .35rem;
}
.fc-back:hover, .fc-neustart:hover { color: var(--blau); text-decoration: underline; }
.fc-erg-titel { font-size: 1.35rem; margin-bottom: .5rem; }
.fc-erg-profil { color: var(--muted); font-size: .95rem; margin-bottom: .9rem; }
.fc-chips { margin: 1rem 0 .4rem; }
.fc-chips span {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blau); background: var(--flaeche);
  border: 1px solid var(--linie); border-radius: 999px; padding: .32rem .75rem; margin: 0 .45rem .5rem 0;
}
.fc-aktionen { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.fc-hinweis { font-size: .85rem; color: var(--muted); margin: 1rem 0 0; }

/* ---------- Blog ---------- */
.post-meta { display: flex; align-items: center; gap: .7rem; font-size: .85rem; color: var(--muted); margin-bottom: .5rem; }
.post-kat {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--akzent); background: var(--chip); border: 1px solid #EBDDB6;
  border-radius: 999px; padding: .25rem .65rem;
}

/* ---------- Zeilen (Bild + Text) ---------- */
.zeile { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.zeile + .zeile { margin-top: 3.5rem; }
.zeile img { border-radius: var(--radius); box-shadow: var(--schatten); }
.zeile.getauscht .zeile-bild { order: 2; }

/* ---------- Häkchenliste ---------- */
.haken { list-style: none; padding: 0; margin: 1rem 0; }
.haken li { display: flex; gap: .65rem; margin-bottom: .7rem; align-items: flex-start; }
.haken svg { color: var(--gruen); flex: none; margin-top: .28rem; }

/* ---------- Schritte ---------- */
.schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; counter-reset: schritt; }
.schritte-4 { grid-template-columns: repeat(4, 1fr); }
.schritte-1 { grid-template-columns: 1fr; }
.schritt {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.6rem;
  counter-increment: schritt;
}
.schritt::before {
  content: counter(schritt);
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--blau); font-weight: 700; margin-bottom: 1rem;
}

/* ---------- Zahlenfakten ---------- */
.fakten { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; text-align: center; }
.fakt { background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.4rem 1rem; }
.fakt .wert { font-size: 1.9rem; font-weight: 700; color: var(--blau); line-height: 1.1; }
.fakt .label { color: var(--muted); font-size: .92rem; margin-top: .3rem; }

/* ---------- Partnerleiste ---------- */
.partner { padding: 2.6rem 0; }
.partner p { text-align: center; color: var(--muted); font-size: .92rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.4rem; }
.partner-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.2rem 2.8rem; }
.partner-logos img { height: 30px; width: auto; filter: grayscale(1); opacity: .65; transition: opacity .15s, filter .15s; }
.partner-logos img:hover { filter: none; opacity: 1; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border: 1px solid var(--linie); border-radius: var(--radius); background: #fff; margin-bottom: .8rem; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.05rem 1.25rem; font-weight: 600; color: var(--blau); font-size: 1.03rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--akzent); line-height: 1; flex: none;
}
.faq details[open] summary::after { content: '–'; }
.faq .faq-inhalt { padding: 0 1.25rem 1.15rem; color: var(--text); }
.faq .faq-inhalt p:last-child { margin-bottom: 0; }

/* ---------- Hinweisbox ---------- */
.hinweis {
  background: var(--chip); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.15rem 1.35rem; margin: 1.6rem 0;
}
.hinweis p:last-child { margin-bottom: 0; }

/* ---------- Tabelle ---------- */
.tabelle-wrap { overflow-x: auto; margin: 1.5rem 0; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; font-size: .98rem; }
th, td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--linie); }
th { background: var(--blau); color: #fff; font-weight: 600; }
tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--flaeche); }

/* ---------- Warum-ABE-Kacheln ---------- */
.warum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.warum-karte { background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.6rem; }
.warum-karte .icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--chip);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.warum-karte .icon img { max-width: 32px; max-height: 32px; }
.warum-karte h3 { margin-bottom: .4rem; }
.warum-karte p { margin: 0; color: var(--text); }

/* ---------- AZAV-Badge (Text-Siegel) ---------- */
.azav-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  border: 1px solid var(--linie); border-radius: 12px; background: #fff;
  padding: .7rem 1rem;
}
.azav-badge svg { color: var(--gold); flex: none; }
.azav-badge span { font-size: .85rem; font-weight: 600; color: var(--blau); line-height: 1.35; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--blau); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #CBD3DC; max-width: 640px; margin: 0 auto 1.6rem; }
.cta-band .btn-hell { background: #fff; border-color: #fff; color: var(--blau); }
.cta-band .btn-hell:hover { background: var(--flaeche); border-color: var(--flaeche); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 1rem 0 0; font-size: .9rem; color: var(--muted); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: '›'; margin-right: .35rem; color: var(--linie); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blau); text-decoration: underline; }

/* ---------- Artikel (Ratgeber) ---------- */
.artikel { padding: 2.5rem 0 4rem; }
.artikel-kopf { max-width: 780px; margin: 0 auto 2rem; }
.artikel-meta { color: var(--muted); font-size: .92rem; }
.artikel-inhalt { max-width: 780px; margin: 0 auto; }
.artikel-inhalt h2 { margin-top: 2.4rem; }
.artikel-inhalt h3 { margin-top: 1.8rem; }
.artikel-inhalt img { border-radius: var(--radius); margin: 1.5rem 0; }
.inhaltsverzeichnis {
  background: var(--flaeche); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; margin: 1.8rem 0;
}
.inhaltsverzeichnis strong { display: block; margin-bottom: .5rem; }
.inhaltsverzeichnis ol { margin: 0; padding-left: 1.2rem; }
.inhaltsverzeichnis a { text-decoration: none; }
.inhaltsverzeichnis a:hover { text-decoration: underline; }

/* ---------- Kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.kontakt-kasten { background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); padding: 2rem; box-shadow: var(--schatten); }
.kontakt-kasten .btn { width: 100%; margin-top: .6rem; }
.kontakt-wege { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.kontakt-wege li { display: flex; gap: .7rem; align-items: center; margin-bottom: .8rem; }
.kontakt-wege svg { color: var(--blau); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blau-tief); color: #B7BFC9; padding: 3.5rem 0 2rem; font-size: .96rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #B7BFC9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-logo img { height: 38px; width: auto; margin-bottom: 1rem; }
.site-footer .azav-badge { background: transparent; border-color: rgba(255,255,255,.22); margin-top: 1.2rem; }
.site-footer .azav-badge span { color: #E7EBF0; }
.footer-unten { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .88rem; }
.footer-unten a { margin-left: 1.2rem; }

/* ---------- Responsiv ---------- */
/* ---------- Navigation: Overlay-Menü bis 1024px ---------- */
@media (max-width: 1024px) {
  .hauptnav {
    display: flex; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 1.4rem 2rem; overflow-y: auto; z-index: 99;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .hauptnav.offen { opacity: 1; visibility: visible; transform: translateY(0); }
  body.menu-offen { overflow: hidden; }
  .hauptnav a {
    padding: 1.05rem .2rem; font-size: 1.1rem; white-space: normal;
    border-bottom: 1px solid var(--flaeche); display: flex; justify-content: space-between; align-items: center;
  }
  .hauptnav a:not(.btn-cta)::after { content: '→'; color: var(--linie); font-size: 1rem; }
  .hauptnav a[aria-current="page"] { border-bottom: 1px solid var(--flaeche); color: var(--blau); }
  .hauptnav a[aria-current="page"]::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    margin-right: .6rem; flex: none; order: -1;
  }
  .hauptnav a[aria-current="page"]::after { color: var(--gold); }
  .hauptnav a.btn-cta {
    margin-top: 1.4rem; padding: 1.05rem 1.5rem; font-size: 1.05rem;
    justify-content: center; border-radius: 10px;
  }
  .hauptnav a.btn-cta::after { content: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 960px) {
  .hero-grid, .zeile, .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .zeile.getauscht .zeile-bild { order: 0; }
  .karten-3, .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .schritte { grid-template-columns: 1fr; }
  .schritte-4 { grid-template-columns: repeat(2, 1fr); }
  .fakten { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-siegel { right: 8px; bottom: -14px; }
}
@media (max-width: 720px) {
  .schritte-4 { grid-template-columns: 1fr; }


  /* Kursinhalte-Module: Icon links, Text rechts – deutlich kompakter */
  .modul-detail { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem; }
  .modul-detail .icon { width: 40px; height: 40px; margin: 0; flex: none; border-radius: 10px; }
  .modul-detail .icon img { width: 22px; height: 22px; }
  .modul-detail h3 { font-size: 1rem; margin-bottom: .3rem; }
  .modul-detail p { font-size: .93rem; margin: 0; }

  /* Modul-Karten: kompakte Zeilen statt großer Kästen */
  .modul-grid { gap: .7rem; }
  .modul-grid .karte {
    flex-direction: row; align-items: center; gap: .9rem; padding: .85rem 1rem;
  }
  .modul-grid .karte .icon { width: 42px; height: 42px; margin: 0; flex: none; border-radius: 10px; }
  .modul-grid .karte .icon img { width: 24px; height: 24px; }
  .modul-grid .karte h3 { font-size: .98rem; margin: 0; }
  .modul-grid .karte p.teaser { display: none; }
  .modul-grid .karte-mehr { margin: 0 0 0 auto; font-size: 1.1rem; flex: none; }
  .modul-grid .mehr-text { display: none; }

  .warum-karte { padding: 1.15rem 1.2rem; }
  .warum-karte .icon { width: 46px; height: 46px; margin-bottom: .7rem; }
  .fc-body { padding: 1.3rem 1.1rem 1.5rem; }
  .fc-frage { font-size: 1.12rem; }
  .fc-opt { padding: .85rem .9rem; gap: .8rem; }
  .fc-opt .oi { width: 38px; height: 38px; }
  .za-schritt { grid-template-columns: 44px 1fr; gap: 1rem; padding-bottom: 1.8rem; }
  .za-num { width: 44px; height: 44px; border-radius: 12px; font-size: .95rem; }
  .za-schritt::before { left: 21px; top: 48px; }
  .karten-2, .karten-3, .warum-grid { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
  .hero { padding: 2.2rem 0 2.8rem; }
  .hero-aktionen .btn { width: 100%; }
  .cta-band .btn { width: calc(100% - 2.5rem); }
}
@media (max-width: 480px) {
  .fakten, .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  .site-header, .site-footer, .cta-band, .hero-aktionen { display: none; }
}
