:root { --font-manrope: "Manrope", sans-serif; }
figure { margin: 0; }

:root {
  --ink: #15171a;
  --black: #0e0f11;
  --paper: #f4f2ed;
  --stone: #dddad3;
  --muted: #6d7177;
  --blue: #315bff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, Helvetica, sans-serif;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid rgba(21, 23, 26, 0.16);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  height: 94px;
  padding: 0 4vw;
  position: relative;
  z-index: 20;
}

.brand {
  display: block;
  justify-self: start;
  width: 176px;
}

.brand img {
  display: block;
  height: auto;
  width: 100%;
}

.desktop-nav {
  display: flex;
  gap: clamp(26px, 3vw, 52px);
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0;
  padding: 12px 0;
  position: relative;
}

.desktop-nav a::after {
  background: var(--blue);
  bottom: 3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  color: var(--paper);
  display: flex;
  font-size: 12px;
  font-weight: 680;
  gap: 24px;
  justify-self: end;
  min-height: 48px;
  padding: 0 18px 0 20px;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.header-cta span {
  font-size: 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(410px, 38%);
  min-height: calc(100svh - 94px);
  overflow: hidden;
}

.hero-copy {
  background: var(--black);
  color: var(--paper);
  min-height: 790px;
  overflow: hidden;
  position: relative;
}

.hero-photo {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 62% center;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.97) 0%, rgba(8, 9, 10, 0.9) 38%, rgba(8, 9, 10, 0.56) 65%, rgba(8, 9, 10, 0.14) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.67) 0%, transparent 45%);
  inset: 0;
  position: absolute;
}

.hero-copy::after {
  background: linear-gradient(90deg, transparent, rgba(244, 242, 237, 0.12));
  bottom: 0;
  content: "";
  height: 1px;
  left: 6vw;
  position: absolute;
  width: calc(100% - 12vw);
}

.hero-cut {
  background: var(--blue);
  clip-path: polygon(72% 0, 100% 0, 28% 100%, 0 100%);
  height: 30%;
  position: absolute;
  right: -5px;
  top: 0;
  width: 14px;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 790px;
  padding: clamp(88px, 10vh, 126px) 7vw clamp(72px, 8vh, 98px) 6vw;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: var(--blue);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  align-items: center;
  color: rgba(244, 242, 237, 0.72);
  display: flex;
  gap: 12px;
  margin-bottom: clamp(34px, 5vh, 54px);
}

.eyebrow-light::before {
  background: var(--blue);
  content: "";
  height: 2px;
  width: 34px;
}

.hero h1 {
  font-size: clamp(58px, 5.7vw, 100px);
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  max-width: 940px;
  text-wrap: balance;
}

.hero h1 strong {
  display: block;
  font-weight: 720;
  margin-top: 0.2em;
  position: relative;
  width: fit-content;
}

.hero h1 strong::after {
  background: var(--blue);
  bottom: -0.14em;
  clip-path: polygon(1% 0, 100% 0, 98% 100%, 0 100%);
  content: "";
  height: 0.065em;
  left: 0.02em;
  position: absolute;
  transform: rotate(-0.7deg);
  width: 97%;
}

.hero-intro {
  color: rgba(244, 242, 237, 0.78);
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 470;
  line-height: 1.65;
  margin: clamp(43px, 6vh, 66px) 0 0;
  max-width: 570px;
}

.text-link {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 18px;
  margin-top: 31px;
  width: fit-content;
}

.text-link span {
  color: var(--blue);
  font-size: 19px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-form-panel {
  align-items: center;
  background: var(--paper);
  display: flex;
  min-height: 790px;
  padding: clamp(68px, 8vh, 96px) clamp(34px, 4.4vw, 76px);
  position: relative;
}

.hero-form-panel::before {
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  height: 26px;
  left: 0;
  position: absolute;
  top: 0;
  width: 26px;
}

.hero-form-panel form,
.form-success {
  max-width: 540px;
  width: 100%;
}

.form-eyebrow {
  margin-bottom: 18px;
}

.hero-form-panel h2 {
  font-size: clamp(35px, 3.15vw, 55px);
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  max-width: 520px;
}

.form-intro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 18px 0 clamp(34px, 5vh, 50px);
  max-width: 440px;
}

.hero-form-panel label {
  display: block;
  margin-bottom: 26px;
}

