/* Karriere bei La Linea, gemeinsames Stylesheet beider Seiten.
   Nachbau der OnePage-Seiten vom 25.09.2026, selbst gehostet.
   Aufbau: Schriften, Farben und Grundregeln, dann die Bausteine je
   Abschnitt (aus den OnePage-Modulen übernommen), zuletzt Kopf, Fuß,
   Anzeigentext und Einblenden. */

/* ---------- Schriften (lokal, nur genutzte Schnitte) ---------- */
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap; src: url(/schrift/montserrat-700.woff2?v=340cbe64) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 800; font-display: swap; src: url(/schrift/montserrat-800.woff2?v=54ecc83a) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url(/schrift/open-sans-400.woff2?v=c07cd0d1) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url(/schrift/open-sans-500.woff2?v=58d8b0cd) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url(/schrift/open-sans-600.woff2?v=b94f001b) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url(/schrift/open-sans-700.woff2?v=d03f336b) format("woff2"); }

/* ---------- Farben und Schriftwerte (wie im OnePage-Kit) ---------- */
:root {
  --font-kit-header-font: "Montserrat", sans-serif;
  --font-kit-header-font-weight: 700;
  --font-kit-header-line-height: 1.2;
  --font-kit-text-font: "Open Sans", sans-serif;
  --font-kit-text-font-weight: 400;
  --font-kit-text-line-height: 1.5;
  --font-kit-text-font-weight-bold: 600;
  --color-kit-white: #FFFFFF;
  --color-kit-black: #000000;
  --color-kit-light: #F6F6F6;
  --color-kit-dark: #232021;
  --color-kit-key1: #90A3B0;
  --color-kit-key2: #536772;
}

/* ---------- Grundregeln ---------- */
*, ::before, ::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--color-kit-dark);
  font-family: var(--font-kit-text-font);
  font-size: 14px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.sprung {
  position: absolute; left: 8px; top: -60px; z-index: 10001;
  padding: 8px 14px; border-radius: 6px;
  background: var(--color-kit-dark); color: #fff; font-weight: 600;
}
.sprung:focus { top: 8px; }
#inhalt:focus { outline: none; }

