@font-face {
  font-family: "Azo Sans";
  src: url("assets/fonts/AzoSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Azo Sans";
  src: url("assets/fonts/AzoSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --lime:        #B8FF28;
  --lime-deep:   #7EC800;
  --lime-glow:   rgba(184, 255, 40, 0.32);
  --ink:         #111111;
  --coal:        #191B16;
  --sage:        #F0F2EB;
  --mist:        #E5E9DE;
  --line:        #D0D5C8;
  --white:       #FFFFFF;
  --glass-dark:  rgba(12, 14, 10, 0.58);
  --glass-light: rgba(255, 255, 255, 0.82);
  --shadow:      0 24px 56px rgba(16, 22, 12, 0.18);
  --max:         1200px;
  --pill-top:    0px;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Azo Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sage);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 700;
}

p { line-height: 1.6; }

ul, ol { list-style: none; }

img { display: block; max-width: 100%; }

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

button, input, select, textarea { font: inherit; }

address { font-style: normal; }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.sr-only,
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 9999;
  top: 12px; left: 12px;
  width: auto; height: auto;
  margin: 0;
  padding: 10px 16px;
  clip: auto;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ══════════════════════════════════════
   SECTION LABELS  (pill badges)
══════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  margin: 0 0 28px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 100px;
}

.section-label-light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 24px var(--lime-glow);
}
.btn-lime:hover {
  background: #ccff55;
  box-shadow: 0 14px 32px rgba(184, 255, 40, 0.44);
}

.btn-outline {
  border-color: rgba(17, 17, 17, 0.22);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: rgba(17, 17, 17, 0.05); }

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.2); }

.btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.15); }

.btn-large {
  min-height: 54px;
  padding: 14px 30px;
  font-size: 1rem;
}

.btn-card {
  width: 100%;
  margin-top: auto;
  border-color: var(--line);
  color: var(--ink);
  background: var(--sage);
  border-radius: 8px;
  font-size: 0.88rem;
}
.btn-card:hover { background: var(--mist); }
.btn-card:focus-visible { outline-color: var(--lime-deep); }

/* ══════════════════════════════════════
   HEADER — FLOATING PILL NAV
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0;
  pointer-events: all;
}

.nav-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 12px 40px 12px 40px;
  background: rgba(240, 242, 235, 0.95);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  pointer-events: all;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .nav-pill {
  background: rgba(240, 242, 235, 0.98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 200px;
}
.brand img { width: 100%; height: auto; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 26px);
  font-size: 0.87rem;
  font-weight: 700;
}

.site-nav a {
  padding: 7px 2px;
  color: rgba(17, 17, 17, 0.68);
  white-space: nowrap;
  position: relative;
  transition: color 0.15s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--lime-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 9px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 12, 8, 0.6) 0%,
      rgba(10, 12, 8, 0.3) 45%,
      rgba(10, 12, 8, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 14vw, 160px) 24px 48px;
  animation: heroFadeUp 0.9s 0.1s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  margin: 0 0 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.6rem, 9vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.028em;
  font-weight: 700;
  max-width: 1000px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 38px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Glassmorphism stat cards */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 24px 52px;
  width: min(960px, 100%);
  margin: 0 auto;
  animation: heroFadeUp 0.9s 0.35s ease both;
}