.hero-form-panel label > span {
  color: var(--muted);
  display: block;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.11em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-form-panel input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 23, 26, 0.28);
  border-radius: 0;
  color: var(--ink);
  font-size: 16px;
  outline: none;
  padding: 6px 0 11px;
  transition: border-color 160ms ease;
  width: 100%;
}

.hero-form-panel input:focus {
  border-color: var(--blue);
}

.field-row {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr 1fr;
}

.form-submit-row {
  align-items: flex-end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(120px, 0.72fr) minmax(220px, 1fr);
  margin-top: 15px;
}

.form-submit-row p {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
  margin: 0;
}

.form-submit-row p a {
  border-bottom: 1px solid rgba(21, 23, 26, 0.35);
  color: var(--ink);
  font-weight: 600;
}

.form-submit-row p a:hover {
  border-color: var(--blue);
}

.form-submit-row button {
  align-items: center;
  background: var(--ink);
  border: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  color: var(--paper);
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 680;
  gap: 16px;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 20px;
  transition: background 160ms ease, transform 160ms ease;
}

.form-submit-row button:hover,
.form-submit-row button:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.form-submit-row button span {
  font-size: 18px;
}

.form-success {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.success-cut {
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
  display: block;
  height: 9px;
  margin-bottom: 42px;
  width: 92px;
}

.form-success .eyebrow {
  margin-bottom: 18px;
}

.form-success button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  margin-top: 46px;
  padding: 9px 0;
}

.process-section {
  background: var(--paper);
  overflow: hidden;
  padding: clamp(110px, 11vw, 180px) 6vw clamp(74px, 8vw, 120px);
}