/* ---------- Überschriften ---------- */
.titel__title {
  font-family: var(--font-kit-header-font);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-kit-dark, #1a1a1a);
}
.titel__size-xs {
  font-size: 18px;
}
.titel__size-sm {
  font-size: 24px;
}
.titel__size-md {
  font-size: 32px;
}
.titel__size-lg {
  font-size: 44px;
}
.titel__size-xl {
  font-size: 60px;
}
.titel__size-xxl {
  font-size: 80px;
}
@media (max-width: 768px) {
  .titel__size-lg {
    font-size: 34px;
  }
  .titel__size-xl {
    font-size: 42px;
  }
  .titel__size-xxl {
    font-size: 52px;
  }
}
.titel__align-left {
  text-align: left;
}
.titel__align-center {
  text-align: center;
}
.titel__align-right {
  text-align: right;
}
.titel__uppercase {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- Fließtext ---------- */
.text__text {
  font-family: var(--font-kit-text-font);
  line-height: 1.6;
  margin: 0;
  color: var(--color-kit-dark, #3a3a3a);
}
.text__size-sm {
  font-size: 14px;
}
.text__size-md {
  font-size: 17px;
}
.text__size-lg {
  font-size: 20px;
}
.text__weight-regular {
  font-weight: 400;
}
.text__weight-medium {
  font-weight: 600;
}
.text__weight-bold {
  font-weight: 700;
}
.text__align-left {
  text-align: left;
}
.text__align-center {
  text-align: center;
}
.text__align-right {
  text-align: right;
}

/* ---------- Etikett ---------- */
.marke__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-kit-header-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}
.marke__color-key1 {
  background: var(--color-kit-key1, #ffa406);
  color: var(--color-kit-dark, #022a3f);
}
.marke__color-dark {
  background: var(--color-kit-dark, #022a3f);
  color: var(--color-kit-white, #fff);
}
.marke__color-white {
  background: var(--color-kit-white, #fff);
  color: var(--color-kit-dark, #022a3f);
}

/* ---------- Karte ---------- */
.karte__card {
  border-radius: 16px;
  background: var(--color-kit-white, #fff);
  box-sizing: border-box;
}
.karte__padding-sm {
  padding: 20px;
}
.karte__padding-md {
  padding: 28px;
}
.karte__padding-lg {
  padding: 36px;
}
.karte__flat {
  background: var(--color-kit-light, #f6f6f6);
}
.karte__bordered {
  border: 1px solid #e4e8eb;
  box-shadow: 0 1px 3px rgba(2, 42, 63, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.karte__bordered:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(2, 42, 63, 0.22);
  border-color: #d8dee2;
}
.karte__elevated {
  background: var(--color-kit-white, #fff);
  box-shadow: 0 20px 40px -18px rgba(2, 42, 63, 0.25);
}

/* ---------- Knopf ---------- */
.knopf__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 12px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  white-space: normal;
  text-align: left;
  line-height: 1.25;
}
.knopf__button:focus-visible {
  outline: 3px solid var(--color-kit-key1, #ffa406);
  outline-offset: 3px;
}
.knopf__size-md {
  padding: 12px 22px;
  font-size: 14px;
}
.knopf__size-lg {
  padding: 18px 28px;
  font-size: 16px;
}
.knopf__fullWidth {
  width: 100%;
}
.knopf__solid.knopf__color-key1 {
  background: var(--color-kit-key1, #ffa406);
  color: var(--color-kit-dark, #022a3f);
  border-color: var(--color-kit-key1, #ffa406);
  box-shadow: 0 2px 6px rgba(2, 42, 63, 0.12);
}
.knopf__solid.knopf__color-key1:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(255, 164, 6, 0.55);
}
.knopf__solid.knopf__color-key1:active {
  transform: translateY(0);
}
.knopf__solid.knopf__color-dark {
  background: var(--color-kit-dark, #022a3f);
  color: var(--color-kit-white, #fff);
  border-color: var(--color-kit-dark, #022a3f);
  box-shadow: 0 2px 6px rgba(2, 42, 63, 0.18);
}
.knopf__solid.knopf__color-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(2, 42, 63, 0.45);
}
.knopf__solid.knopf__color-dark:active {
  transform: translateY(0);
}
.knopf__solid.knopf__color-white {
  background: var(--color-kit-white, #fff);
  color: var(--color-kit-dark, #022a3f);
  border-color: var(--color-kit-white, #fff);
  box-shadow: 0 2px 6px rgba(2, 42, 63, 0.12);
}
.knopf__solid.knopf__color-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(2, 42, 63, 0.25);
}
.knopf__outline.knopf__color-key1 {
  background: transparent;
  color: var(--color-kit-key1, #ffa406);
  border-color: var(--color-kit-key1, #ffa406);
}
.knopf__outline.knopf__color-key1:hover {
  background: var(--color-kit-key1, #ffa406);
  color: var(--color-kit-dark, #022a3f);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(255, 164, 6, 0.45);
}
.knopf__outline.knopf__color-white {
  background: transparent;
  color: var(--color-kit-white, #fff);
  border-color: var(--color-kit-white, #fff);
}
.knopf__outline.knopf__color-white:hover {
  background: var(--color-kit-white, #fff);
  color: var(--color-kit-dark, #022a3f);
  transform: translateY(-2px);
}
.knopf__outline.knopf__color-dark {
  background: transparent;
  color: var(--color-kit-dark, #022a3f);
  border-color: #d8dee2;
}
.knopf__outline.knopf__color-dark:hover {
  border-color: var(--color-kit-dark, #022a3f);
  background: var(--color-kit-dark, #022a3f);
  color: var(--color-kit-white, #fff);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(2, 42, 63, 0.35);
}
.knopf__ghost.knopf__color-dark {
  background: transparent;
  color: var(--color-kit-dark, #022a3f);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Videorahmen ---------- */
.video__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-kit-dark, #232021);
  box-shadow: 0 18px 44px #00000024;
  isolation: isolate;
}
.video__landscape {
  aspect-ratio: 16 / 9;
}
.video__portrait {
  aspect-ratio: 9 / 16;
}
.video__square {
  aspect-ratio: 1 / 1;
}
.video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: var(--color-kit-dark, #232021);
}
.video__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  display: block;
  text-align: left;
}
.video__cover:disabled {
  cursor: default;
}
.video__cover:focus-visible {
  outline: 3px solid var(--color-kit-key1, #90a3b0);
  outline-offset: 3px;
}
.video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video__posterFallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 90% at 22% 12%,
      #ffffff1f 0%,
      #ffffff00 58%),
    linear-gradient(
      150deg,
      var(--color-kit-dark, #232021) 0%,
      var(--color-kit-secondary, #536772) 100%);
}
.video__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #0000000f 0%,
      #00000059 100%);
  transition: background 0.35s ease;
}
.video__cover:hover .video__poster {
  transform: scale(1.035);
}
.video__cover:hover .video__veil {
  background:
    linear-gradient(
      180deg,
      #00000024 0%,
      #00000070 100%);
}
.video__playBadge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-kit-white, #ffffff);
  color: var(--color-kit-dark, #232021);
  box-shadow: 0 10px 26px #00000047;
  transition: transform 0.3s ease, background 0.3s ease;
  padding-left: 4px;
}
.video__cover:hover .video__playBadge {
  transform: translate(-50%, -50%) scale(1.09);
}
.video__caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-kit-white, #ffffff);
  font-family: inherit;
}
.video__pendingNote {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(84%, 320px);
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffffcc;
  font-family: inherit;
  border: 1px dashed #ffffff59;
  border-radius: 12px;
  padding: 14px 16px;
}
@media (max-width: 640px) {
  .video__frame {
    border-radius: 16px;
  }
  .video__playBadge {
    width: 60px;
    height: 60px;
  }
  .video__caption {
    left: 14px;
    bottom: 14px;
    font-size: 11px;
  }
}

/* ---------- Startseite: Einstieg ---------- */
.hero__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-kit-light, #f6f6f6);
  padding: 64px 24px;
  box-sizing: border-box;
}
.hero__heroFull {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__roadline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0,
      transparent 140px,
      var(--color-kit-key1, #ffa406) 140px,
      var(--color-kit-key1, #ffa406) 144px,
      transparent 144px,
      transparent 220px);
  opacity: 0.16;
  mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      black 18%,
      black 82%,
      transparent 100%);
}
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero__headline {
  margin-top: 4px;
}
.hero__subline {
  color: var(--color-kit-dark, #022a3f);
}
.hero__body {
  max-width: 540px;
  color: #44505a;
}
.hero__closing {
  color: var(--color-kit-dark, #022a3f);
}
.hero__jobsBlock {
  margin-top: 12px;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__jobsKicker {
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
  margin-bottom: 2px;
}
.hero__jobCard {
  width: 100%;
}
.hero__jobBtnInner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
.hero__jobCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: var(--color-kit-white, #fff);
  border: 1px solid #e4e8eb;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 1px 3px rgba(2, 42, 63, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.hero__jobCard:hover {
  transform: translateY(-3px);
  border-color: var(--color-kit-key1, #ffa406);
  box-shadow: 0 16px 32px -12px rgba(2, 42, 63, 0.18);
}
.hero__jobCard:focus-visible {
  outline: 3px solid var(--color-kit-key1, #ffa406);
  outline-offset: 2px;
}
.hero__jobCardButton {
  border: 1px solid #e4e8eb;
}
.hero__jobCardFilled {
  cursor: default;
  background: var(--color-kit-light, #f6f6f6);
  border-color: #e4e8eb;
  box-shadow: none;
}
.hero__jobCardFilled:hover {
  transform: none;
  border-color: #e4e8eb;
  box-shadow: none;
}
.hero__jobCardFilled .hero__jobBtnTitle,
.hero__jobCardFilled .hero__jobBtnLoc {
  color: #9aa4ab;
}
.hero__filledBadge {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e4e8eb;
  color: #6b757c;
  font-family: var(--font-kit-header-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero__jobCardText {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.hero__jobCardArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-kit-light, #f6f6f6);
  color: var(--color-kit-dark, #022a3f);
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.hero__jobCard:hover .hero__jobCardArrow {
  background: var(--color-kit-key1, #ffa406);
  color: var(--color-kit-dark, #022a3f);
  transform: translateX(3px);
}
.hero__jobBtnTitle {
  font-family: var(--font-kit-header-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-kit-dark, #022a3f);
}
.hero__jobBtnLoc {
  font-family: var(--font-kit-text-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #6b757c;
}
.hero__jobBtnOutline {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 18px 28px;
  background: transparent;
  color: var(--color-kit-dark, #022a3f);
  border: 2px solid var(--color-kit-dark, #022a3f);
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.hero__jobBtnOutline:hover {
  background: var(--color-kit-dark, #022a3f);
  color: var(--color-kit-white, #fff);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-kit-key1, #ffa406);
}
.hero__jobBtnOutline:focus-visible {
  outline: 3px solid var(--color-kit-key1, #ffa406);
  outline-offset: 3px;
}
.hero__imageWrap {
  position: relative;
}
.hero__imageFrame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(2, 42, 63, 0.35);
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__imageAccent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50%;
  height: 14px;
  background: var(--color-kit-key1, #ffa406);
  z-index: -1;
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__imageWrap {
    order: -1;
  }
  .hero__imageFrame {
    aspect-ratio: 4 / 3;
  }
  .hero__hero {
    padding: 48px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__hero * {
    transition: none !important;
  }
}

/* ---------- Startseite: Unsere Kultur ---------- */
.werte__section {
  width: 100%;
  background: var(--color-kit-white, #fff);
  padding: 96px 24px;
  box-sizing: border-box;
}
.werte__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.werte__container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
.werte__intro {
  max-width: 620px;
  margin-bottom: 56px;
}
.werte__kicker {
  display: inline-block;
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
  margin-bottom: 14px;
}
.werte__headline {
  margin-bottom: 16px;
}
.werte__introText {
  color: #5a6670;
}
.werte__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.werte__valueCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.werte__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-kit-light, #f6f6f6);
  color: var(--color-kit-dark, #022a3f);
}
.werte__valueTitle {
  margin-top: 4px;
}
.werte__valueText {
  color: #5a6670;
}
@media (max-width: 1000px) {
  .werte__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .werte__grid {
    grid-template-columns: 1fr;
  }
  .werte__section {
    padding: 64px 20px;
  }
}

/* ---------- Startseite: Was wir bieten ---------- */
.vorteile__section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-kit-dark, #022a3f);
  padding: 96px 24px;
  box-sizing: border-box;
}
.vorteile__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vorteile__roadline {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0,
      transparent 100px,
      rgba(255, 164, 6, 0.08) 100px,
      rgba(255, 164, 6, 0.08) 103px,
      transparent 103px,
      transparent 160px);
}
.vorteile__container {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
.vorteile__intro {
  max-width: 620px;
  margin-bottom: 48px;
}
.vorteile__kicker {
  display: inline-block;
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
  margin-bottom: 14px;
}
.vorteile__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 48px;
}
.vorteile__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vorteile__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 164, 6, 0.16);
  color: var(--color-kit-key1, #ffa406);
  margin-top: 2px;
}
.vorteile__itemText {
  font-family: var(--font-kit-text-font);
  font-size: 17px;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 800px) {
  .vorteile__list {
    grid-template-columns: 1fr;
  }
  .vorteile__section {
    padding: 64px 20px;
  }
}

/* ---------- Startseite: Deine Aufgaben ---------- */
.aufgaben__section {
  width: 100%;
  background: var(--color-kit-white, #fff);
  padding: 96px 24px;
  box-sizing: border-box;
}
.aufgaben__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aufgaben__container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
.aufgaben__intro {
  max-width: 620px;
  margin-bottom: 48px;
}
.aufgaben__kicker {
  display: inline-block;
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
  margin-bottom: 14px;
}
.aufgaben__tasksGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.aufgaben__taskCard {
  padding: 32px;
  border-radius: 16px;
  background: var(--color-kit-light, #f6f6f6);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aufgaben__taskIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-kit-dark, #022a3f);
  color: var(--color-kit-key1, #ffa406);
}
.aufgaben__taskTitle {
  margin-top: 4px;
}
.aufgaben__taskText {
  color: #5a6670;
}
.aufgaben__reqBlock {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: 20px;
  background: var(--color-kit-dark, #022a3f);
}
.aufgaben__reqCol {
  display: flex;
  flex-direction: column;
}
.aufgaben__reqList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
}
.aufgaben__reqItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-kit-text-font);
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}
.aufgaben__reqCheck {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 164, 6, 0.18);
  color: var(--color-kit-key1, #ffa406);
  margin-top: 1px;
}
.aufgaben__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  background: var(--color-kit-key1, #ffa406);
  color: var(--color-kit-dark, #022a3f);
  font-family: var(--font-kit-header-font);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(2, 42, 63, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.aufgaben__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(255, 164, 6, 0.55);
}
@media (max-width: 900px) {
  .aufgaben__tasksGrid {
    grid-template-columns: 1fr;
  }
  .aufgaben__reqBlock {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 28px;
  }
  .aufgaben__reqList {
    grid-template-columns: 1fr;
  }
  .aufgaben__section {
    padding: 64px 20px;
  }
}

/* ---------- Startseite: Einblicke Team ---------- */
.team__section {
  width: 100%;
  background: var(--color-kit-light, #f6f6f6);
  padding: 96px 24px;
  box-sizing: border-box;
}
.team__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team__container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
.team__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}
.team__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team__kicker {
  display: inline-block;
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
}
.team__body {
  color: #5a6670;
  max-width: 420px;
}
.team__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 480px;
}
.team__mainImg {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(2, 42, 63, 0.3);
}
.team__sideImg {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  border-radius: 18px;
  overflow: hidden;
}
.team__sideImg2 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  border-radius: 18px;
  overflow: hidden;
}
.team__mainImg img,
.team__sideImg img,
.team__sideImg2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__statBadge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--color-kit-key1, #ffa406);
  color: var(--color-kit-dark, #022a3f);
  box-shadow: 0 16px 32px -8px rgba(255, 164, 6, 0.5);
}
.team__statNumber {
  font-family: var(--font-kit-header-font);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.team__statLabel {
  font-family: var(--font-kit-text-font);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
  padding: 0 8px;
}
@media (max-width: 900px) {
  .team__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team__gallery {
    height: 380px;
  }
  .team__statBadge {
    left: -12px;
    bottom: -12px;
    width: 88px;
    height: 88px;
  }
  .team__statNumber {
    font-size: 22px;
  }
  .team__section {
    padding: 64px 20px;
  }
}

/* ---------- Startseite: Mitarbeiterstimmen ---------- */
.stimmen__section {
  width: 100%;
  padding: 96px 24px;
  background:
    radial-gradient(
      90% 70% at 88% 4%,
      #90a3b01f 0%,
      #90a3b000 62%),
    var(--color-kit-white, #ffffff);
  font-family: var(--font-kit-text-font);
}
.stimmen__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stimmen__container {
  max-width: 1250px;
  margin: 0 auto;
}
.stimmen__intro {
  max-width: 720px;
  margin-bottom: 52px;
}
.stimmen__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-kit-secondary, #536772);
  margin-bottom: 16px;
}
.stimmen__kicker::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: var(--color-kit-key1, #90a3b0);
}
.stimmen__headline {
  margin: 0 0 18px;
  font-family: var(--font-kit-header-font);
}
.stimmen__body {
  margin: 0;
  color: var(--color-kit-secondary, #536772);
}
.stimmen__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(260px, 0.95fr);
  gap: 32px;
  align-items: start;
}
.stimmen__player {
  min-width: 0;
}
.stimmen__picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stimmen__chip {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px 18px 12px 12px;
  border: 1px solid #53677229;
  border-radius: 16px;
  background: var(--color-kit-white, #ffffff);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.stimmen__chip:hover {
  transform: translateX(4px);
  border-color: var(--color-kit-key1, #90a3b0);
}
.stimmen__chip:focus-visible {
  outline: 3px solid var(--color-kit-key1, #90a3b0);
  outline-offset: 2px;
}
.stimmen__chipActive {
  border-color: var(--color-kit-secondary, #536772);
  box-shadow: 0 12px 28px #5367721f;
  background: var(--color-kit-light, #f6f6f6);
}
.stimmen__chipThumb {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  background: var(--color-kit-dark, #232021);
}
.stimmen__chipThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stimmen__chipThumbFallback {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      150deg,
      var(--color-kit-dark, #232021) 0%,
      var(--color-kit-secondary, #536772) 100%);
}
.stimmen__chipText {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.stimmen__chipName {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-kit-dark, #232021);
  font-family: var(--font-kit-header-font);
}
.stimmen__chipRole {
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-kit-secondary, #536772);
}
@media (max-width: 900px) {
  .stimmen__section {
    padding: 72px 20px;
  }
  .stimmen__intro {
    margin-bottom: 36px;
  }
  .stimmen__stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .stimmen__picker {
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }
  .stimmen__chip {
    flex: 0 0 auto;
    width: auto;
    min-width: 190px;
    scroll-snap-align: start;
  }
  .stimmen__chip:hover {
    transform: none;
  }
}

/* ---------- Startseite: Ablauf ---------- */
.ablauf__section {
  width: 100%;
  background: var(--color-kit-white, #fff);
  padding: 96px 24px;
  box-sizing: border-box;
}
.ablauf__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ablauf__container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
.ablauf__intro {
  max-width: 620px;
  margin-bottom: 56px;
}
.ablauf__kicker {
  display: inline-block;
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
  margin-bottom: 14px;
}
.ablauf__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.ablauf__line {
  position: absolute;
  top: 26px;
  left: 4%;
  right: 4%;
  height: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      #e4e8eb 0,
      #e4e8eb 10px,
      transparent 10px,
      transparent 18px);
  z-index: 0;
}
.ablauf__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ablauf__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-kit-dark, #022a3f);
  color: var(--color-kit-key1, #ffa406);
  font-family: var(--font-kit-header-font);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}
.ablauf__stepTitle {
  margin: 0;
}
.ablauf__stepText {
  color: #5a6670;
}
@media (max-width: 900px) {
  .ablauf__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ablauf__line {
    display: none;
  }
  .ablauf__section {
    padding: 64px 20px;
  }
}

/* ---------- Startseite: Standort ---------- */
.standort__section {
  width: 100%;
  background: var(--color-kit-light, #f6f6f6);
  padding: 96px 24px;
  box-sizing: border-box;
}
.standort__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.standort__container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
.standort__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.standort__imageWrap {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 20px 40px -18px rgba(2, 42, 63, 0.3);
}
.standort__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.standort__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.standort__kicker {
  display: inline-block;
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
}
.standort__body {
  color: #5a6670;
  max-width: 440px;
}
.standort__infoList {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.standort__infoItem {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-kit-text-font);
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-kit-dark, #022a3f);
}
.standort__infoIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-kit-white, #fff);
  color: var(--color-kit-dark, #022a3f);
}
.standort__infoLink {
  color: var(--color-kit-dark, #022a3f);
  text-decoration: none;
}
.standort__infoLink:hover {
  text-decoration: underline;
}
.standort__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 16px 26px;
  background: var(--color-kit-key1, #ffa406);
  color: var(--color-kit-dark, #022a3f);
  font-family: var(--font-kit-header-font);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(2, 42, 63, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.standort__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(255, 164, 6, 0.5);
}
@media (max-width: 900px) {
  .standort__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .standort__section {
    padding: 64px 20px;
  }
}

/* ---------- Startseite: Häufige Fragen ---------- */
.faq__section {
  width: 100%;
  background: var(--color-kit-white, #fff);
  padding: 96px 24px;
  box-sizing: border-box;
}
.faq__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq__container {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}
.faq__intro {
  margin-bottom: 40px;
}
.faq__kicker {
  display: inline-block;
  font-family: var(--font-kit-header-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kit-key1, #ffa406);
  margin-bottom: 14px;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__faqItem {
  border-bottom: 1px solid #e4e8eb;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq__question:focus-visible {
  outline: 3px solid var(--color-kit-key1, #ffa406);
  outline-offset: 4px;
}
.faq__questionText {
  color: var(--color-kit-dark, #022a3f);
}
.faq__iconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-kit-light, #f6f6f6);
  color: var(--color-kit-dark, #022a3f);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
.faq__iconOpen {
  transform: rotate(45deg);
  background: var(--color-kit-key1, #ffa406);
}
.faq__answerWrap {
  overflow: hidden;
}
.faq__answerText {
  color: #5a6670;
  padding-bottom: 24px;
  max-width: 640px;
}
@media (max-width: 600px) {
  .faq__section {
    padding: 64px 20px;
  }
}

/* ---------- Stellenanzeige: Kopf ---------- */
.anzeigenkopf__section {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-kit-text-font);
}
.anzeigenkopf__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.anzeigenkopf__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.anzeigenkopf__logoLink {
  display: flex;
  margin-bottom: 20px;
}
.anzeigenkopf__logoLink img {
  display: block;
  width: auto;
}
.anzeigenkopf__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.anzeigenkopf__title {
  margin: 0 0 20px 0;
  line-height: 1.15;
  font-family: var(--font-kit-header-font);
}
.anzeigenkopf__meta {
  display: flex;
  flex-direction: column;
}
.anzeigenkopf__metaRow {
  line-height: 1.5;
}
.anzeigenkopf__cta {
  margin-top: 28px;
}
@media (max-width: 640px) {
  .anzeigenkopf__container {
    padding: 0 16px;
  }
}

/* ---------- Stellenanzeige: Einblicke in Videos ---------- */
.einblicke__section {
  width: 100%;
  padding: 88px 24px;
  background: var(--color-kit-light, #f6f6f6);
  font-family: var(--font-kit-text-font);
}
.einblicke__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.einblicke__container {
  max-width: 1250px;
  margin: 0 auto;
}
.einblicke__intro {
  max-width: 660px;
  margin-bottom: 48px;
}
.einblicke__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-kit-secondary, #536772);
  margin-bottom: 14px;
}
.einblicke__headline {
  margin: 0 0 16px;
  font-family: var(--font-kit-header-font);
}
.einblicke__body {
  margin: 0;
  color: var(--color-kit-secondary, #536772);
}
.einblicke__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.einblicke__gridPortrait {
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 36px;
}
.einblicke__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.einblicke__meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.einblicke__index {
  flex: 0 0 auto;
  font-family: var(--font-kit-header-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding-top: 4px;
  color: var(--color-kit-key1, #90a3b0);
}
.einblicke__metaText {
  min-width: 0;
}
.einblicke__itemTitle {
  margin: 0 0 8px;
  font-family: var(--font-kit-header-font);
}
.einblicke__itemBody {
  margin: 0;
  color: var(--color-kit-secondary, #536772);
}
@media (max-width: 980px) {
  .einblicke__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .einblicke__gridPortrait {
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .einblicke__section {
    padding: 64px 20px;
  }
  .einblicke__intro {
    margin-bottom: 32px;
  }
  .einblicke__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .einblicke__gridPortrait {
    grid-template-columns: minmax(0, 300px);
    gap: 34px;
  }
}

/* ---------- Stellenanzeige: Bewerben ---------- */
.bewerben__section {
  padding: 72px 0;
}
.bewerben__full {
  min-height: var(--con-kit-section-min-height, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bewerben__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bewerben__heading {
  margin: 0 0 16px;
  max-width: 20ch;
}
.bewerben__text {
  margin: 0 auto 32px;
  max-width: 60ch;
}
.bewerben__cta {
  display: flex;
  justify-content: center;
}
@media (max-width: 640px) {
  .bewerben__section {
    padding: 48px 0;
  }
}

/* ---------- Stellenanzeige: Fußzeile ---------- */
.fuss__wrapper {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-kit-text-font);
}
.fuss__topBand,
.fuss__bottomBand {
  width: 100%;
  box-sizing: border-box;
}
.fuss__bandGap {
  width: 100%;
}
.fuss__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.fuss__clientRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.fuss__clientLink {
  text-decoration: underline;
  font-size: 14px;
  opacity: 0.9;
}
.fuss__clientLink:hover {
  opacity: 1;
}
.fuss__poweredByRow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fuss__poweredByBrand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fuss__poweredByLogo {
  display: block;
  width: auto;
}
.fuss__wfLinksRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.fuss__wfLink {
  text-decoration: none;
  font-size: 12px;
  opacity: 0.75;
}
.fuss__wfLink:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .fuss__container {
    padding: 0 16px;
  }
  .fuss__poweredByRow {
    gap: 12px;
  }
}

/* ---------- Kopfleiste mit Logo (Startseite) ---------- */
.kopf {
  background: var(--color-kit-key1);
  padding: 24px;
  display: flex;
  justify-content: center;
}
.kopf__logo { display: block; line-height: 0; }
.kopf__logo img { display: block; width: 250px; height: auto; }
@media (max-width: 768px) {
  .kopf { justify-content: flex-start; }
}

/* ---------- Kununu-Kasten (Startseite) ---------- */
.stimmen-kununu { background: #fff; padding: 81px 24px 79px; }
.stimmen-kununu__titel {
  margin: 0 auto 68px;
  max-width: 980px;
  font-family: var(--font-kit-header-font);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1808;
  text-align: center;
  color: var(--color-kit-dark);
}
.stimmen-kununu__karte {
  max-width: 1250px;
  margin: 0 auto;
  padding: 48px 48px 56px;
  border-radius: 20px;
  background: var(--color-kit-light);
  color: var(--color-kit-dark);
}
.stimmen-kununu__satz {
  margin: 0;
  font-family: var(--font-kit-header-font);
  font-weight: 700;
  font-size: 32px;
  line-height: 38.4px;
  white-space: pre-line;
}
.stimmen-kununu__sterne { display: flex; gap: 8px; margin: 33px 0 31px 3px; color: var(--color-kit-key1); }
.stimmen-kununu__sterne svg { width: 14px; height: 14px; display: block; fill: currentColor; }
.stimmen-kununu__text { margin: 0; font-size: 16px; line-height: 24px; }
.stimmen-kununu__text a { border-bottom: 1px solid currentColor; }
.stimmen-kununu__text a:hover { border-bottom-color: var(--color-kit-key1); }
@media (max-width: 768px) {
  .stimmen-kununu { padding: 40px 24px 39px; }
  .stimmen-kununu__titel { font-size: 28.98px; line-height: 34.22px; margin-bottom: 69px; }
  .stimmen-kununu__karte { padding: 24px 24px 32px; }
}

/* ---------- Fußzeile (Startseite) ---------- */
.fuss-start {
  background: var(--color-kit-light);
  padding: 154px 24px 62px;
  text-align: center;
}
.fuss-start__menue { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; flex-wrap: wrap; }
.fuss-start__menue a {
  display: block;
  padding: 12px;
  font-family: var(--font-kit-header-font);
  font-weight: 700;
  font-size: 16.8px;
  line-height: 20.16px;
  color: var(--color-kit-dark);
}
.fuss-start__menue a span { position: relative; display: inline-block; }
.fuss-start__menue a span::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4.8px;
  height: 2px; background: #dbdbdb;
  transition: background-color .2s ease;
}
.fuss-start__menue a:hover span::before { background: var(--color-kit-key1); }
.fuss-start__marke { display: block; margin: 110px auto 0; width: 185px; height: 37px; object-fit: contain; }
@media (max-width: 768px) {
  .fuss-start { padding: 70px 24px 31px; }
  .fuss-start__menue { flex-direction: column; align-items: center; }
  .fuss-start__marke { margin-top: 72px; width: 103px; height: 21px; }
}

/* ---------- Anzeigentext (Stellenanzeige) ---------- */
.anzeige { background: #fff; padding: 69px 24px 80px; color: var(--color-kit-dark); }
.anzeige__inhalt { max-width: 960px; margin: 0 auto; }
.anzeige__block + .anzeige__block { margin-top: 96px; }
.anzeige h2 {
  margin: 48px 0 20px;
  font-family: var(--font-kit-header-font);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1808;
}
.anzeige__block > h2:first-child { margin-top: 0; }
.anzeige p { margin: 0 0 16px; font-size: 16px; line-height: 24px; }
.anzeige ul { list-style: none; margin: 0; padding: 0; }
.anzeige li { position: relative; padding-left: 31px; font-size: 16px; line-height: 24px; }
.anzeige li + li { margin-top: 16px; }
.anzeige li::before {
  content: ""; position: absolute; left: 8px; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--color-kit-dark);
}
.anzeige ul + p { margin-top: 16px; }
.anzeige__anbieter { margin-top: 89px; font-size: 14px; line-height: 21px; }
.anzeige__anbieter strong { display: block; margin-bottom: 17px; font-weight: 700; line-height: 19px; }
.anzeige__anbieter p { margin: 0; font-size: 14px; line-height: 21px; }
@media (max-width: 768px) {
  .anzeige { padding: 34px 24px 46px; }
  .anzeige__block + .anzeige__block { margin-top: 55px; }
  .anzeige h2 { font-size: 28.98px; line-height: 34.22px; }
}

/* ---------- Einblenden beim Scrollen ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: var(--r, none);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}
.js [data-reveal].ist-sichtbar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Video: Hinweis vor dem Laden von Vimeo ---------- */
.video__hinweis {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 16px;
  background: rgba(35, 32, 33, .82);
  color: #fff; text-align: center;
  font-size: 14px; line-height: 1.45;
}
.video__hinweis p { margin: 0; max-width: 300px; }
.video__hinweis-knopf {
  font: inherit; font-weight: 700; cursor: pointer;
  border: 0; border-radius: 10px; padding: 10px 18px;
  background: #fff; color: var(--color-kit-dark);
}
.video__hinweis-knopf:hover { background: var(--color-kit-light); }
.video__hinweis-knopf:focus-visible, .video__hinweis-link:focus-visible { outline: 3px solid var(--color-kit-key1); outline-offset: 3px; }
.video__hinweis-link {
  font: inherit; font-size: 12px; cursor: pointer; border: 0; background: none; padding: 0;
  color: #fff; opacity: .85; text-decoration: underline;
}
@media (max-width: 640px) {
  .video__hinweis { font-size: 12.5px; gap: 8px; padding: 10px; }
  .video__hinweis-knopf { padding: 8px 14px; }
}
