:root {
  --blue: #206AB2;
  --blue-dark: #17518a;
  --dark: #494948;
  --accent: #C4DCF3;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* ---------- Sticky Header ---------- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--accent);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  z-index: 100;
}

.sticky-header.sichtbar {
  transform: translateY(0);
}

.sticky-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-img {
  height: 60px;
  width: auto;
}

.header-nav-gruppe {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-track {
  display: flex;
  background: #f1f4f7;
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
}

.header-track a {
  color: #7a7f83;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.header-track a:hover {
  color: var(--blue);
}

.header-track a.aktiv {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.header-track-dropdown { position: relative; display: flex; }
.header-track-dropdown-inhalt {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  padding: 8px;
  min-width: 190px;
  z-index: 10;
}
.header-track-dropdown:hover .header-track-dropdown-inhalt,
.header-track-dropdown:focus-within .header-track-dropdown-inhalt {
  display: block;
}
.header-track-dropdown-inhalt a {
  display: block;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  padding: 8px 10px;
  border-radius: 6px;
  background: none;
  box-shadow: none;
}
.header-track-dropdown-inhalt a:hover { background: var(--accent); color: var(--dark); }

.header-login-pill {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.header-login-pill:hover {
  background: var(--blue-dark);
}

.header-rechtliches {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  margin-left: 14px;
  border-left: 1px solid #eef1f3;
}
.header-rechtliches a {
  font-size: 10px;
  color: #a8adb2;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}
.header-rechtliches a:hover { color: var(--blue); text-decoration: underline; }

.header-rechtliches-mobil { display: none; }

.mobil-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobil-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ---------- TOP-Button ---------- */
.top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(32, 106, 178, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.15s ease;
  z-index: 90;
}

.top-button.sichtbar {
  opacity: 1;
  pointer-events: auto;
}

.top-button:hover {
  background: var(--blue-dark);
}

/* ---------- Neue Hero-Sektion (Split-Screen, angelehnt an Vorlage) ---------- */
.hero-neu {
  position: relative;
  min-height: 100vh;
  background-color: var(--blue);
  background-image: linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)), url('/images/landing.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  scroll-margin-top: 0;
}

.hero-trennlinie {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: calc(58% + 5px);
  background: var(--blue);
  clip-path: polygon(23.3% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-weiss {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  background: var(--white);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 40px;
}

.hero-logo-gross {
  max-width: 340px;
  width: 70%;
  height: auto;
}

.hero-inhalt-rahmen {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
}

.hero-blau {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 140px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  color: var(--white);
}

.hero-top {
  position: absolute;
  top: 40px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  z-index: 3;
}

.hero-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 10px 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.hero-nav a:last-child {
  background: var(--white);
  color: var(--blue);
}

.hero-nav a:hover,
.hero-nav a.aktiv {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-nav a:last-child:hover {
  background: var(--accent);
}

.hero-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  border-radius: 999px;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.hero-login-btn:hover {
  background: var(--accent);
}

.hero-mitte {
  max-width: 420px;
}

.hero-mitte h1 {
  font-size: 32px;
  margin: 0 0 16px;
  line-height: 1.25;
}

.hero-mitte p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

.hero-icon-buttons {
  display: flex;
  gap: 18px;
}

.hero-icon-btn {
  width: 108px;
  height: 108px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.hero-icon-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-nav-dropdown { position: relative; }
.hero-nav-dropdown-inhalt {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  padding: 8px;
  min-width: 180px;
  z-index: 10;
}
.hero-nav-dropdown:hover .hero-nav-dropdown-inhalt,
.hero-nav-dropdown:focus-within .hero-nav-dropdown-inhalt {
  display: block;
}
.hero-nav-dropdown-inhalt a {
  display: block;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
}
.hero-nav-dropdown-inhalt a:hover { background: var(--accent); }

@media (max-width: 900px) {
  .hero-trennlinie, .hero-weiss { display: none; }

  .hero-neu {
    background-image: linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)), url('/images/landing_mobile.jpg');
    background-color: var(--blue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-inhalt-rahmen { flex-direction: column; min-height: auto; }

  .hero-blau {
    max-width: 100%;
    padding: 50px 24px;
    align-items: center;
    text-align: center;
  }

  .hero-mitte { text-align: center; }

  .hero-top { display: none; }

  .hero-icon-buttons { justify-content: center; }
}

@media (max-width: 640px) {
  .hero-nav { display: none; }
}

@media (max-width: 480px) {
  .hero-icon-buttons { gap: 10px; }
  .hero-icon-btn { width: 92px; height: 92px; font-size: 11px; gap: 6px; }
  .hero-icon-btn svg { width: 24px; height: 24px; }
}

@media (max-width: 900px) {
  .sticky-header {
    transform: translateY(0) !important;
    height: 68px;
  }
  .sticky-header-inner {
    position: relative;
    justify-content: flex-end;
  }
  .header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header-logo-img { height: 40px; }
  .header-rechtliches { display: none; }
  body { padding-top: 68px; }
}



/* ---------- Wiederverwendbares Split-Layout für Unterseiten ---------- */
.split-sektion {
  display: flex;
  min-height: 100vh;
}

.split-weiss,
.split-farbe {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 90px 40px;
}

.split-weiss { background: var(--white); }

.split-farbe {
  background-color: var(--blue);
  background-size: cover;
  background-position: center;
  color: var(--dark);
}

.split-farbe.bild-upload   { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/upload.jpg'); }
.split-farbe.bild-download { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/download.jpg'); }
.split-farbe.bild-faq      { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/faq.jpg'); }
.split-farbe.bild-kontakt  { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/kontakt.jpg'); }

.split-weiss-inner {
  width: 100%;
  max-width: 480px;
}

.split-farbe-inner {
  max-width: 360px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 30px 32px;
}

.split-farbe-inner h3 { font-size: 24px; margin: 0 0 12px; color: var(--blue-dark); }
.split-farbe-inner p { font-size: 14px; line-height: 1.7; margin: 0; color: var(--dark); }

.richtung-landing .split-farbe {
  order: 1;
  justify-content: flex-start;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}
.richtung-landing .split-weiss {
  order: 2;
  justify-content: center;
}

.richtung-gespiegelt .split-weiss {
  order: 1;
  justify-content: center;
}
.richtung-gespiegelt .split-farbe {
  order: 2;
  justify-content: flex-end;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 900px) {
  .split-sektion { flex-direction: column; min-height: auto; }
  .split-weiss {
    order: 2 !important;
    flex: none;
    width: 100%;
    clip-path: none !important;
    padding: 50px 24px;
    justify-content: center !important;
  }
  .split-weiss-inner { max-width: 100%; }
  .split-farbe {
    order: 1 !important;
    flex: none;
    width: 100%;
    clip-path: none !important;
    min-height: 0;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    padding: 0;
    display: flex;
    background-color: var(--accent);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .split-farbe.bild-upload   { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/upload_mobile.jpg'); }
  .split-farbe.bild-download { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/download_mobile.jpg'); }
  .split-farbe.bild-faq      { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/faq_mobile.jpg'); }
  .split-farbe.bild-kontakt  { background-image: linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)), url('/images/kontakt_mobile.jpg'); }
  .split-farbe-inner {
    width: 100%;
    height: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }
  .split-farbe-inner h3 { margin: 0; }
  .split-farbe-inner p { margin: 0; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .split-farbe {
    height: auto;
    max-height: none;
    padding: 60px 40px;
    align-items: center;
    justify-content: center;
  }
  .split-farbe-inner {
    width: auto;
    height: auto;
    max-width: 360px;
    padding: 30px 32px;
    display: block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 18px;
  }
  .split-farbe-inner h3 { margin: 0 0 12px; }
  .split-farbe-inner p { margin: 0; }
}

/* ---------- Content-Abschnitte: volle Höhe, Inhalt vertikal zentriert ---------- */
.abschnitt {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-top: 5px solid var(--accent);
}

.abschnitt-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 24px;
}

.abschnitt-inner h2 {
  font-size: 26px;
  margin: 0 0 14px;
}

.abschnitt-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0 0 12px;
}

.cta {
  display: inline-block;
  margin-top: 14px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.cta:hover {
  background: var(--blue-dark);
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item .frage {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

/* ---------- Eingebettetes Upload-Formular ---------- */
.upload-zone {
  border: 2px dashed #d9dee3; border-radius: 10px;
  background: #fafbfc; padding: 36px 20px; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s;
  margin-top: 24px;
}
.upload-zone.hover { border-color: var(--blue); background: var(--accent); }
.upload-zone .haupttext { font-weight: 600; margin-bottom: 4px; }
.upload-zone .nebentext { font-size: 13px; color: #8a929b; }
.upload-zone.klein { margin-top: 16px; padding: 20px; }

.formular-felder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-top: 20px;
}
.feld { display: flex; flex-direction: column; gap: 6px; }
.feld.voll { grid-column: 1 / -1; }
.feld label { font-size: 13px; font-weight: 600; text-align: left; }
.feld input, .feld textarea {
  border: 1px solid #d9dee3; border-radius: 8px; padding: 11px 12px;
  font-size: 14px; font-family: inherit; width: 100%;
}
.feld input:focus, .feld textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--accent);
}
.feld textarea { resize: vertical; min-height: 80px; }

.dateiliste { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.datei-eintrag { border: 1px solid #d9dee3; border-radius: 8px; padding: 10px 14px; font-size: 13px; text-align: left; }
.datei-eintrag .kopf { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.datei-eintrag .groesse { color: #8a929b; margin-left: 6px; }
.datei-eintrag .entfernen-btn {
  background: none; border: none; color: #b23b3b; font-size: 12px;
  cursor: pointer; font-weight: 600; padding: 0;
}
.fortschritt-leiste { height: 6px; background: #eef1f3; border-radius: 4px; overflow: hidden; }
.fortschritt-fuellung { height: 100%; width: 0%; background: var(--blue); transition: width .2s; }

.absenden {
  margin-top: 20px;
  background: var(--blue); color: #fff; border: none;
  border-radius: 8px; padding: 14px 28px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .15s;
}
.absenden:hover { background: var(--blue-dark); }
.absenden:disabled { background: #a9bdd0; cursor: not-allowed; }
.absenden.sekundaer {
  background: var(--white); color: var(--blue); border: 1.5px solid var(--blue);
}
.absenden.sekundaer:hover { background: var(--accent); }

.status-meldung { font-size: 13px; padding: 12px 14px; border-radius: 8px; text-align: left; margin-top: 16px; }
.status-meldung.fehler { background: #fdecec; color: #b23b3b; }
.status-meldung.erfolg { background: #eaf6ec; color: #2e7d42; }
.status-meldung.info { background: var(--accent); color: var(--blue-dark); }

.erfolg-ansicht { text-align: center; padding: 60px 0; }
.erfolg-ansicht .haken {
  width: 56px; height: 56px; border-radius: 50%; background: #2e7d42; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  margin: 0 auto 16px;
}
.erfolg-ansicht .zurueck-link {
  display: inline-block; margin-top: 16px; color: var(--blue);
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.erfolg-ansicht .zurueck-link:hover { text-decoration: underline; }

/* ---------- Kontaktdaten bearbeiten (Übersicht) ---------- */
.kontakt-bearbeiten {
  background: #fafbfc;
  border: 1px solid #e5e9ed;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.kontakt-bearbeiten h3 { margin: 0 0 4px; font-size: 16px; }

/* ---------- Übersicht der hochgeladenen Dateien ---------- */
.uebersicht-karte {
  background: var(--white);
  border: 1px solid #e5e9ed;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.uebersicht-icon {
  width: 46px; height: 46px; border-radius: 8px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0; overflow: hidden;
}
.uebersicht-icon img { width: 100%; height: 100%; object-fit: cover; }
.uebersicht-info { flex: 1; min-width: 0; }
.uebersicht-name { font-weight: 700; font-size: 14px; word-break: break-word; }
.uebersicht-meta { font-size: 12px; color: #8a929b; margin-top: 2px; }
.uebersicht-notiz {
  width: 100%; margin-top: 8px; border: 1px solid #d9dee3; border-radius: 6px;
  padding: 7px 10px; font-size: 12px; font-family: inherit; resize: vertical;
}
.uebersicht-loeschen {
  background: none; border: none; color: #b23b3b; font-size: 12px;
  font-weight: 600; cursor: pointer; flex-shrink: 0;
}

.konto-option {
  margin-top: 28px;
  background: var(--accent);
  border-radius: 12px;
  padding: 18px 20px;
}
.konto-checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 700; font-size: 14px; cursor: pointer;
}
.konto-checkbox-label input { margin-top: 3px; width: 16px; height: 16px; }
.konto-erklaerung {
  font-size: 13px; color: var(--blue-dark); margin: 8px 0 0 26px; line-height: 1.6;
}

/* ---------- Download-Formular (Code + PLZ) ---------- */
.formular-schmal {
  display: flex; flex-direction: column; gap: 14px; margin-top: 24px;
  max-width: 320px; text-align: left;
}

.kontakt-adresse {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eef1f3;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  line-height: 1.7;
}
.kontakt-adresse img { height: 50px; width: auto; flex-shrink: 0; }
.kontakt-adresse a { color: var(--blue); text-decoration: none; }
.kontakt-adresse a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 28px 16px;
  font-size: 13px;
  color: var(--dark);
  opacity: 0.8;
}

footer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

footer .trenner {
  color: var(--accent);
  margin: 0 10px;
}

@media (max-width: 900px) {
  footer {
    background: var(--accent);
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 18px;
    padding: 28px 24px;
  }
  footer .footer-copy { width: 100%; text-align: center; color: var(--dark); }
  footer a { color: #fff; }
  footer .trenner { display: none; }
}

@media (max-width: 900px) and (orientation: landscape) {
  footer { font-size: 11px; padding: 18px 24px; gap: 6px 14px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .logo { max-width: 200px; }

  .buttons {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 260px;
    gap: 16px;
  }

  .btn { padding: 18px 14px; min-height: 76px; font-size: 14px; }

  .header-nav-gruppe {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e9ed;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  }

  .header-nav-gruppe.offen { display: flex; }

  .header-track {
    flex-direction: column;
    background: none;
    padding: 0;
    gap: 4px;
  }

  .header-track a {
    text-align: center;
    padding: 12px 16px;
    background: #f1f4f7;
  }

  .header-track a.aktiv {
    background: var(--accent);
  }

  .header-track-dropdown {
    flex-direction: column;
  }

  .header-track-dropdown-inhalt {
    display: block !important;
    position: static;
    transform: none;
    box-shadow: none;
    background: none;
    padding: 4px 0 0 16px;
    margin-top: 0;
    min-width: 0;
  }

  .header-track-dropdown-inhalt a {
    text-align: left;
    background: none;
    font-size: 12px;
    color: #7a7f83;
  }

  .header-login-pill {
    text-align: center;
  }

  .header-rechtliches-mobil {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid #eef1f3;
  }

  .header-rechtliches-mobil a {
    font-size: 12px;
    color: #7a7f83;
    text-decoration: none;
  }

  .mobil-menu-btn { display: flex; }

  .abschnitt-inner { padding: 60px 20px; }

  .formular-felder-grid { grid-template-columns: 1fr; }
}