.process-opening {
  align-items: center;
  display: grid;
  gap: clamp(64px, 8vw, 150px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  margin: 0 auto;
  max-width: 1700px;
}

.process-copy-block .eyebrow {
  margin-bottom: 36px;
}

.process-copy-block h2 {
  font-size: clamp(54px, 5.35vw, 94px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.99;
  margin: 0;
  max-width: 760px;
}

.process-copy-block h2 span {
  color: var(--muted);
  display: block;
  font-weight: 560;
  margin-top: 0.12em;
}

.process-lead {
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.7;
  margin: clamp(36px, 4vw, 62px) 0 0;
  max-width: 610px;
}

.process-principle {
  border-left: 3px solid var(--blue);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 4px;
  margin: 42px 0 0;
  padding: 4px 0 4px 18px;
}

.process-principle span {
  color: var(--muted);
}

.process-principle strong {
  font-weight: 700;
}

.process-visual {
  aspect-ratio: 1.42 / 1;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.process-visual::before {
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 22% 100%, 0 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 14px;
  z-index: 2;
}

.process-visual img {
  clip-path: polygon(7% 0, 100% 0, 100% 87%, 91% 100%, 0 100%, 0 13%);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.process-visual figcaption {
  background: rgba(14, 15, 17, 0.94);
  bottom: 0;
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%);
  color: rgba(244, 242, 237, 0.68);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  gap: 3px;
  left: 0;
  letter-spacing: 0.015em;
  min-width: min(72%, 500px);
  padding: 20px 50px 21px 32px;
  position: absolute;
  z-index: 3;
}

.process-visual figcaption strong {
  color: var(--paper);
  font-size: 13px;
  font-weight: 680;
}

.process-path {
  background: var(--black);
  color: var(--paper);
  margin: clamp(96px, 10vw, 164px) -6vw 0;
  padding: 10px 6vw;
}

.process-path article {
  align-items: center;
  border-bottom: 1px solid rgba(244, 242, 237, 0.17);
  display: grid;
  gap: clamp(30px, 4vw, 78px);
  grid-template-columns: minmax(150px, 0.58fr) minmax(280px, 1.05fr) minmax(260px, 1fr);
  margin: 0 auto;
  max-width: 1700px;
  padding: clamp(42px, 4.2vw, 66px) 0;
  position: relative;
}

.process-path article:last-child {
  border-bottom: 0;
}

.process-path article::before {
  background: var(--blue);
  content: "";
  height: 100%;
  left: -6vw;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 180ms ease;
  width: 3px;
}

.process-path article:hover::before {
  opacity: 1;
}

.step-verb {
  color: rgba(244, 242, 237, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.step-verb span {
  color: var(--blue);
  font-size: 16px;
  margin-right: 8px;
}

.process-path h3 {
  font-size: clamp(28px, 2.4vw, 43px);
  font-weight: 640;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
  max-width: 560px;
}

.step-copy {
  color: rgba(244, 242, 237, 0.59);
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
  max-width: 480px;
}

.process-cta {
  align-items: center;
  border-top: 1px solid rgba(21, 23, 26, 0.2);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 38px;
}

.process-cta p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.process-cta p span {
  color: var(--ink);
  font-weight: 700;
}

.process-cta a {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: flex;
  font-size: 13px;
  font-weight: 680;
  gap: 24px;
  padding: 12px 0 9px;
}

.process-cta a span {
  color: var(--blue);
  font-size: 17px;
  transition: transform 180ms ease;
}

.process-cta a:hover span {
  transform: translate(3px, -3px);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 57%) minmax(400px, 43%);
  }

  .hero-content {
    padding-right: 5vw;
  }

  .hero h1 {
    font-size: clamp(54px, 6.2vw, 74px);
  }

  .form-submit-row {
    grid-template-columns: 1fr;
  }

  .process-opening {
    gap: 60px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .process-visual {
    min-height: 440px;
  }

  .process-path article {
    grid-template-columns: 150px 1fr 0.9fr;
  }
}

@media (max-width: 900px) {
  .hero {
    display: block;
  }

  .hero-copy,
  .hero-content {
    min-height: 760px;
  }

  .hero-form-panel {
    min-height: auto;
    padding-bottom: 92px;
    padding-top: 92px;
  }

  .process-opening {
    grid-template-columns: 1fr;
  }

  .process-copy-block {
    max-width: 720px;
  }

  .process-visual {
    min-height: 0;
  }

  .process-path article {
    align-items: start;
    grid-template-columns: 140px 1fr;
  }

  .step-copy {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .brand {
    width: 139px;
  }

  .header-cta {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    font-size: 0;
    gap: 0;
    min-height: 38px;
    padding: 0;
    width: 38px;
  }

  .header-cta span {
    font-size: 17px;
    margin: auto;
  }

  .hero-copy,
  .hero-content {
    min-height: 695px;
  }

  .hero-photo {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 9, 10, 0.97) 0%, rgba(8, 9, 10, 0.86) 52%, rgba(8, 9, 10, 0.38) 100%),
      linear-gradient(0deg, rgba(8, 9, 10, 0.82) 0%, transparent 52%);
  }

  .hero-cut {
    height: 22%;
    width: 11px;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 70px 22px 74px;
  }

  .eyebrow-light {
    margin-bottom: 29px;
  }

  .hero h1 {
    font-size: clamp(45px, 12.7vw, 59px);
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .hero-intro {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 39px;
    max-width: 94%;
  }

  .text-link {
    margin-top: 25px;
  }

  .hero-form-panel {
    padding: 76px 22px 70px;
  }

  .hero-form-panel h2 {
    font-size: 38px;
    line-height: 1.09;
  }

  .form-intro {
    margin-bottom: 40px;
  }

  .field-row {
    display: block;
  }

  .form-submit-row {
    margin-top: 27px;
  }

  .form-submit-row button {
    margin-top: 3px;
  }

  .process-section {
    padding: 98px 22px 70px;
  }

  .process-copy-block .eyebrow {
    margin-bottom: 27px;
  }

  .process-copy-block h2 {
    font-size: clamp(46px, 12.5vw, 58px);
    letter-spacing: -0.01em;
  }

  .process-lead {
    font-size: 15px;
    margin-top: 32px;
  }

  .process-principle {
    margin-top: 34px;
  }

  .process-opening {
    gap: 54px;
  }

  .process-visual {
    aspect-ratio: 0.92 / 1;
  }

  .process-visual img {
    clip-path: polygon(9% 0, 100% 0, 100% 89%, 89% 100%, 0 100%, 0 11%);
    object-position: 52% center;
  }

  .process-visual figcaption {
    min-width: 88%;
    padding: 17px 36px 18px 24px;
  }

  .process-path {
    margin: 78px -22px 0;
    padding: 0 22px;
  }

  .process-path article {
    display: block;
    padding: 38px 0 42px;
  }

  .step-verb {
    margin-bottom: 22px;
  }

  .process-path h3 {
    font-size: 30px;
    line-height: 1.15;
  }

  .step-copy {
    margin-top: 20px;
  }

  .process-cta {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 28px;
  }

  .process-cta a {
    justify-content: space-between;
    width: 100%;
  }
}

/* ------------------------------------------------------------------ */
/* Formular: echte Zustände                                            */
/* ------------------------------------------------------------------ */

.form-error {
  color: #b4231f;
  font-size: 13px;
  line-height: 1.55;
  margin: -6px 0 20px;
}

.form-error a {
  border-bottom: 1px solid currentColor;
}

.form-fallback-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 440px;
}

.form-fallback-mailto {
  align-items: center;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  color: var(--paper);
  display: flex;
  font-size: 12px;
  font-weight: 680;
  justify-content: space-between;
  margin-top: 34px;
  min-height: 60px;
  padding: 0 20px;
  transition: background 160ms ease, transform 160ms ease;
  width: 100%;
}

.form-fallback-mailto:hover,
.form-fallback-mailto:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.form-fallback-mailto span {
  font-size: 18px;
}

.form-submit-row button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* ------------------------------------------------------------------ */
/* Leistungen                                                          */
/* ------------------------------------------------------------------ */

.services-section {
  background: var(--paper);
  padding: clamp(96px, 10vw, 164px) 6vw clamp(88px, 9vw, 140px);
}

.services-grid {
  display: grid;
  gap: clamp(54px, 6vw, 110px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: 1700px;
}

.services-intro .eyebrow {
  margin-bottom: 30px;
}

.services-intro h2 {
  font-size: clamp(42px, 3.9vw, 68px);
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0;
  max-width: 560px;
}

.services-intro h2 span {
  color: var(--muted);
  display: block;
  font-weight: 560;
  margin-top: 0.12em;
}

.services-main {
  border-left: 3px solid var(--blue);
  padding-left: clamp(24px, 2.4vw, 44px);
}

.services-main h3 {
  font-size: clamp(30px, 2.6vw, 44px);
  font-weight: 660;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.services-main p {
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  margin: 22px 0 30px;
  max-width: 560px;
}

.services-main .text-link {
  margin-top: 0;
}

.services-secondary {
  grid-column: 2;
  margin-top: clamp(-30px, -2vw, -12px);
}

.services-item {
  border-top: 1px solid rgba(21, 23, 26, 0.18);
  padding: 26px 0 28px;
}

.services-item h4 {
  font-size: 16px;
  font-weight: 680;
  letter-spacing: 0;
  margin: 0;
}

.services-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: 520px;
}

/* ------------------------------------------------------------------ */
/* Branchen und Positionen (dunkel, asymmetrisch)                      */
/* ------------------------------------------------------------------ */

.sectors-section {
  background: var(--black);
  color: var(--paper);
  padding: clamp(96px, 11vw, 170px) 6vw;
}

.sectors-inner {
  margin: 0 auto;
  max-width: 1700px;
}

.sectors-inner h2 {
  font-size: clamp(40px, 4.6vw, 82px);
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  max-width: 14em;
}

.sectors-columns {
  display: grid;
  gap: clamp(40px, 5vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: clamp(48px, 5.5vw, 92px);
}

.sectors-lead {
  color: rgba(244, 242, 237, 0.64);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  margin: 0;
  margin-left: clamp(0px, 8vw, 140px);
  max-width: 480px;
}

.sectors-levels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sectors-levels li {
  color: rgba(244, 242, 237, 0.86);
  font-size: clamp(19px, 1.5vw, 26px);
  font-weight: 640;
  letter-spacing: -0.01em;
}

.sectors-levels li span {
  color: var(--blue);
  margin-right: 10px;
}

.sectors-levels li:nth-child(2) {
  margin-left: clamp(28px, 4vw, 72px);
}

.sectors-levels li:nth-child(3) {
  margin-left: clamp(56px, 8vw, 144px);
}

/* ------------------------------------------------------------------ */
/* Arbeitgeber und Bewerber                                            */
/* ------------------------------------------------------------------ */

.audiences-section {
  background: var(--paper);
  padding: clamp(88px, 9vw, 140px) 6vw clamp(96px, 10vw, 164px);
}

.audiences-inner {
  margin: 0 auto;
  max-width: 1700px;
}

.audience-employer {
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
  color: var(--paper);
  padding: clamp(56px, 6vw, 104px) clamp(28px, 6vw, 110px);
}

.audience-employer .eyebrow-light {
  margin-bottom: clamp(28px, 4vh, 44px);
}

.audience-employer h2 {
  font-size: clamp(34px, 3.6vw, 62px);
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.07;
  margin: 0;
  max-width: 15em;
}

.audience-employer p {
  color: rgba(244, 242, 237, 0.72);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  margin: 26px 0 40px;
  max-width: 520px;
}

.audience-cta {
  align-items: center;
  background: var(--paper);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 680;
  gap: 24px;
  min-height: 56px;
  padding: 0 22px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.audience-cta:hover,
.audience-cta:focus-visible {
  background: var(--blue);
  color: var(--paper);
  transform: translateY(-2px);
}

.audience-cta span {
  font-size: 16px;
}

.audience-applicant {
  align-items: baseline;
  display: grid;
  gap: clamp(18px, 3vw, 60px);
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  padding: clamp(34px, 4vw, 56px) clamp(4px, 1vw, 16px) 0;
}

.audience-applicant h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

.audience-applicant p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

.audience-applicant a {
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 650;
}

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */

.faq-section {
  background: var(--paper);
  padding: 0 6vw clamp(104px, 11vw, 176px);
}

.faq-inner {
  margin: 0 auto;
  max-width: 1080px;
}

.faq-inner h2 {
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 clamp(38px, 5vw, 64px);
}

.faq-list details {
  border-top: 1px solid rgba(21, 23, 26, 0.18);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(21, 23, 26, 0.18);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 660;
  justify-content: space-between;
  line-height: 1.4;
  list-style: none;
  padding: 26px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  flex: 0 0 auto;
  height: 3px;
  margin-left: 26px;
  transition: width 180ms ease;
  width: 22px;
}

.faq-list details[open] summary span {
  width: 40px;
}

.faq-list details p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
  padding: 0 0 28px;
}

/* ------------------------------------------------------------------ */
/* Finaler CTA                                                         */
/* ------------------------------------------------------------------ */

.final-cta {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  gap: clamp(26px, 4vw, 60px);
  justify-content: space-between;
  padding: clamp(56px, 6.5vw, 96px) 6vw;
}

.final-cta-line {
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 640;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

.final-cta-line span {
  color: rgba(244, 242, 237, 0.6);
  display: block;
}

.final-cta-link {
  align-items: center;
  background: var(--paper);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  color: var(--ink);
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 680;
  gap: 20px;
  min-height: 56px;
  padding: 0 22px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.final-cta-link:hover,
.final-cta-link:focus-visible {
  background: var(--blue);
  color: var(--paper);
  transform: translateY(-2px);
}

.final-cta-link span {
  font-size: 16px;
}

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(244, 242, 237, 0.14);
  color: rgba(244, 242, 237, 0.6);
  padding: clamp(48px, 5vw, 72px) 6vw 40px;
}

.footer-inner {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 22px clamp(34px, 4vw, 72px);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1700px;
}

.footer-brand {
  font-size: 13px;
  font-weight: 650;
  margin: 0;
}

.footer-contact a,
.footer-legal a {
  border-bottom: 1px solid rgba(244, 242, 237, 0.3);
  font-size: 13px;
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}

.footer-contact a:hover,
.footer-legal a:hover {
  border-color: var(--blue);
  color: var(--paper);
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-note {
  font-size: 11px;
  margin: 34px auto 0;
  max-width: 1700px;
}

/* ------------------------------------------------------------------ */
/* Responsive: neue Sektionen                                          */
/* ------------------------------------------------------------------ */

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-secondary {
    grid-column: auto;
    margin-top: 0;
  }

  .sectors-inner h2 {
    max-width: 16em;
  }
}

@media (max-width: 900px) {
  .sectors-columns {
    grid-template-columns: 1fr;
  }

  .sectors-lead {
    margin-left: 0;
  }

  .sectors-levels li:nth-child(2),
  .sectors-levels li:nth-child(3) {
    margin-left: 0;
  }

  .audience-applicant {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .services-intro h2,
  .sectors-inner h2,
  .audience-employer h2,
  .faq-inner h2 {
    letter-spacing: -0.01em;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* ------------------------------------------------------------------ */
/* Rechtliche Seiten (Impressum / Datenschutz)                         */
/* ------------------------------------------------------------------ */

.legal-header {
  grid-template-columns: 1fr auto;
}

.legal-back {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: flex;
  font-size: 13px;
  font-weight: 680;
  gap: 14px;
  justify-self: end;
  padding: 12px 0 9px;
}

.legal-back span {
  color: var(--blue);
  font-size: 16px;
  transition: transform 180ms ease;
}

.legal-back:hover span {
  transform: translateX(4px);
}

.legal-main {
  padding: clamp(72px, 9vw, 128px) 6vw clamp(96px, 10vw, 156px);
}

.legal-article {
  margin: 0 auto;
  max-width: 860px;
}

.legal-article .eyebrow {
  margin-bottom: 26px;
}

.legal-article h1 {
  font-size: clamp(44px, 4.6vw, 76px);
  font-weight: 700;
  hyphens: auto;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 clamp(30px, 3.6vw, 52px);
  overflow-wrap: break-word;
}

.legal-brand-note {
  border-left: 3px solid var(--blue);
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 clamp(40px, 5vw, 64px);
  padding: 4px 0 4px 18px;
}

.legal-article h2 {
  font-size: clamp(20px, 1.6vw, 25px);
  font-weight: 680;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: clamp(38px, 4.5vw, 56px) 0 14px;
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-article p {
  margin: 0 0 16px;
}

.legal-article ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-article li {
  margin-bottom: 8px;
}

.legal-article a {
  border-bottom: 1px solid rgba(21, 23, 26, 0.35);
  color: var(--ink);
  font-weight: 600;
}

.legal-article a:hover {
  border-color: var(--blue);
}

.legal-article strong {
  color: var(--ink);
  font-weight: 650;
}

.legal-muted {
  font-size: 13px;
}

@media (max-width: 620px) {
  .legal-article h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    letter-spacing: -0.01em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Formular-Status und hidden-Handling (statische Version) */

[hidden] {
  display: none !important;
}

.form-status {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 18px 0 0;
}

/* ------------------------------------------------------------------ */
/* Nachtraege 10.08.2026: Sprunglink, Mobilnavigation, Kleinstgeraete   */
/* ------------------------------------------------------------------ */

/* Sprunglink fuer Tastatur- und Screenreader-Nutzung */
.skip-link {
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 620;
  left: 12px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  transition: top 160ms ease;
  z-index: 60;
}

.skip-link:focus {
  top: 12px;
}

/* Honeypot gegen Formular-Spam: fuer Menschen unsichtbar, fuer Bots sichtbar */
.hp-field {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* Mehrere Kontaktangaben im Footer */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Menue-Schalter – nur unterhalb der Desktop-Navigation sichtbar */
.nav-toggle {
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: none;
  font-size: 12px;
  font-weight: 680;
  gap: 12px;
  justify-self: end;
  letter-spacing: 0.06em;
  min-height: 44px;
  padding: 0;
  text-transform: uppercase;
}

.nav-toggle-text {
  display: inline-block;
  min-width: 8.4em;
  text-align: right;
}

.nav-toggle-icon {
  display: block;
  height: 10px;
  position: relative;
  width: 22px;
}

.nav-toggle-icon i {
  background: var(--ink);
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 100%;
}

.nav-toggle-icon i:first-child { top: 0; }
.nav-toggle-icon i:last-child { bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  background: var(--paper);
  border-bottom: 1px solid rgba(21, 23, 26, 0.16);
  display: block;
  padding: 4px 6vw 34px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav nav a {
  border-bottom: 1px solid rgba(21, 23, 26, 0.12);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.01em;
  padding: 18px 0;
}

.mobile-nav nav a:first-child {
  border-top: 1px solid rgba(21, 23, 26, 0.12);
}

.mobile-nav-cta {
  align-items: center;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  color: var(--paper);
  display: flex;
  font-size: 13px;
  font-weight: 680;
  justify-content: space-between;
  margin-top: 28px;
  min-height: 52px;
  padding: 0 20px;
}

/* Lange deutsche Komposita duerfen nie ueber den Rand laufen */
h1, h2, h3, h4 {
  overflow-wrap: break-word;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 22px;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 620px) {
  /* Der Header-CTA schrumpft hier auf ein reines Pfeil-Icon zusammen.
     Stattdessen traegt ihn die Mobilnavigation mit vollem Text. */
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }
}

/* Sehr schmale Geraete (iPhone SE 1. Gen. und aehnlich) */
@media (max-width: 359px) {
  .services-intro h2,
  .sectors-inner h2,
  .audience-employer h2,
  .faq-inner h2,
  .process-copy-block h2 {
    font-size: 34px;
  }

  .hero h1 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .nav-toggle-icon i {
    transition: none;
  }
}

/* Grid-Spalten duerfen unter ihre Mindestbreite schrumpfen. Ohne minmax(0, …)
   sperrt ein langes Wort wie "Personalvermittlung" die Spalte auf und die
   Sektion laeuft auf sehr schmalen Geraeten aus dem Bild. */
@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 359px) {
  .services-main h3 {
    font-size: 26px;
  }
}

/* Anschrift im Footer – zweite Zeile unter der Markenangabe */
.footer-identity {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-address {
  font-size: 13px;
  margin: 0;
}
