/* ==========================================================================
   STARTKLAR Beruf – ein Stylesheet für alle Seiten

   Keine Anfrage an fremde Server: Schriften liegen unter assets/fonts/
   (Archivo, Inter, JetBrains Mono – SIL OFL 1.1, siehe LICENSE-Schriften.txt).
   Häkchen, Kreuz und Pfeil sind SVG, weil die Latin-Teilmengen der Schriften
   diese Zeichen nicht enthalten.

   Farben aus dem Logo gemessen. Bewusst nur helles Farbschema.
   Das Gestaltungsmittel der Seite ist das Puzzle aus dem Logo: TALENTE in
   Cyan links, UNTERNEHMEN in Orange rechts – genau die beiden Zielgruppen.
   ========================================================================== */

@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/archivo-700.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/archivo-800.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/jetbrains-mono-500.woff2') format('woff2'); }

:root {
  color-scheme: light;

  --navy: #0b1f4d;
  --navy-tief: #071638;
  --orange: #f45b00;
  --orange-tief: #c24700;       /* Orange als Schrift auf Weiß: 5:1 */
  --cyan: #0090b4;
  --cyan-dunkel: #007f9f;       /* Fläche für weiße Schrift: 4,6:1 */
  --cyan-tief: #006a86;
  --gelb: #f5a800;

  --papier: #eff3f8;
  --papier-tief: #e3eaf3;
  --weiss: #ffffff;
  --linie: #ccd8e7;
  --linie-fein: #dfe7f1;

  --text: #0b1f4d;
  --text-weich: #4c5f7d;
  --text-hell: #ffffff;
  --text-hell-weich: #adbdd6;
  --linie-dunkel: rgba(255, 255, 255, .14);

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --breite: 1180px;
  --kopf: 76px;

  --haken: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.8 8.3l2.7 2.7 5.7-5.8' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --ausruf: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.6v5.3' stroke='%230b1f4d' stroke-width='2.3' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='12.1' r='1.35' fill='%230b1f4d'/%3E%3C/svg%3E");
  --kreuz: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 5l6 6M11 5l-6 6' stroke='%238796ad' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------- Grundlagen -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--kopf) + 18px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--weiss); color: var(--text);
  font-family: var(--font-text); font-size: 17px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.022em;
  line-height: 1.07; margin: 0 0 .45em; text-wrap: balance; color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.72rem, 3.3vw, 2.5rem); }
h3 { font-size: clamp(1.06rem, 1.5vw, 1.22rem); font-weight: 700; letter-spacing: -.012em; }
p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.sprung-link {
  position: absolute; left: 16px; top: -120px; z-index: 300;
  background: var(--orange); color: var(--navy); font-weight: 700;
  padding: 12px 20px; border-radius: 999px; text-decoration: none; transition: top .18s ease;
}
.sprung-link:focus { top: 14px; }
.pfeil { width: 1em; height: 1em; flex: none; transition: transform .2s ease; }