.stat-card {
  padding: 24px 28px;
  background: var(--glass-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.stat-num {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--lime);
  letter-spacing: -0.03em;
}

.stat-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════ */
.section {
  padding: clamp(56px, 8vw, 100px) 0;
}

/* Two-column head: label | heading */
.head-row {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.head-row h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.05;
}

/* Three-column head: label | heading | description */
.head-row-3 {
  display: grid;
  grid-template-columns: max-content minmax(320px, 1.2fr) minmax(220px, 0.8fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 44px;
}

.head-row-3 h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.05;
}

.head-row-3 p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 1rem;
  padding-top: 6px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ══════════════════════════════════════
   SECTION OVERLAP UTILITY
══════════════════════════════════════ */
.section-overlap-top {
  margin-top: -40px;
  border-radius: 32px 32px 0 0;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════
   PATHS  (full-bleed two-up cards)
══════════════════════════════════════ */
.paths-section {
  background: var(--white);
  padding-bottom: 0;
}

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

.paths-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 1.05;
  max-width: 820px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.path-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: attr(data-num);
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-size: clamp(10rem, 18vw, 18rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.06;
  color: currentColor;
  pointer-events: none;
  user-select: none;
}

.path-card.dark-card { background: var(--coal); color: var(--white); }
.path-card.lime-card  { background: var(--lime);  color: var(--ink); }

.path-num {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.45;
  margin-bottom: auto;
  padding-bottom: 48px;
}

.path-card h3 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.path-card p {
  margin: 0 0 28px;
  opacity: 0.76;
  max-width: 420px;
  font-size: 1.02rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 10px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.18s ease;
}
.pill-link:hover { background: rgba(255,255,255,0.1); }
.pill-link.pill-dark { border-color: rgba(17,17,17,0.38); }
.pill-link.pill-dark:hover { background: rgba(17,17,17,0.06); }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.service-section {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

.service-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(44px, 8vw, 104px);
  align-items: start;
}

.service-intro {
  min-width: 0;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.service-intro h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.service-intro p {
  color: rgba(17, 17, 17, 0.66);
  margin: 0;
}

.service-cards { display: grid; gap: 14px; position: relative; z-index: 1; }

.service-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 22, 12, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: var(--lime);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 22, 12, 0.1);
}

.service-card:hover::before { opacity: 1; }

.service-mark {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--coal);
  color: var(--lime);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.service-body { grid-column: 2; }
.service-body h3 { margin: 0 0 8px; font-size: 1.28rem; line-height: 1.15; }
.service-body p  { margin: 0 0 12px; color: rgba(17,17,17,0.64); font-size: 0.95rem; }
.inline-link     { font-weight: 700; color: var(--coal); font-size: 0.9rem; }

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industry-section { background: var(--white); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--mist);
}

.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.industry-card:hover img { transform: scale(1.05); }

.industry-card span {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 7px 14px;
  background: var(--coal);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
}

.industry-card.text-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--coal);
  color: var(--white);
}

.industry-card.text-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.industry-card.text-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

/* ══════════════════════════════════════
   PROCESS  (dark section)
══════════════════════════════════════ */
.process-section {
  background: var(--coal);
  color: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(44px, 9vw, 120px);
  align-items: start;
}

.process-intro {
  min-width: 0;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.process-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.process-intro p { margin: 0; color: rgba(255, 255, 255, 0.64); }

.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.step-num {
  color: var(--lime);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding-top: 5px;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  line-height: 1.1;
}

.steps p { margin: 0; color: rgba(255, 255, 255, 0.62); }

/* ══════════════════════════════════════
   PLACEMENT
══════════════════════════════════════ */
.placement-section { background: var(--sage); }

.placement-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.placement-media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.placement-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.placement-copy {
  min-width: 0;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.placement-copy h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
}

.placement-copy p { color: rgba(17,17,17,0.66); margin-bottom: 24px; }

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(17,17,17,0.76);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 2.5px;
  background: var(--lime-deep);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   APPLICANT
══════════════════════════════════════ */
.applicant-section { background: var(--white); }

.applicant-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.78fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.applicant-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.applicant-copy > p { color: rgba(17,17,17,0.66); margin-bottom: 0; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0 28px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.35;
}

.bi-arrow { color: var(--lime-deep); flex-shrink: 0; font-weight: 700; }

.applicant-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--coal);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  color: var(--white);
}

.mini-step span {
  font-weight: 700;
  color: var(--lime);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 28px;
}

.mini-step strong { font-size: 1.05rem; }

/* ══════════════════════════════════════
   JOBS
══════════════════════════════════════ */
.jobs-section {
  background: var(--sage);
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
}

.job-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.job-filters label {
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.6);
}

.job-filters input,
.job-filters select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage);
  color: var(--ink);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.job-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(16, 22, 12, 0.1);
}

/* Vom Job-Filter (script.js) ausgeblendete Karten wirklich verstecken –
   sonst überschreibt display:flex oben das hidden-Attribut. */
