/* ============================================================
   Falk Steuerungssysteme – Karriere-Landingpage
   Statische Seite, Bewerbungsversand über bewerbung.php
   CD-Farben: #00a0e3 (Cyan) / #223a8e (Navy)
   ============================================================ */

:root {
  --falk-blue: #00a0e3;
  --falk-navy: #223a8e;
  --navy-deep: #0f1e46;
  --ink: #111827;
  --text: #314052;
  --muted: #6b7788;
  --line: #dce4ee;
  --soft: #f4f7fa;
  --soft-2: #eef3f8;
  --white: #ffffff;
  --green: #1f9d73;
  --max: 1200px;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
  --ease: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Aptos, Carlito, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.shell {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 96px;
}

.section--soft { background: var(--soft); }

.section--navy {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 160, 227, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 160, 227, 0.08) 1px, transparent 1px),
    #0f1e46;
  background-size: 56px 56px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--falk-blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light { color: #8be0ff; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.12; }

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 3.4rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  font-weight: 800;
}

h3 { margin-bottom: 10px; font-size: 1.18rem; font-weight: 800; }

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.1rem;
}

.lead--light { color: rgba(255, 255, 255, 0.75); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head--stacked {
   grid-template-columns: 1fr;
   gap: 8px;
   align-items: start;
}

.section-head--stacked .lead {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}   

.btn {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.btn svg { width: 18px; height: 18px; flex: 0 0 18px; }

.btn:hover { transform: translateY(-1px); }

.btn--primary { color: var(--white); background: var(--falk-blue); }
.btn--primary:hover { background: #008ed0; }

.btn--primary[disabled] {
  background: #7db8d4;
  cursor: wait;
  transform: none;
}

.btn--navy { color: var(--white); background: var(--falk-navy); }
.btn--navy:hover { background: #1c3080; }

.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

.btn--outline-dark {
  color: var(--falk-navy);
  border-color: rgba(34, 58, 142, 0.32);
  background: var(--white);
}

/* ---------- Topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 228, 238, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.topbar__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 26px;
}

.logo { flex: 0 0 auto; }
.logo img { width: 178px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: #44536a;
}

.nav__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color var(--ease), background-color var(--ease);
}

.nav__link:hover {
  color: var(--falk-navy);
  background: rgba(34, 58, 142, 0.06);
}

.nav__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 12px 22px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--falk-navy);
  white-space: nowrap;
  transition: background-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.nav__cta:hover {
  background: #1c3080;
  box-shadow: 0 10px 24px rgba(34, 58, 142, 0.18);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle svg { width: 24px; height: 24px; color: var(--falk-navy); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0f1e46;
}

.hero__media { position: absolute; inset: 0; }

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 16, 40, 0.92) 0%, rgba(13, 29, 71, 0.82) 44%, rgba(13, 29, 71, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 16, 40, 0.8) 0%, rgba(8, 16, 40, 0.08) 42%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(82svh - 76px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 88px 0 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(85, 220, 162, 0.44);
  border-radius: 999px;
  color: #7ce8b5;
  background: rgba(31, 157, 115, 0.18);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero__badge::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: #55dca2;
  box-shadow: 0 0 0 4px rgba(85, 220, 162, 0.22);
}

.hero__sub {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__trust {
  display: grid;
  max-width: 930px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero__trust-item {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(10, 22, 55, 0.46);
}

.hero__trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.22rem;
}

.hero__trust-item span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

/* ---------- Stats-Band ---------- */

.stats { color: var(--white); background: var(--falk-navy); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  display: grid;
  min-height: 116px;
  place-items: center;
  align-content: center;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.stat:last-child { border-right: 0; }

.stat__value {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat__value b { color: var(--falk-blue); font-weight: inherit; }

.stat__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ---------- Warum Falk ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 54px;
  align-items: center;
}

.split__image {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.split__image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.competence-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.competence-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.competence-list li::before {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  content: "";
  background: var(--falk-blue);
  clip-path: polygon(40% 73%, 18% 51%, 27% 42%, 40% 55%, 73% 22%, 82% 31%);
}

/* ---------- Trust-Leiste (Auszeichnungen & Kennzahlen) ---------- */

.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
}

.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.trustbar__item svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--falk-blue);
}

.trustbar__item strong {
  display: block;
  color: var(--falk-navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.trustbar__item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- Footer-Credentials (auf allen Seiten) ---------- */

.footer__cred {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ---------- Benefits ---------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.benefit-card:hover {
  border-color: rgba(0, 160, 227, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefit-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--falk-blue);
  background: rgba(0, 160, 227, 0.1);
}

.benefit-card__icon svg { width: 22px; height: 22px; }

.benefit-card p { flex: 1; margin-bottom: 0; color: var(--muted); }

/* ---------- Offene Stellen ---------- */

.job-block + .job-block { margin-top: 76px; }

.job-block__head {
  max-width: 940px;
  margin-bottom: 26px;
}

.job-block__head h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 24px;
  align-items: start;
}

.job-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.07);
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.job-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(34, 58, 142, 0.16);
  border-radius: 999px;
  color: var(--falk-navy);
  background: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.job-chip svg { width: 15px; height: 15px; flex: 0 0 15px; color: var(--falk-blue); }

.job-card h4 {
  margin: 30px 0 16px;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--falk-navy);
  letter-spacing: 0.04em;
}

.job-card h4:first-of-type { margin-top: 0; }

.job-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.job-list li::before {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  content: "";
  background: var(--falk-blue);
  clip-path: polygon(40% 73%, 18% 51%, 27% 42%, 40% 55%, 73% 22%, 82% 31%);
}

.job-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.job-apply-card {
  padding: 30px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #071229 0%, var(--falk-navy) 100%);
  box-shadow: 0 20px 46px rgba(15, 30, 70, 0.24);
}

.job-apply-card h3 { color: var(--white); font-size: 1.3rem; }

.job-apply-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.job-apply-card .btn { width: 100%; }

.job-apply-card .btn + .btn { margin-top: 10px; }

.job-facts {
  display: grid;
  gap: 0;
  padding: 8px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.job-facts__row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.job-facts__row:last-child { border-bottom: 0; }

.job-facts__label { color: var(--muted); font-weight: 700; }
.job-facts__value { color: var(--ink); font-weight: 800; }

.job-open {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 76px;
  padding: 30px 34px;
  border: 1px dashed rgba(34, 58, 142, 0.32);
  border-radius: var(--radius);
  background: var(--white);
}

.job-open h3 { margin-bottom: 6px; }
.job-open p { margin-bottom: 0; color: var(--muted); }

/* ---------- Stellen-Teaser auf der Übersichtsseite ---------- */

.job-teasers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.job-teaser {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.07);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.job-teaser:hover {
  border-color: rgba(0, 160, 227, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.job-teaser__no {
  margin-bottom: 10px;
  color: var(--falk-blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.job-teaser h3 {
  margin-bottom: 6px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.job-teaser h3 a { transition: color var(--ease); }
.job-teaser h3 a:hover { color: var(--falk-navy); }

/* Ganze Karte klickbar, ohne die Buttons zu überdecken */
.job-teaser h3 a::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

.job-teaser__sub {
  margin-bottom: 20px;
  color: var(--falk-navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.job-teaser__text {
  flex: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.job-teaser__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* ---------- Kopfbereich der Stellen-Detailseite ---------- */

.job-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 160, 227, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 160, 227, 0.08) 1px, transparent 1px),
    #0f1e46;
  background-size: 56px 56px;
}

.job-hero__inner { padding: 46px 0 56px; }

.job-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.job-hero .job-card__meta { margin-bottom: 30px; }

.job-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.job-chip--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.job-chip--light svg { color: #8be0ff; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  content: "›";
}

.breadcrumb a { color: rgba(255, 255, 255, 0.82); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current] { color: rgba(255, 255, 255, 0.6); }

/* ---------- Ablauf ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.step-card h3 { color: var(--white); }

.step-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.step-card__no {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--falk-blue);
  font-size: 1rem;
  font-weight: 800;
}

/* ---------- Bewerbung ---------- */

.apply-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.contact-card h3 { margin-bottom: 2px; }

.contact-card__role {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card__rows {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card__rows li {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.contact-card__rows svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--falk-blue);
}

.contact-card__rows a:hover { color: var(--falk-navy); text-decoration: underline; }

.diversity {
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--falk-blue);
  color: var(--muted);
  font-size: 0.92rem;
}

.form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }

/* Honeypot: für Menschen unsichtbar, Bots füllen es aus */
.field--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.field label .req { color: var(--falk-blue); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7788' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.field textarea { min-height: 128px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--falk-blue);
  box-shadow: 0 0 0 3px rgba(0, 160, 227, 0.16);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #d24a43; }

.field__error {
  display: none;
  color: #c8362f;
  font-size: 0.82rem;
  font-weight: 700;
}

.field__error.is-visible { display: block; }

.upload {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px dashed rgba(34, 58, 142, 0.3);
  border-radius: var(--radius);
  background: var(--soft);
  cursor: pointer;
  transition: border-color var(--ease), background-color var(--ease);
}

.upload:hover { border-color: var(--falk-blue); background: var(--soft-2); }

.upload svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--falk-navy); }

.upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.upload__text { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.upload__hint { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 500; }

.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--falk-navy);
}

.check a { color: var(--falk-navy); font-weight: 800; text-decoration: underline; }

.form__submit {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.form__hint { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* Fehlermeldung beim Versand */
.form__failure {
  display: none;
  grid-column: 1 / -1;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(210, 74, 67, 0.4);
  border-radius: var(--radius);
  color: #a12822;
  background: rgba(210, 74, 67, 0.07);
  font-size: 0.9rem;
  font-weight: 700;
}

.form__failure.is-visible { display: block; }
.form__failure a { text-decoration: underline; }

.form__success {
  display: none;
  padding: 44px 38px;
  border: 1px solid rgba(31, 157, 115, 0.3);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
  text-align: center;
}

.form__success.is-visible { display: block; }

.form__success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--green);
}

.form__success p { margin-bottom: 0; color: var(--muted); }

/* ---------- Mobile Apply-Leiste ---------- */

.apply-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 28px rgba(17, 24, 39, 0.1);
}

.apply-bar strong {
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.3;
}

.apply-bar .btn { flex: 0 0 auto; white-space: nowrap; }

.apply-bar .btn { min-height: 42px; padding: 9px 18px; white-space: nowrap; }

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

.footer {
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(280px, 1.25fr) repeat(2, minmax(0, 0.9fr));
  gap: 34px;
  margin-bottom: 34px;
}

.footer img {
  width: 180px;
  height: auto;
  margin-bottom: 18px;
}

.footer p { color: var(--muted); }

.footer h3 { margin-bottom: 16px; font-size: 1rem; }

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a { color: var(--muted); font-weight: 700; }
.footer a:hover { color: var(--falk-navy); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.2rem; }

  .nav { display: none; }

  .nav.is-open {
    position: absolute;
    right: 20px;
    top: 76px;
    display: grid;
    width: min(360px, calc(100vw - 40px));
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav__link { min-height: auto; padding: 12px; }
  .nav.is-open .nav__cta { margin: 8px 0 0; padding: 13px 18px; text-align: center; }

  .menu-toggle { display: inline-flex; }

  .section-head,
  .split,
  .apply-grid,
  .job-layout { grid-template-columns: 1fr; }

  .job-side { position: static; }

  .benefit-grid,
  .steps-grid,
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .stat:nth-child(2) { border-right: 0; }
}

@media (max-width: 760px) {
  .shell { width: calc(100% - 28px); }
  .section { padding: 64px 0; }

  /* Trust-Leiste: linksbündige Spalte, damit die Icons sauber untereinander stehen */
  .trustbar__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
  .trustbar__item { width: 100%; }

  h1 {
    max-width: 100%;
    font-size: 1.9rem;
    line-height: 1.16;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  h2 { font-size: 1.85rem; }

  .hero__content { min-height: calc(78svh - 76px); padding: 60px 0 40px; }
  .hero__sub { font-size: 1rem; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; white-space: normal; }

  .hero__trust,
  .benefit-grid,
  .steps-grid,
  .form__row,
  .footer__grid,
  .job-open { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }

  .job-block + .job-block { margin-top: 56px; }
  .job-open { margin-top: 56px; padding: 24px 20px; }
  .job-open .btn { width: 100%; }
  .job-card { padding: 26px 22px; }

  .job-teasers { grid-template-columns: 1fr; }
  .job-teaser { padding: 26px 22px; }
  .job-teaser__actions .btn { width: 100%; }

  .job-hero__inner { padding: 34px 0 42px; }
  .job-hero__actions { flex-direction: column; align-items: stretch; }
  .job-hero__actions .btn { width: 100%; white-space: normal; }
  .job-facts__row { grid-template-columns: 1fr; gap: 2px; }

  .split__image,
  .split__image img { min-height: 320px; }

  .form { padding: 26px 20px; }
  .form__submit .btn { width: 100%; }

  .apply-bar { display: flex; }
  body { padding-bottom: 84px; }

  .footer__bottom { flex-direction: column; }
}
