/* ——— EXPRESS-BEWERBUNG: geführter Schritt-für-Schritt-Bewerbungsflow ———
   Pro Bildschirm nur eine Frage mit großen Klick-Buttons, dazu ein
   Fortschrittsbalken. Reiner Frontend-Flow: die eigentliche Zustellung
   der Daten (E-Mail/Backend) ist als TODO in js/bewerbung.js markiert. */
.bewerbung { padding: 24px 56px 80px; display: flex; flex-direction: column; gap: 16px; }

.bewerbung-card {
  background: var(--accent);
  color: #fff;
  border-radius: 0 var(--side-round) var(--side-round) 0;
  padding: 56px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bewerbung .card-label { font-size: var(--fs-small); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.bewerbung .card-label--light { color: rgba(255,255,255,.75); }

.bewerbung-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.bewerbung-progress[hidden] { display: none; }
.bewerbung-progress__track { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,.22); overflow: hidden; }
.bewerbung-progress__fill { height: 100%; width: 0%; border-radius: 999px; background: #fff; transition: width .35s ease; }
.bewerbung-progress__label { flex-shrink: 0; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); }

.bf-panel { display: none; max-width: 620px; margin: 0 auto; width: 100%; }
.bf-panel.is-active { display: block; animation: bfIn .35s ease both; }
@keyframes bfIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.bf-panel[data-panel="intro"] { text-align: center; }
.bf-panel h2 { margin-top: 10px; font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.bf-panel[data-panel="intro"] > p { margin-top: 16px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.85); }
.bf-panel h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; max-width: 26ch; }
.bf-start { margin-top: 28px; }

.bf-back {
  display: inline-flex; margin-bottom: 18px;
  background: none; border: 0; padding: 0;
  font: 600 13px Manrope, sans-serif; color: rgba(255,255,255,.7);
  cursor: pointer; transition: color .15s ease;
}
.bf-back:hover { color: #fff; }

.bf-choices { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.bf-choice {
  text-align: left;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font: 600 16px/1.4 Manrope, sans-serif;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.bf-choice:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.55); transform: translateX(4px); }
.bf-choice.is-selected { background: #fff; color: var(--accent); border-color: #fff; }

.bf-conditional { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.bf-conditional label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); }
.bf-conditional textarea {
  font: 500 15px Manrope, sans-serif;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  min-height: 90px;
  resize: vertical;
}
.bf-conditional textarea::placeholder { color: rgba(255,255,255,.6); }
.bf-conditional textarea:focus { outline: 2px solid #fff; background: rgba(255,255,255,.18); }
.bf-conditional .btn { justify-self: start; align-self: flex-start; }

.bf-panel--form { max-width: 720px; }
.bf-contact-form { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bf-field { display: flex; flex-direction: column; gap: 6px; }
.bf-field--full { grid-column: 1 / -1; }
.bf-field label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.bf-field input, .bf-field textarea {
  font: 600 15px Manrope, sans-serif;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
}
.bf-field input::placeholder, .bf-field textarea::placeholder { color: rgba(255,255,255,.6); }
.bf-field textarea { resize: vertical; min-height: 90px; font-weight: 500; }
.bf-field input:focus, .bf-field textarea:focus { outline: 2px solid #fff; background: rgba(255,255,255,.18); }
.bf-file {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 8px;
}
.bf-file__input {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0;
}
.bf-field .bf-file__button {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font: 700 13px Manrope, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  transition: background .15s ease;
}
.bf-file__button:hover { background: rgba(255,255,255,.85); }
.bf-file__name { font-size: 13px; color: rgba(255,255,255,.75); }
.bf-privacy { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.75); }
.bf-privacy a { color: #fff; font-weight: 700; text-decoration: underline; }
.bf-contact-form .btn { margin-top: 4px; justify-self: start; }

.bf-panel--end { text-align: center; }
.bf-panel--end p { margin-top: 14px; max-width: 44ch; margin-left: auto; margin-right: auto; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.85); }
.bf-thanks-contact { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); display: flex; flex-direction: column; gap: 8px; }
.bf-thanks-contact a { color: #fff; font-weight: 700; text-decoration: none; }
.bf-thanks-contact a:hover { text-decoration: underline; }
.bf-panel--end a { color: #fff; font-weight: 700; }

/* ——— Bewerbungs-Fahrplan: direkt unter dem Formular ———
   Statische Vier-Schritte-Übersicht (kein Scroll-Pinning mehr). Jeder
   Schritt ist eine eigenständige Karte, damit die Spaltenzahl bei
   schmaleren Bildschirmen sauber umbricht (2, dann 1 Spalte), statt
   wie beim früheren Ribbon feste Zeilen über alle Karten zu teilen. ——— */
.bewerbung-roadmap {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: var(--side-round);
  padding: 48px 56px;
}
.bewerbung-roadmap h2 { margin-top: 6px; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.02em; }

.bf-roadmap-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 32px 40px;
  margin-top: 40px;
}
.bf-roadmap-step { display: flex; flex-direction: column; }
.bf-roadmap-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px 0 10px 0;
  background: var(--accent); color: #fff;
  font: 800 15px Manrope, sans-serif;
}
.bf-roadmap-step h4 { margin-top: 16px; font-size: 15px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.35; }
.bf-roadmap-step p { margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--muted); }

@media (max-width: 960px) {
  .bewerbung { padding: 24px 20px 56px; }
  .bewerbung-card { border-radius: 0 28px 28px 0; padding: 32px 24px; min-height: 0; }
  .bf-contact-form { grid-template-columns: 1fr; }
  .bewerbung-roadmap { border-radius: 28px; padding: 32px 24px; }
  .bf-roadmap-track { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}
@media (max-width: 560px) {
  .bf-roadmap-track { grid-template-columns: 1fr; }
}