.job-card[hidden] { display: none !important; }

/* ══════════════════════════════════════
   STELLEN-DETAILSEITE (single fm_job)
══════════════════════════════════════ */
.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

/* Seitenleiste schwebt beim Scrollen mit (mit Abstand unter dem fixen Kopf). */
.job-aside { position: sticky; top: 140px; }

.job-aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
}

.job-aside-label {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 18px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.job-facts { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 13px; }
.job-facts li { line-height: 1.4; color: var(--ink); font-size: 0.96rem; }
.job-facts strong {
  display: block;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.5);
  margin-bottom: 2px;
}

.job-aside-card > .btn { display: flex; width: 100%; margin-top: 4px; }

.job-contact {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.75);
}
.job-contact .job-contact-label { font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.job-contact p { margin: 0 0 4px; }
.job-contact a { color: var(--lime-deep); font-weight: 600; }

@media (max-width: 860px) {
  .job-layout { grid-template-columns: 1fr; }
  .job-aside { position: static; }
}

/* Aufzählungszeichen in Fließtext-Inhalten wiederherstellen
   (globaler Reset oben setzt list-style:none). */
.legal-content ul { list-style: disc; padding-left: 1.3em; }
.legal-content ol { list-style: decimal; padding-left: 1.3em; margin: 0 0 16px; }
.legal-content ul ul { list-style: circle; }

/* ══════════════════════════════════════
   BEWERBUNGS-WIDGET (zvoove) – an das Design angleichen.
   Strukturneutrale Gestaltung der Standard-Formularelemente.
══════════════════════════════════════ */
.application-widget { max-width: 760px; }

.application-widget fieldset {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px 24px;
  margin: 0 0 22px;
  min-width: 0;
}
/* "Bewerben für:"-Titel deutlich von der ersten Box (Persönliche Informationen) absetzen.
   Das Widget ersetzt sein eigenes Tag beim Rendern, daher ohne Tag-Scope. */
.application-widget fieldset:first-of-type { margin-top: 34px; }
.application-widget legend {
  padding: 0 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.application-widget label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.application-widget input[type="text"],
.application-widget input[type="email"],
.application-widget input[type="tel"],
.application-widget input[type="number"],
.application-widget input[type="search"],
.application-widget input:not([type]),
.application-widget select,
.application-widget textarea {
  width: 100%;
  max-width: 440px;
  margin-top: 6px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
}
.application-widget textarea { min-height: 140px; resize: vertical; max-width: 100%; }

.application-widget input:focus,
.application-widget select:focus,
.application-widget textarea:focus {
  outline: none;
  border-color: var(--lime-deep);
  box-shadow: 0 0 0 3px var(--lime-glow);
}

/* Auswahl-Knöpfe (Anrede) und Einwilligung bleiben kompakt/inline. */
.application-widget input[type="checkbox"] {
  width: auto;
  max-width: none;
  margin: 0 6px 0 0;
  vertical-align: middle;
}
/* Anrede-Optionen klar voneinander trennen: Abstand VOR jedem Auswahlknopf,
   damit "Herr"/"Frau"/"Keine Anrede" nicht aneinanderkleben. Wirkt unabhängig
   davon, ob die Beschriftung den Knopf umschließt oder ihm folgt. */
.application-widget input[type="radio"] {
  width: auto;
  max-width: none;
  margin: 0 6px 0 26px;
  vertical-align: middle;
}

/* Absende-Button im Faktor-M-Stil (lime Pille). */
.application-widget button,
.application-widget input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 11px 26px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.application-widget button:hover,
.application-widget input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--lime-glow);
}

/* Autofill-Tönung des Browsers (hellblau) neutralisieren – beide Formulare. */
.application-widget input:-webkit-autofill,
.application-widget input:-webkit-autofill:hover,
.application-widget input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
  box-shadow: 0 0 0 1000px var(--white) inset !important;
  -webkit-text-fill-color: var(--ink) !important;
}

/* Initiativ-Widget bringt ein eigenes Stylesheet mit – farblich an das
   Bewerbungsformular angleichen (weiße Felder, Lime-Button). !important, um das
   externe Stylesheet zu übersteuern; Layout/Struktur bleibt unangetastet. */