/* --------------------------------------------------------------- Layout -- */
.huelle { width: 100%; max-width: var(--breite); margin-inline: auto; padding-inline: 26px; }
.huelle--text { max-width: 780px; }
.band { padding-block: clamp(56px, 7vw, 100px); }
.band--papier { background: var(--papier); }
.band--navy { background: var(--navy); color: var(--text-hell); }
.band--navy h2, .band--navy h3 { color: var(--text-hell); }
.band--cyan { background: linear-gradient(160deg, #f2fafc 0%, #e4f3f8 100%); border-block: 1px solid #cbe4ec; }

.marke {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-mono); font-size: .73rem; font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase; color: var(--orange-tief); margin: 0 0 15px;
}
.marke::before { content: ''; width: 24px; height: 3px; background: var(--orange); border-radius: 2px; flex: none; }
.band--navy .marke { color: #ffb27a; }
/* Die beiden Zielgruppen tragen die Farbe ihrer Puzzlehälfte */
.marke--talent, .marke--unternehmen { padding: 6px 15px 6px 12px; border-radius: 999px; letter-spacing: .14em; }
.marke--talent { background: var(--cyan-dunkel); color: #fff; }
.marke--unternehmen { background: var(--orange); color: var(--navy); }
.marke--talent::before, .marke--unternehmen::before { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.kopfblock { max-width: 720px; margin-bottom: clamp(30px, 4vw, 50px); }
.kopfblock p { font-size: clamp(1.02rem, 1.35vw, 1.14rem); color: var(--text-weich); }
.band--navy .kopfblock p { color: var(--text-hell-weich); }

/* -------------------------------------------------------------- Buttons -- */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-text); font-size: 1rem; font-weight: 700; text-decoration: none;
  border: 2px solid transparent; border-radius: 999px; padding: 14px 28px; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.knopf:hover { transform: translateY(-2px); }
.knopf:active { transform: translateY(0); }
.knopf:hover .pfeil { transform: translateX(4px); }
.knopf--orange { background: var(--orange); color: var(--navy); box-shadow: 0 8px 24px rgba(244, 91, 0, .28); }
.knopf--orange:hover { box-shadow: 0 13px 32px rgba(244, 91, 0, .4); }
.knopf--rand { background: transparent; color: var(--navy); border-color: var(--linie); }
.knopf--rand:hover { border-color: var(--navy); }
.band--navy .knopf--rand { color: #fff; border-color: var(--linie-dunkel); }
.band--navy .knopf--rand:hover { border-color: #fff; }
.knopf--klein { padding: 10px 20px; font-size: .93rem; }
.knopf-reihe { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }

/* ------------------------------------------------------------ Kopfzeile -- */
.kopf {
  position: sticky; top: 0; z-index: 200; background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--linie-fein);
}
.kopf .huelle { display: flex; align-items: center; gap: 26px; height: var(--kopf); }
.kopf-logo { flex: none; display: block; }
.kopf-logo img { height: 46px; width: auto; }
.kopf-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.kopf-nav a:not(.knopf) {
  text-decoration: none; font-size: .93rem; font-weight: 600; color: var(--text-weich);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease;
}
.kopf-nav a:not(.knopf):hover { color: var(--navy); border-bottom-color: var(--orange); }
@media (max-width: 980px) {
  .kopf-nav a:not(.knopf) { display: none; }
  .kopf-logo img { height: 38px; }
}
/* Erst unter 360 px passen Logo und Knopf nicht mehr nebeneinander in eine Zeile. */
@media (max-width: 360px) {
  .kopf .huelle { gap: 12px; }
  .kopf-logo img { height: 30px; }
}

/* ----------------------------------------------------------------- Hero -- */
.hero {
  position: relative; overflow: hidden; background: var(--weiss);
  padding-block: clamp(34px, 5vw, 70px) clamp(44px, 6vw, 84px);
  border-bottom: 1px solid var(--linie-fein);
}
/* Zwei Lichthöfe in den Logofarben, jeweils hinter „ihrer" Figur */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(460px 380px at 17% 36%, rgba(0, 144, 180, .17), transparent 70%),
    radial-gradient(460px 380px at 35% 40%, rgba(244, 91, 0, .13), transparent 70%);
}
.hero-gitter {
  position: relative; display: grid; align-items: center;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(28px, 5vw, 72px);
}
.hero-logo img { width: 100%; max-width: 470px; margin-inline: auto; filter: drop-shadow(0 20px 34px rgba(11, 31, 77, .14)); }
.hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.18rem); color: var(--text-weich); max-width: 44ch; }
.hero-lead strong { color: var(--navy); }
.hero .knopf-reihe { margin-top: 26px; }
.kurzfakten {
  display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 22px 0 0; padding: 0; list-style: none;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--text-weich);
}
.kurzfakten li { display: flex; align-items: center; gap: 8px; }
.kurzfakten li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex: none; }
@media (max-width: 900px) {
  .hero-gitter { grid-template-columns: 1fr; }
  .hero-logo img { max-width: 300px; }
}

