/* ============================================================
   seite-mitarbeitergewinnung.css — Unterseite „Bewerbungs-Motor"
   Nur Seitenspezifisches. Tokens, Kopf, Naht, Garantie, Rechnung,
   FAQ, Finale kommen unverändert aus main.css.
   ============================================================ */

/* ---------- Unterseiten-Held ---------- */

.unterheld { padding-bottom: clamp(40px, 6vh, 72px); }

/* Längere Headline als auf der Startseite: eine Stufe kleiner */
.unterheld h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }

.unterheld .hero-beweis { min-height: 460px; }

/* Foto größer als der main.css-Default (430px): füllt die ganze Spalte.
   Dazu ein langsamer Ken-Burns-Zoom im Foto — die Animation liegt auf dem
   img, data-tilt (GSAP) auf der figure: getrennte Elemente, getrennte
   transforms (Check-Loop-Falle). .ist-static friert den Zoom ein. */
.unterheld .beweis-foto { width: min(100%, 540px); }

.unterheld .beweis-foto img {
  animation: mg-kenburns 18s ease-in-out infinite alternate;
}

@keyframes mg-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

/* Nur eine Beweis-Karte: sitzt unten links, überlappt das Foto */
.unterheld .karte-a { top: auto; bottom: 4%; }

@media (max-width: 1024px) {
  .unterheld .karte-a { bottom: auto; }
}

/* Aktiver Dropdown-Eintrag (diese Seite) */
.dd-karte[aria-current="page"] { background: rgba(14, 94, 99, 0.1); }
.dd-karte[aria-current="page"] .dd-inhalt strong { color: var(--petrol); }

/* ---------- Motor-Signatur (getönte Bühne) ---------- */

.motorsig {
  background:
    radial-gradient(760px 360px at 90% -20%, rgba(103, 205, 198, 0.14), transparent 62%),
    var(--bg-tint);
  padding-block: clamp(48px, 7vh, 84px);
}

.motorsig-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.motorsig-kicker {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 14px;
}

.motorsig-wort {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.motorsig-wort em { font-style: normal; color: var(--petrol); }

.motorsig-stat {
  justify-self: end;
  text-align: right;
  max-width: 24ch;
  display: grid;
  gap: 10px;
}

/* Monumentalzahl als grafisches Objekt (Ausnahme laut DESIGN.md) */
.motorsig-zahl {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--petrol);
  font-variant-numeric: tabular-nums;
}

.motorsig-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .motorsig-grid { grid-template-columns: minmax(0, 1fr); }
  .motorsig-stat { justify-self: start; text-align: left; }
}

/* ---------- Problem: drei Gegner statt vier ---------- */