.application-widget recruitnow-open-enrollment-widget input:not([type="radio"]):not([type="checkbox"]),
.application-widget recruitnow-open-enrollment-widget select,
.application-widget recruitnow-open-enrollment-widget textarea {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  color: var(--ink) !important;
}
.application-widget recruitnow-open-enrollment-widget input:focus,
.application-widget recruitnow-open-enrollment-widget select:focus,
.application-widget recruitnow-open-enrollment-widget textarea:focus {
  border-color: var(--lime-deep) !important;
  box-shadow: 0 0 0 3px var(--lime-glow) !important;
}
.application-widget recruitnow-open-enrollment-widget button[type="submit"],
.application-widget recruitnow-open-enrollment-widget input[type="submit"] {
  background: var(--lime) !important;
  color: var(--ink) !important;
  border: 1.5px solid transparent !important;
  border-radius: 100px !important;
}

/* Initiativ-Formular in denselben abgerundeten Rahmen setzen wie die
   Bewerben-für-Box auf der Jobdetailseite. Der Rahmen sitzt auf dem eigenen
   Wrapper-DIV (statt am Custom-Element, das per display:contents keinen
   eigenen Kasten zeichnet). */
.application-widget-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 28px 32px;
}

/* Validierungs-/Pflichtfeld-Hinweise rot darstellen.
   Bewerbungs-Widget (Jobdetailseite): .rnErrors. Initiativ-Widget bringt
   .oe_validation bereits rot mit – hier zur Sicherheit angeglichen.
   !important übersteuert ggf. vom Widget injizierte Inline-Styles. */
.application-widget .rnErrors,
.application-widget .oe_validation,
.application-widget .oe_validationList {
  color: #c81e1e !important;
  background: none !important;
}
/* Feld mit Fehler zusätzlich rot umranden (klarere Sichtbarkeit). */
.application-widget .rnFormGroup.error input,
.application-widget .rnFormGroup.error select,
.application-widget .rnFormGroup.error textarea {
  border-color: #c81e1e !important;
}

.job-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.job-tags span {
  padding: 4px 11px;
  background: var(--mist);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(17,17,17,0.7);
}

.job-card h3 { margin: 0; font-size: 1.2rem; line-height: 1.18; }
.job-card p  { margin: 0; color: rgba(17,17,17,0.64); font-size: 0.94rem; }

.empty-state {
  padding: 20px;
  margin: 14px 0 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  color: rgba(17,17,17,0.58);
}

/* Umkreissuche-Bedienelemente */
.job-geo { display: flex; gap: 8px; align-items: stretch; }
.job-geo input[data-job-plz] { flex: 1 1 auto; min-width: 0; }
.job-geo select { flex: 0 0 auto; width: auto; min-width: 116px; }
.job-geo-btn {
  flex: 0 0 auto;
  width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}
.job-geo-btn:hover { border-color: var(--lime-deep); }
.job-geo-status { margin: -8px 0 22px; font-size: 0.9rem; font-weight: 600; color: rgba(17,17,17,0.6); }
.job-geo-status.is-error { color: #c0392b; }

/* ══════════════════════════════════════
   APPLY  (dark section)
══════════════════════════════════════ */
.apply-section {
  background: var(--coal);
  color: var(--white);
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(320px, 1.32fr);
  gap: clamp(44px, 9vw, 108px);
  align-items: center;
}

.apply-layout h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.apply-layout > div > p { color: rgba(255,255,255,0.62); margin: 0; }

.apply-card {
  padding: clamp(28px, 4.5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.apply-tag {
  display: inline-flex;
  padding: 5px 14px;
  margin-bottom: 20px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 100px;
}

.apply-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.apply-card p { color: rgba(255,255,255,0.62); margin: 0; }
.apply-card .btn { margin-top: 36px; }
.apply-card .action-row { margin-top: 36px; }
.apply-card .action-row .btn { margin-top: 0; }

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-section { background: var(--white); }

.team-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.team-intro h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.team-intro p { color: rgba(17,17,17,0.66); margin: 0; }

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

.team-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--sage);
  border: 1px solid var(--line);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.team-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.team-info { padding: 18px 20px 22px; }
.team-info h3 { margin: 0 0 4px; font-size: 1.14rem; }
.team-info p  { margin: 0; color: rgba(17,17,17,0.56); font-size: 0.88rem; }

/* Team-Teaser: Text links, Erfolgsformel-Bild rechts */
.team-teaser-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.team-teaser-layout .team-intro { margin-bottom: 0; max-width: 560px; }
.team-formula img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 860px) {
  .team-teaser-layout { grid-template-columns: 1fr; gap: 32px; }
  .team-formula img { max-width: 520px; }
}

/* ══════════════════════════════════════
   DOWNLOADS
══════════════════════════════════════ */
.downloads-section {
  background: var(--sage);
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.download-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(16, 22, 12, 0.1);
}

.download-card:focus-visible {
  outline: 3px solid var(--lime-deep);
  outline-offset: 3px;
}

.dl-tag {
  display: inline-flex;
  width: max-content;
  padding: 4px 11px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 100px;
}

.download-card strong {
  display: block;
  margin: auto 0 14px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.download-card em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--lime-deep);
}