/* --------------------------------------------- Das Puzzle aus dem Logo -- */
.puzzle { display: grid; grid-template-columns: 1fr 1fr; filter: drop-shadow(0 24px 36px rgba(11, 31, 77, .18)); }
.puzzle-teil {
  --rand: clamp(26px, 3.4vw, 44px);
  position: relative; display: flex; flex-direction: column; gap: 18px; padding: var(--rand);
}
.puzzle-teil--talent {
  z-index: 2; background: var(--cyan-dunkel); color: #fff;
  border-radius: 26px 0 0 26px; padding-right: calc(var(--rand) + 12px);
}
/* Die Nase greift in die orange Hälfte – wie im Logo */
.puzzle-teil--talent::after {
  content: ''; position: absolute; top: 50%; right: -30px; width: 60px; height: 60px;
  margin-top: -30px; border-radius: 50%; background: var(--cyan-dunkel);
}
.puzzle-teil--unternehmen {
  z-index: 1; background: var(--orange); color: var(--navy);
  border-radius: 0 26px 26px 0; padding-left: calc(var(--rand) + 34px);
}
.puzzle-etikett {
  margin: 0; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem); letter-spacing: .01em; text-transform: uppercase;
  line-height: 1; color: #fff;
}
.puzzle-etikett span {
  display: block; margin-top: 10px; font-family: var(--font-mono); font-weight: 500;
  font-size: .72rem; letter-spacing: .16em;
}
.puzzle-teil--unternehmen .puzzle-etikett span { color: var(--navy); }
.puzzle blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.12rem, 1.7vw, 1.36rem); line-height: 1.38; letter-spacing: -.01em;
}
.puzzle cite {
  display: block; margin-top: 12px; font-family: var(--font-mono); font-style: normal; font-weight: 500;
  font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
}
.puzzle-link {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  border-bottom: 2px solid currentColor; padding-bottom: 2px;
}
.puzzle-link:hover .pfeil { transform: translateX(4px); }
.puzzle-frage { margin-top: clamp(28px, 3.5vw, 42px); max-width: 64ch; font-size: 1.06rem; color: var(--text-weich); }
.puzzle-frage strong { color: var(--navy); }
@media (max-width: 760px) {
  .puzzle { grid-template-columns: 1fr; }
  .puzzle-teil--talent { border-radius: 22px 22px 0 0; padding-right: var(--rand); padding-bottom: calc(var(--rand) + 10px); }
  .puzzle-teil--talent::after { top: auto; right: auto; bottom: -28px; left: 50%; width: 56px; height: 56px; margin: 0 0 0 -28px; }
  .puzzle-teil--unternehmen { border-radius: 0 0 22px 22px; padding-left: var(--rand); padding-top: calc(var(--rand) + 30px); }
}