.gegner-drei { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Schmalere Spalten: Index-Kachel über dem Inhalt statt daneben */
.gegner-drei .gegner-fall {
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
}

@media (max-width: 1024px) {
  .gegner-drei { grid-template-columns: minmax(0, 1fr); }
  .gegner-drei .gegner-fall:nth-child(even) { transform: none; }
}

/* ---------- Baustein-Fluss (weiße Bühne) ---------- */

.bausteine {
  background: var(--bg);
  padding-block: clamp(60px, 8.5vh, 108px);
}

/* Überschrift + Zeitstrahl sind eine 860px-Spalte. Ohne Deckelung klebte
   sie links und ließ rechts ein Drittel der Bühne leer — der Block wandert
   als Ganzes in die Mitte, der Text darin bleibt linksbündig. */
.bausteine .wrap { max-width: calc(860px + 2 * clamp(20px, 4vw, 48px)); }

.bausteine h2 {
  font-size: var(--fs-h2);
  max-width: 22ch;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.fluss {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 860px;
  display: grid;
}

/* Vertikale Petrol-Schiene hinter den Knoten */
.fluss::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 26px;
  width: 2px;
  background: linear-gradient(180deg, var(--petrol), var(--mint-hell) 55%, var(--petrol));
  opacity: 0.35;
}

.fluss-schritt {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  padding-block: clamp(18px, 2.6vh, 28px);
}

.fluss-knoten {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid var(--petrol);
  color: var(--petrol);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  box-shadow: 0 10px 26px rgba(14, 94, 99, 0.16);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.fluss-schritt:hover .fluss-knoten {
  background: var(--petrol);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(14, 94, 99, 0.35);
}

.fluss-text h3 { font-size: var(--fs-h3); margin-bottom: 8px; }

.fluss-text p {
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.65;
}

/* ---------- Bewerber-Reise (getönte Bühne) ---------- */

.reise {
  background:
    radial-gradient(800px 400px at 88% -10%, rgba(103, 205, 198, 0.14), transparent 60%),
    var(--bg-tint);
  padding-block: clamp(60px, 8.5vh, 108px);
}

.reise h2 {
  font-size: var(--fs-h2);
  max-width: 22ch;
  margin-bottom: clamp(44px, 6vh, 72px);
}

@media (min-width: 1025px) {
  .reise .schritte { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Fallstudie (weiße Bühne) ---------- */

.fall {
  background: var(--bg);
  padding-block: clamp(60px, 8.5vh, 108px);
}

.fall-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
}

.fall-media { margin: 0; }

.fall-story {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.fall-story h2 { font-size: var(--fs-h2); }

.fall-kontext { color: var(--ink-soft); max-width: 54ch; }

.fall-zitat {
  margin: 6px 0 0;
  display: grid;
  gap: 12px;
}

.fall-zitat p {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.fall-zitat footer { display: flex; flex-direction: column; gap: 1px; }
.fall-zitat footer strong { font-size: 0.98rem; }
.fall-zitat footer span { font-size: 0.86rem; color: var(--ink-leise); }

.fall-siegel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--linie);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
}

.fall-siegel svg { flex: none; }

@media (max-width: 900px) {
  .fall-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Für wen: Passt / Passt nicht ---------- */

.fuerwen {
  background: var(--bg);
  padding-block: clamp(60px, 8.5vh, 108px);
}

.fuerwen h2 {
  font-size: var(--fs-h2);
  max-width: 22ch;
  margin-bottom: clamp(36px, 5vh, 60px);
}

.fw-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

/* Häkchen/Kreuz im Held-Maßstab: der Blick fällt aufs Ja */
.fw-glyph {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 0.9;
  color: var(--petrol);
  margin-bottom: 14px;
}

.fw-passt h3 { margin-bottom: 10px; }

/* Passt nicht: eingelassene dunkle Karte (Muster main.css .anti-karte) */
.anti-karte.fw-nicht {
  padding: clamp(28px, 3.6vw, 52px);
  align-content: start;
}

.fw-nicht .fw-glyph {
  color: var(--mint-hell);
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.fw-nicht h3 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 10px;
}

.fw-nicht p { color: var(--dunkel-soft); max-width: 52ch; }

@media (max-width: 900px) {
  .fw-duo { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Ablauf: Split mit 30-Tage-Anker ---------- */

.weg {
  background:
    radial-gradient(760px 380px at 8% 108%, rgba(103, 205, 198, 0.12), transparent 60%),
    var(--bg-tint);
  padding-block: clamp(60px, 8.5vh, 108px);
}

.weg-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

.weg-kopf {
  position: sticky;
  top: 120px;
  display: grid;
  gap: clamp(20px, 3vh, 30px);
}

.weg-kopf h2 { font-size: var(--fs-h2); }

.weg-anker { display: grid; gap: 14px; }

/* Monumentalzahl mit Odometer (Ausnahme laut DESIGN.md) */
.weg-zahl {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-mega);
  line-height: 0.86;
  color: var(--petrol);
  font-variant-numeric: tabular-nums;
}

.weg-einheit {
  font-size: 0.3em;
  font-weight: 600;
  margin-left: 0.18em;
  color: var(--petrol);
}

.weg-label {
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 26ch;
  line-height: 1.55;
}

.weg-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
}

/* Vertikale Schiene hinter den Schritt-Kacheln */
.weg-liste::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 26px;
  width: 2px;
  background: linear-gradient(180deg, var(--petrol), var(--mint-hell) 55%, var(--petrol));
  opacity: 0.35;
}

.weg-liste .schritt {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(18px, 3vw, 32px);
  row-gap: 6px;
  padding-block: clamp(20px, 3vh, 34px);
  position: relative;
  z-index: 1;
}

.weg-liste .schritt-nr { grid-row: 1 / span 2; margin-bottom: 0; }

.weg-liste .schritt h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0;
  align-self: center;
}

@media (max-width: 900px) {
  .weg-grid { grid-template-columns: minmax(0, 1fr); }
  .weg-kopf { position: static; }
}