/* ══════════════════════════════════════
   RATGEBER
══════════════════════════════════════ */
.guide-section { background: var(--white); }

.guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(360px, 1.44fr);
  gap: 48px;
  align-items: start;
}

.guide-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.guide-list { display: grid; gap: 0; }

.guide-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.guide-item:last-child { border-bottom: 1px solid var(--line); }

.guide-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime-deep);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.guide-item h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  line-height: 1.22;
}

.guide-item a {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  transition: background 0.15s ease;
}

.guide-item a:hover { background: var(--sage); }

/* ══════════════════════════════════════
   CONTACT  (dark section)
══════════════════════════════════════ */
.contact-section {
  background: var(--coal);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(44px, 9vw, 108px);
  align-items: center;
}

.contact-layout h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.contact-layout > div > p { color: rgba(255,255,255,0.62); margin: 0; }

.contact-card {
  padding: clamp(28px, 4.5vw, 46px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

.contact-card h3 { margin: 0 0 20px; font-size: 1.6rem; }
.contact-card p  { color: rgba(255,255,255,0.62); margin: 0 0 14px; }

.contact-card a:not(.btn) {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  margin-bottom: 6px;
  transition: color 0.15s ease;
}
.contact-card a:not(.btn):hover { color: var(--white); }

.contact-card .action-row { margin-top: 24px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  padding: 58px 0;
  background: #0C0D0A;
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.65fr 0.7fr;
  gap: 40px;
}

.footer-logo { width: 48px; margin-bottom: 18px; }

.footer-brand p {
  color: rgba(255,255,255,0.52);
  margin: 0;
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.55;
}

/* GVP-Mitgliedslogo – dezentes Vertrauenssignal, kleiner als das Faktor-M-Logo */
.footer-gvp {
  display: block;
  height: 40px;
  width: auto;
  margin-top: 22px;
  border-radius: 6px;
  opacity: 0.9;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--lime);
}

.footer-col p {
  color: rgba(255,255,255,0.52);
  margin: 0 0 10px;
  font-size: 0.88rem;
}

.footer-col .footer-company {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.footer-social a:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ══════════════════════════════════════
   FLOATING CALL BUTTON
══════════════════════════════════════ */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 12px 30px var(--lime-glow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(184, 255, 40, 0.5);
}

.floating-call svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 50;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 12px 30px var(--lime-glow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(184, 255, 40, 0.5);
}

.floating-whatsapp svg {
  width: 28px; height: 28px;
  fill: currentColor;
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.soft-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.soft-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .soft-reveal { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1100px
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-pill {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(240, 242, 235, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.14);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.04rem;
  }

  .site-nav a:last-child { border-bottom: none; }

  .site-nav a::after { display: none; }

  .nav-toggle { display: block; }

  .header-cta { display: none; }

  .job-grid,
  .download-grid { grid-template-columns: repeat(2, 1fr); }

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

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 820px
══════════════════════════════════════ */
@media (max-width: 820px) {
  .hero-stats { grid-template-columns: 1fr; max-width: 460px; }

  .head-row { grid-template-columns: 1fr; gap: 0; }
  .head-row-3 { grid-template-columns: 1fr; gap: 16px; }

  .paths-section .paths-intro { padding: 0 24px; }
  .path-grid { grid-template-columns: 1fr; }

  .service-layout,
  .process-layout,
  .placement-layout,
  .applicant-layout,
  .apply-layout,
  .contact-layout,
  .footer-layout { grid-template-columns: 1fr; }

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

  .benefit-grid,
  .job-filters { grid-template-columns: 1fr; }

  .guide-layout { grid-template-columns: 1fr; gap: 32px; }

  .guide-item { grid-template-columns: 1fr; gap: 8px; }

  .why-grid { grid-template-columns: 1fr; }

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

/* ══════════════════════════════════════
   PAGE HERO  (Unterseiten-Banner)
══════════════════════════════════════ */
.page-hero {
  padding: clamp(130px, 18vw, 200px) 0 clamp(32px, 4vw, 52px);
  background: var(--coal);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(184, 255, 40, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 18%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 255, 40, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.page-hero p {
  margin: 0 0 32px;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: rgba(255, 255, 255, 0.62);
  max-width: 580px;
  line-height: 1.55;
}

/* ══════════════════════════════════════
   LEGAL / RECHTSTEXT (Impressum, Datenschutz)
══════════════════════════════════════ */
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.015em;
  margin: 44px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.legal-content h4 { font-size: 1rem; font-weight: 700; margin: 20px 0 6px; }
.legal-content h5 { font-size: 0.94rem; font-weight: 700; margin: 16px 0 6px; }
.legal-content p,
.legal-content li { line-height: 1.7; margin: 0 0 12px; }
.legal-content ul { padding-left: 1.25em; margin: 0 0 16px; }
.legal-content a { color: var(--lime-deep); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-note {
  background: var(--mist);
  border-left: 4px solid var(--lime-deep);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 0 0 36px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.legal-placeholder {
  color: var(--lime-deep);
  font-weight: 700;
}

/* ══════════════════════════════════════
   COCKPIT-STATUSSEITEN (Bewerber-Landingpages)
══════════════════════════════════════ */
.cockpit-confirm {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cockpit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 0 28px;
}
.cockpit-icon svg {
  width: 38px;
  height: 38px;
}
.cockpit-icon-success {
  background: var(--lime);
  color: var(--ink);
}
.cockpit-icon-info {
  background: var(--mist);
  color: var(--lime-deep);
}
.cockpit-icon-neutral {
  background: var(--coal);
  color: var(--white);
}
.cockpit-confirm h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 18px;
}
.cockpit-confirm p {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.72);
  margin: 0 auto 16px;
  max-width: 540px;
}
.cockpit-confirm .action-row {
  justify-content: center;
  margin-top: 32px;
}

/* ══════════════════════════════════════
   ACTIVE NAV LINK
══════════════════════════════════════ */
.site-nav a[aria-current="page"] {
  color: var(--ink);
}
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ══════════════════════════════════════
   WHY / USP SECTION
══════════════════════════════════════ */
.why-section {
  background: var(--sage);
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.why-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(16, 22, 12, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(16, 22, 12, 0.09);
}

.why-num {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime-deep);
  margin-bottom: 18px;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.1;
}

.why-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.95rem;
}

/* Button-Zeile in Karten nach unten schieben -> Buttons auf gleicher Hoehe */
.why-card .action-row { margin-top: auto; padding-top: 22px; }

/* ══════════════════════════════════════
   CTA STRIP
══════════════════════════════════════ */
.cta-strip {
  background: var(--lime);
  padding: clamp(60px, 9vw, 100px) 0;
}

.cta-strip-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  color: var(--ink);
  max-width: 580px;
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL  ≤ 560px
══════════════════════════════════════ */
@media (max-width: 560px) {
  .nav-pill { padding: 10px 20px; }
  .brand { width: 158px; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .job-grid,
  .download-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }

  .industry-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
}