/* ----------------------------------------------------------- Zahlenband -- */
.zahlen {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 30px;
  background: var(--linie-dunkel); border: 1px solid var(--linie-dunkel); border-radius: 14px; overflow: hidden;
}
.zahl { background: var(--navy); padding: 24px 20px 22px; }
.zahl b {
  display: block; font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.zahl b i { font-style: normal; color: var(--gelb); }
.zahl span { display: block; margin-top: 10px; font-size: .87rem; line-height: 1.45; color: var(--text-hell-weich); }
.zahl em {
  display: block; margin-top: 8px; font-family: var(--font-mono); font-weight: 500; font-style: normal;
  font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: #8fa2c2;
}
@media (max-width: 860px) { .zahlen { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 470px) { .zahlen { grid-template-columns: 1fr; } }
.quellen { margin: 0 0 32px; font-family: var(--font-mono); font-size: .7rem; line-height: 1.7; letter-spacing: .03em; color: #93a7c6; }
.quellen a { color: #bfd0ea; text-underline-offset: 2px; }
.quellen a:hover { color: #fff; }
.folgen { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; }
.folgen article { border-left: 3px solid var(--gelb); padding-left: 20px; }
.folgen article + article { border-left-color: var(--orange); }
.folgen h3 { font-size: 1.06rem; margin-bottom: .5em; }
.folgen p { color: var(--text-hell-weich); font-size: .96rem; }
@media (max-width: 760px) { .folgen { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- Berufstätige -- */
.berufstaetige { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 54px); align-items: start; }
.zusagen { display: grid; gap: 20px; }
.zusage { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; }
.zusage-zeichen { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--cyan-dunkel); color: #fff; }
.zusage-zeichen svg { width: 21px; height: 21px; display: block; }
.zusage h3 { font-size: 1.03rem; margin-bottom: .3em; }
.zusage p { font-size: .94rem; color: var(--text-weich); }
@media (max-width: 880px) { .berufstaetige { grid-template-columns: 1fr; } }

/* ------------------------------------------------------ Abgleich-Karte -- */
.abgleich {
  background: var(--weiss); border: 1px solid var(--linie); border-radius: 15px; overflow: hidden;
  box-shadow: 0 26px 58px -32px rgba(11, 31, 77, .45), 0 2px 6px rgba(11, 31, 77, .05);
}
.abgleich-kopf { background: var(--navy); color: #fff; padding: 17px 21px 15px; }
.abgleich--talent .abgleich-kopf { background: var(--cyan-dunkel); }
.abgleich-kopf b { display: block; font-family: var(--font-display); font-size: 1.04rem; font-weight: 800; }
.abgleich-kopf span {
  display: block; margin-top: 4px; font-family: var(--font-mono); font-weight: 500;
  font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: #b4c3da;
}
.abgleich--talent .abgleich-kopf span { color: #d9eef4; }
.abgleich-tabelle { width: 100%; border-collapse: collapse; }
.abgleich-tabelle th {
  text-align: left; padding: 9px 21px; background: var(--papier); border-bottom: 1px solid var(--linie);
  font-family: var(--font-mono); font-weight: 500; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #5f7090;
}
.abgleich-tabelle td { padding: 11px 21px; border-bottom: 1px solid var(--linie-fein); font-size: .89rem; vertical-align: top; }
.abgleich-tabelle tr:last-child td { border-bottom: 0; }
.abgleich-aspekt { color: var(--navy); font-weight: 600; }
/* Handy: Die Beispieltabelle hat drei Spalten und 21 px Zellenrand – zusammen
   mehr, als 375 px hergeben. Engere Ränder und Silbentrennung, sonst schiebt
   sie die ganze Seite zur Seite. */
@media (max-width: 620px) {
  .abgleich-kopf, .abgleich-hinweis, .abgleich-fuss { padding-inline: 14px; }
  .abgleich-tabelle th, .abgleich-tabelle td { padding-inline: 8px; }
  .abgleich-tabelle td { -webkit-hyphens: auto; hyphens: auto; }
}
/* Sehr schmale Handys (320 px): noch enger, und die Pillen dürfen umbrechen.
   Dazu Silbentrennung in den Überschriften – „Bewerbungsgespräch“ ist in der
   großen Schrift allein schon breiter als so ein Bildschirm. */
@media (max-width: 380px) {
  .huelle { padding-inline: 14px; }
  .abgleich-tabelle th, .abgleich-tabelle td { padding-inline: 6px; font-size: .84rem; }
  .gewicht { white-space: normal; border-radius: 8px; }
  h1, h2, h3 { -webkit-hyphens: auto; hyphens: auto; }
  .baustein, .linkzeile code, .streifen-text code { overflow-wrap: anywhere; }
}
.gewicht {
  display: inline-block; padding: 2px 9px; border-radius: 999px; white-space: nowrap;
  font-family: var(--font-mono); font-weight: 500; font-size: .66rem; letter-spacing: .05em;
}
.gewicht--stark { background: var(--navy); color: #fff; }
.gewicht--mittel { background: var(--papier-tief); color: var(--text-weich); }
.urteil { display: flex; gap: 8px; align-items: flex-start; color: var(--text-weich); }
.urteil::before {
  content: ''; flex: none; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  background: var(--cyan-dunkel) var(--haken) center / 12px no-repeat;
}
.urteil--ab { color: var(--navy); }
.urteil--ab::before { background: var(--gelb) var(--ausruf) center / 12px no-repeat; }
.abgleich-hinweis { margin: 0; padding: 11px 21px; background: #fff6e2; border-top: 1px solid #f0dcae; font-size: .84rem; color: #7a5600; }
.abgleich-fuss {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px 16px;
  padding: 15px 21px 17px; border-top: 1px solid var(--linie); background: var(--papier);
}
.abgleich-wert { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1.1; color: var(--navy); font-variant-numeric: tabular-nums; }
.abgleich-wert small {
  display: block; margin-top: 3px; font-family: var(--font-mono); font-weight: 500;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-weich);
}
.abgleich-thema { flex: 1 1 200px; font-size: .86rem; color: var(--text-weich); }
.abgleich-thema b {
  display: block; margin-bottom: 3px; font-family: var(--font-mono); font-weight: 500;
  font-size: .62rem; letter-spacing: .11em; text-transform: uppercase; color: var(--orange-tief);
}

/* -------------------------------------------------------------- Betriebe -- */
.betriebe-gitter { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4.5vw, 64px); align-items: start; }
.betriebe-karte { position: sticky; top: calc(var(--kopf) + 24px); }
.schritte { display: grid; gap: 28px; margin: 0; padding: 0; list-style: none; }
.schritt { display: grid; grid-template-columns: 48px 1fr; gap: 18px; }
.schritt-nr {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: var(--navy); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
}
.schritt h3 { margin-bottom: .35em; }
.schritt p { font-size: .95rem; color: var(--text-weich); }
.schritt-dauer {
  display: inline-block; margin-top: 10px; padding: 3px 11px; border-radius: 999px; background: var(--papier-tief);
  font-family: var(--font-mono); font-weight: 500; font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; color: var(--text-weich);
}
.merksatz {
  margin-top: clamp(30px, 4vw, 46px); padding: 20px 24px; border-radius: 13px;
  background: var(--papier); border-left: 4px solid var(--orange);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 1.45; color: var(--navy);
}
@media (max-width: 900px) {
  .betriebe-gitter { grid-template-columns: 1fr; }
  .betriebe-karte { position: static; }
}

/* ------------------------------------------------------ Werkzeugkasten -- */
.kasten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kasten article { background: var(--weiss); border: 1px solid var(--linie); border-radius: 14px; padding: 22px 21px; display: flex; flex-direction: column; }
.kasten-etikett {
  margin-bottom: 10px; font-family: var(--font-mono); font-weight: 500; font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange-tief);
}
.kasten h3 { font-size: 1.04rem; margin-bottom: .4em; }
.kasten p { font-size: .92rem; color: var(--text-weich); }
.kasten-fuss { margin-top: auto; padding-top: 16px; }
@media (max-width: 780px) { .kasten { grid-template-columns: 1fr; } }
/* Vier gleich große Karten – bei dreien bliebe sonst ein Loch in der zweiten Reihe. */
.kasten--vier { grid-template-columns: repeat(4, 1fr); }
.kasten h3 a { color: inherit; text-decoration: none; }
.kasten h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1000px) { .kasten--vier { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kasten--vier { grid-template-columns: 1fr; } }
.linkzeile { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; background: var(--papier); border: 1px solid var(--linie); border-radius: 10px; padding: 11px 13px; }
.linkzeile code { flex: 1 1 auto; min-width: 0; font-family: var(--font-mono); font-size: .81rem; color: var(--navy); word-break: break-all; }
.kopieren {
  flex: none; border: 0; border-radius: 999px; cursor: pointer; background: var(--navy); color: #fff;
  font-family: var(--font-text); font-size: .77rem; font-weight: 700; padding: 7px 15px; transition: background .16s ease, color .16s ease;
}
.kopieren:hover { background: var(--orange); color: var(--navy); }
.kopieren[data-fertig='ja'] { background: var(--cyan-dunkel); color: #fff; }
.qr-rahmen { width: 128px; padding: 10px; background: #fff; border: 1px solid var(--linie); border-radius: 12px; }
.qr-rahmen svg { display: block; width: 100%; height: auto; }
.qr-mass { display: block; margin-top: 7px; text-align: center; font-family: var(--font-mono); font-size: .61rem; letter-spacing: .07em; text-transform: uppercase; color: #7d8ea9; }
.baustein { background: var(--navy-tief); color: #dbe5f4; border-radius: 10px; padding: 15px 17px; font-family: var(--font-mono); font-size: .79rem; line-height: 1.72; white-space: pre-wrap; }
.baustein .hebe { color: var(--gelb); }
.streifen { display: flex; align-items: center; gap: 15px; margin-top: 18px; padding: 14px 16px; border: 2px solid var(--orange); border-radius: 12px; background: linear-gradient(180deg, #fff8f3, #ffffff); }
.streifen-qr { flex: none; width: 72px; height: 72px; }
.streifen-qr svg { display: block; width: 100%; height: 100%; }
.streifen-text b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1rem; line-height: 1.2; color: var(--navy); }
.streifen-text span { display: block; margin-top: 3px; font-size: .83rem; color: var(--text-weich); }
.streifen-text code { display: inline-block; margin-top: 6px; font-family: var(--font-mono); font-size: .73rem; color: var(--orange-tief); word-break: break-all; }
.orte { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.ort { background: var(--weiss); border: 1px solid var(--linie); border-radius: 12px; padding: 16px 15px; text-align: center; }
.ort svg { width: 44px; height: 44px; margin: 0 auto 11px; display: block; }
.ort b { display: block; font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--navy); }
.ort span { display: block; margin-top: 3px; font-size: .82rem; color: var(--text-weich); }
@media (max-width: 780px) { .orte { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------ Was im Abgleich steht -- */
.bausteine { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--linie); border: 1px solid var(--linie); border-radius: 14px; overflow: hidden; }
.bausteine article { background: var(--weiss); padding: 24px 22px; }
/* Fünf Bausteine in drei Spalten: der letzte nimmt zwei, sonst bliebe ein graues Loch */
.bausteine .hervor { grid-column: span 2; background: var(--papier); }
.bausteine h3 { font-size: 1.02rem; margin-bottom: .45em; }
.bausteine p { font-size: .92rem; color: var(--text-weich); }
@media (max-width: 880px) {
  .bausteine { grid-template-columns: 1fr; }
  .bausteine .hervor { grid-column: auto; }
}
.nichtzaehlt { margin-top: clamp(28px, 4vw, 44px); padding: clamp(24px, 3vw, 34px); border: 2px dashed var(--linie); border-radius: 16px; background: var(--weiss); }
.nichtzaehlt h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .5em; }
.nichtzaehlt ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.nichtzaehlt li {
  padding: 5px 13px; border-radius: 999px; background: var(--papier);
  font-family: var(--font-mono); font-size: .76rem; color: #6f7f99;
  text-decoration: line-through; text-decoration-color: var(--orange); text-decoration-thickness: 2px;
}
.nichtzaehlt p { font-size: .95rem; color: var(--text-weich); max-width: 68ch; }

/* ---------------------------------------------------- Keine Stellenbörse */
.absicht { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
.absicht p { color: var(--text-weich); }
.absicht-nicht { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.absicht-nicht li { display: flex; gap: 12px; align-items: center; font-size: .98rem; color: var(--text-weich); }
.absicht-nicht li::before {
  content: ''; flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--linie); background: var(--weiss) var(--kreuz) center / 13px no-repeat;
}
@media (max-width: 860px) { .absicht { grid-template-columns: 1fr; } }

/* ----------------------------------------------------- Wer dahintersteht */
/* Erst die beiden Personen nebeneinander, darunter die Grundsätze über die volle Breite. */
.herkunft { display: grid; gap: clamp(30px, 4vw, 46px); }
.personen { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 820px) { .personen { grid-template-columns: 1fr; } }
.person { background: var(--weiss); border: 1px solid var(--linie); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 44px -30px rgba(11, 31, 77, .4); }
.person-kopf { background: var(--navy); color: #fff; padding: 20px 22px 18px; }
.person-kopf b { display: block; font-family: var(--font-display); font-size: 1.14rem; font-weight: 800; letter-spacing: -.02em; }
.person-kopf span { display: block; margin-top: 5px; font-size: .87rem; color: var(--text-hell-weich); }
.person-liste { list-style: none; margin: 0; padding: 6px 22px 20px; }
.person-liste li { padding: 11px 0; font-size: .88rem; color: var(--text-weich); }
.person-liste li + li { border-top: 1px solid var(--linie-fein); }
.person-liste b {
  display: block; margin-bottom: 4px; font-family: var(--font-mono); font-weight: 500;
  font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; color: var(--orange-tief);
}
.person-liste strong { color: var(--navy); }
.grundsaetze {
  display: grid; gap: clamp(22px, 3vw, 34px); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  border-top: 1px solid var(--linie); padding-top: clamp(24px, 3vw, 34px);
}
.grundsatz { display: grid; grid-template-columns: 44px 1fr; gap: 17px; align-items: start; }
.grundsatz-nr { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--papier-tief); color: var(--navy); font-family: var(--font-mono); font-weight: 500; font-size: .8rem; }
.grundsatz h3 { margin-bottom: .4em; }
.grundsatz p { font-size: .95rem; color: var(--text-weich); }
.grundsatz-beleg { display: block; margin-top: 9px; font-family: var(--font-mono); font-size: .71rem; letter-spacing: .03em; color: #62738f; }

/* ------------------------------------------------------------ Abschluss -- */
.schluss { max-width: 640px; }
.schluss p { color: var(--text-hell-weich); }
.schluss .knopf-reihe { margin-top: 24px; }

/* --------------------------------------------------------------- Fragen -- */
.fragen { max-width: 860px; }
.frage { border-bottom: 1px solid var(--linie); }
.frage summary {
  list-style: none; cursor: pointer; position: relative; padding: 19px 46px 19px 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--navy);
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--papier-tief); color: var(--navy); font-family: var(--font-text); font-size: 1.05rem; font-weight: 700;
  transition: background .16s ease;
}
.frage[open] summary::after { content: '–'; background: var(--orange); }
.frage summary:hover::after { background: var(--orange); }
.frage p { padding: 0 46px 20px 0; max-width: 72ch; font-size: .96rem; color: var(--text-weich); }

/* ----------------------------------------------------------- Fusszeile -- */
.fuss { background: var(--papier); border-top: 1px solid var(--linie); padding-block: clamp(44px, 5vw, 64px) 26px; color: var(--text-weich); }
.fuss-gitter { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1fr .8fr; gap: 30px; align-items: start; }
.fuss-marke img { width: 190px; }
.fuss h4 {
  margin: 4px 0 13px; font-family: var(--font-mono); font-weight: 500; font-size: .67rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange-tief);
}
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .92rem; }
.fuss a { color: var(--navy); text-decoration: none; }
.fuss a:hover { text-decoration: underline; text-underline-offset: 3px; }
.fuss-unten {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--linie);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem;
}
@media (max-width: 860px) {
  .fuss-gitter { grid-template-columns: 1fr 1fr; }
  .fuss-marke { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .fuss-gitter { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- Rechtstexte */
.seiten-kopf { padding-block: clamp(40px, 5vw, 70px) clamp(22px, 3vw, 34px); background: linear-gradient(180deg, var(--papier), var(--weiss)); }
.seiten-kopf p { color: var(--text-weich); }
.stand { font-family: var(--font-mono); font-size: .76rem; }
.rechtstext { padding-bottom: clamp(56px, 7vw, 96px); }
.rechtstext h2 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-top: 1.9em; }
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext p, .rechtstext li, .rechtstext dd { font-size: .98rem; color: var(--text-weich); }
.rechtstext a { color: var(--navy); text-underline-offset: 3px; }
.rechtstext ul { padding-left: 1.2em; }
.rechtstext dl { margin: 0 0 1.1em; display: grid; gap: 18px; }
.rechtstext dt {
  margin-bottom: 6px; font-family: var(--font-mono); font-weight: 500; font-size: .7rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--orange-tief);
}
.rechtstext dd { margin: 0; line-height: 1.7; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
