/* ============================================================
   PHYSIOPARK Berlin — Karriereseite
   Nachbau Canva-Mockup (Brandkit 15.png), Brand Guidelines:
   Hellgrün #91C73D · Orange #F88246 · Dunkelgrün #4E7B08
   Dunkelgrau #7D7D7F · Hellgrau #D9D9D9
   Montserrat (Headlines) · Lora Italic (Sublines) · Inter (Text)
   ============================================================ */

:root {
  --gruen: #91C73D;
  --gruen-dunkel: #4E7B08;
  --gruen-mittel: #578E14;
  --orange: #F88246;
  --grau-text: #55565A;
  --grau-flow: #6E6F72;
  --hellgrau: #D9D9D9;
  --creme: #FAFBF4;
  --karte-hell: #F3F8E8;
  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-sub: 'Lora', Georgia, serif;
  --font-text: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(85, 86, 90, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

body {
  font-family: var(--font-text);
  color: var(--grau-flow);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* height:auto — sonst erzwingt das height-Attribut (CLS-Schutz) die volle Pixelhöhe,
   sobald CSS nur die Breite setzt (z. B. .bild-1 { width: 78% }) */
img { max-width: 100%; height: auto; display: block; }

/* Mockup gemessen: Content-Breite ~967px (Ränder bei x=203 auf 1366) */
.container { max-width: 1018px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 22px; /* Mockup gemessen: Button ~218x35px */
  line-height: 1.25;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(248, 130, 70, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(248, 130, 70, .45); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: rgba(248, 130, 70, .08); }

/* ---------- Badges (Pill mit Punkt) ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gruen-dunkel);
  border: 2px solid var(--gruen);
  border-radius: 999px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, .75);
}
.badge::before {
  content: "";
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

/* ---------- Headlines ---------- */
.headline {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.08;
  color: var(--grau-text);
}
.headline .zeile-gruen { color: var(--gruen); font-weight: 600; }
.headline .punkt { color: var(--orange); }
.sub-strich {
  width: 90px; height: 4px;
  background: var(--gruen);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 252, 241, .92); /* Hero-Grundton — Mockup-Header verschmilzt mit dem Hero */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(145, 199, 61, .12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.header-logo img { height: 44px; width: auto; }
.main-nav { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grau-text);
  text-decoration: none;
  transition: color .15s;
}
.main-nav a:hover { color: var(--gruen-dunkel); }
.main-nav a.aktiv { font-weight: 700; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--grau-text);
  border-radius: 2px;
  margin: 5px 0;
}

/* ---------- Hero ---------- */
.hero {
  /* Mockup gemessen: Grundton #F8FCF1, sattester grüner Schein links auf halber Höhe (#F0F9E2) */
  background:
    radial-gradient(ellipse 55% 55% at 12% 50%, rgba(145, 199, 61, .10), transparent 65%),
    radial-gradient(ellipse 50% 60% at 92% 80%, rgba(145, 199, 61, .10), transparent 60%),
    #F8FCF1;
  padding: 72px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin: 26px 0 14px;
}
.hero-subline {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--grau-text);
  margin-bottom: 20px;
}
.hero-text { max-width: 430px; margin-bottom: 34px; font-size: .95rem; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-bild img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5; /* Mockup: Hochformat ~405x506 */
  object-fit: cover;
  object-position: center 20%;
}

/* ---------- Das erwartet dich ---------- */
.erwartet { padding: 110px 0; background: #fff; }
.erwartet-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.erwartet-bilder .bild-1 {
  width: 78%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.erwartet-bilder .bild-2 {
  position: relative;
  width: 62%;
  margin: -38% 0 0 auto;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.erwartet-cta { margin-top: 40px; text-align: center; }
.erwartet h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 20px; }
.erwartet-intro { max-width: 470px; margin-bottom: 36px; font-size: .95rem; }

.vorteile-karte {
  border: 2px solid var(--gruen);
  border-radius: 18px;
  background: linear-gradient(170deg, #FCFEF7, #F4F9EA);
  padding: 46px 34px 34px;
  position: relative;
  box-shadow: 0 14px 34px rgba(145, 199, 61, .18);
}
.vorteile-karte .badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #fff;
}
.gehalt-box {
  background: linear-gradient(170deg, #9FCE59, #93C844); /* Mockup gemessen */
  border-radius: 10px;
  color: #fff;
  padding: 16px 22px;
  margin-bottom: 26px;
}
.gehalt-box strong {
  font-family: var(--font-sub);
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2E4A05;
  display: block;
}
/* Mockup: Subline weiß — auf Julians Wunsch mockup-treu (Kontrast: Übergabepunkt in der Uebergabe-Checkliste) */
.gehalt-box span { font-family: var(--font-sub); font-size: .92rem; color: #FCFDFA; }
.fakt { margin-bottom: 24px; }
.fakt:last-child { margin-bottom: 0; }
.fakt strong {
  font-family: var(--font-sub);
  font-style: normal;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--grau-text);
  display: block;
  margin-bottom: 4px;
}
.fakt span { font-family: var(--font-sub); font-size: .95rem; color: var(--grau-flow); }

/* ---------- Deine Vorteile (dunkelgrüner Slider) ---------- */
.vorteile {
  /* Mockup gemessen: flaches #4E7B08, heller Glow im Zentrum (Mitte ≈ #6A9722, Ränder #4D7B08) */
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(145, 199, 61, .34), transparent 72%)
    #4E7B08;
  padding: 100px 0 90px;
  color: #fff;
}
.vorteile-kopf {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}
.vorteile h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: #fff; }
/* Mockup: ganze Zeile in Brand-Hellgrün #93C844, Kontrast über die Strichstärke (im/PARK fett) */
.vorteile h2 .zeile-2 { color: #93C844; font-weight: 600; }
.vorteile h2 .zeile-2 strong { color: #93C844; font-weight: 800; }
.vorteile .sub-strich { background: #C8EB82; }

.slider-pfeile { display: flex; gap: 14px; }
.pfeil-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .8);
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex: none;
}
.pfeil-btn:hover { background: rgba(255, 255, 255, .15); }

.karten-slider {
  display: flex;
  gap: 24px; /* Mockup gemessen */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.karten-slider::-webkit-scrollbar { display: none; }
.karten-slider:focus-visible, .galerie-slider:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.v-karte {
  flex: 0 0 268px; /* Mockup gemessen: Kartenbreite 268px */
  scroll-snap-align: start;
  background: #E2EFCC; /* Mockup gemessen: flat #E1EECB, kein Verlauf */
  border-radius: 16px;
  padding: 26px 24px 30px;
  color: var(--grau-flow);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}
.v-karte .badge { font-size: .82rem; padding: 6px 16px; margin-bottom: 26px; background: #fff; }
.v-karte h3 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--grau-text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.v-karte p { font-size: .84rem; line-height: 1.55; color: #626366; }

.slider-balken {
  height: 6px;
  background: rgba(255, 255, 255, .35);
  border-radius: 3px;
  margin-top: 34px;
  overflow: hidden;
}
.slider-balken .fortschritt {
  height: 100%;
  width: 25%;
  background: var(--gruen);
  border-radius: 3px;
  transition: transform .25s ease, width .25s ease;
}
.vorteile .slider-balken { background: rgba(255, 255, 255, .5); }
.vorteile .slider-balken .fortschritt { background: var(--gruen); }
.vorteile-cta { text-align: center; margin-top: 52px; }

/* ---------- Echte Einblicke / Team ---------- */
.team {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/team-bg.jpg") 65% 30% / cover no-repeat; /* Mockup: Person mittig-rechts */
  opacity: .18;
}
.team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.75) 45%, rgba(255,255,255,.55) 100%);
}
.team .container { position: relative; z-index: 1; }
.team-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Mockup: linke Spalte breiter — „Echte Einblicke" einzeilig */
  gap: 50px;
  align-items: start;
}
.team h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 20px; }
.team-intro { max-width: 430px; margin-bottom: 36px; font-size: .95rem; }

.team-liste { display: flex; flex-direction: column; gap: 16px; max-width: 380px; }
.team-person {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: rgba(255, 255, 255, .9);
  border: 2px solid var(--hellgrau);
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
  font-family: var(--font-text);
  transition: border-color .15s, box-shadow .15s;
}
.team-person .dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gruen);
  flex: none;
  transition: background .15s;
}
.team-person strong { display: block; font-size: 1.05rem; color: var(--grau-text); font-weight: 700; }
.team-person span { font-size: .82rem; color: var(--grau-flow); }
.team-person.aktiv {
  border-color: var(--gruen);
  box-shadow: 0 8px 20px rgba(145, 199, 61, .25);
}
.team-person.aktiv .dot { background: var(--orange); }

.zitat-karte {
  position: relative;
  border: 2px solid var(--gruen-dunkel);
  border-radius: 18px;
  background: rgba(252, 254, 247, .96);
  padding: 54px 42px 40px;
  box-shadow: var(--shadow);
}
.zitat-karte .badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #fff;
  font-size: .85rem;
}
.zitat-karte .badge em { font-style: normal; font-weight: 500; }
.anfz {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--gruen);
  margin-bottom: 10px;
}
.zitat-text {
  font-style: italic;
  font-size: 1.02rem;
  color: var(--grau-text);
  margin-bottom: 26px;
}
.zitat-autor strong { display: block; font-size: 1.05rem; color: var(--grau-text); }
.zitat-autor span { font-size: .85rem; }
.team-cta { text-align: center; margin-top: 34px; } /* Mockup: Button mittig unter der Zitat-Karte */

/* ---------- 3 Schritte ---------- */
.schritte {
  background:
    radial-gradient(ellipse 45% 55% at 20% 30%, rgba(145, 199, 61, .13), transparent 65%),
    linear-gradient(180deg, #FBFDF5, #F7FBEF); /* Mockup: unten heller als bisher */
  padding: 110px 0;
  text-align: center;
}
.schritte .sub-strich { margin: 0 auto 22px; }
.schritte h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.schritte h2 .zeile-1 { color: var(--gruen); font-weight: 800; }
.schritte h2 .zeile-2 { color: var(--gruen); font-weight: 600; }
.schritte-intro { max-width: 460px; margin: 20px auto 64px; font-size: .92rem; }
.schritte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}
.schritt-karte {
  position: relative;
  /* Mockup gemessen: flat #4D7B08 mit hellerem Glow in der Kartenmitte (≈ #688E2C) */
  background:
    radial-gradient(ellipse 75% 60% at 50% 45%, rgba(145, 199, 61, .30), transparent 75%)
    #4E7B08;
  border: 2px solid var(--gruen);
  border-radius: 14px;
  color: #fff;
  padding: 52px 26px 40px;
  box-shadow: 0 14px 30px rgba(78, 123, 8, .3);
}
.schritt-nummer {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid var(--gruen);
  border-radius: 999px;
  padding: 7px 26px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gruen-dunkel);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.schritt-nummer::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
}
.schritt-karte h3 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.schritt-karte p { font-size: .86rem; line-height: 1.55; color: #fff; } /* Mockup: weiß */
.schritte-cta { margin-top: 60px; }

/* ---------- Bewerbungs-Funnel ---------- */
.bewerben { padding: 110px 0; background: #fff; }
.bewerben-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.bewerben h2 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  color: var(--gruen);
}
.bewerben h2 .zeile-3 { font-weight: 600; }
.bewerben-hinweis { margin-top: 26px; max-width: 380px; font-size: .92rem; }

.funnel-schritt-anzeige {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  margin-bottom: 22px;
}
.formfeld { margin-bottom: 22px; }
/* Zwei kurze Felder nebeneinander (Vor-/Nachname, PLZ + Wochenstunden) — der
   Funnel bleibt so trotz der zusätzlichen Pflichtangaben gleich lang. */
.formfeld-paar { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.formfeld label {
  display: block;
  font-size: .92rem;
  color: var(--grau-text);
  margin-bottom: 8px;
}
.formfeld input,
.formfeld select,
.formfeld textarea {
  width: 100%;
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--grau-text);
  border: 1.5px solid var(--gruen-mittel); /* Mockup: schlanker Rahmen */
  border-radius: 6px;
  padding: 10px 14px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(85, 86, 90, .07);
}
.formfeld input:focus,
.formfeld select:focus,
.formfeld textarea:focus {
  outline: none;
  border-color: var(--gruen-dunkel);
  box-shadow: 0 0 0 3px rgba(145, 199, 61, .25);
}
.formfeld-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .84rem;
  margin-bottom: 26px;
}
.formfeld-checkbox input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gruen-dunkel); }
.funnel-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.funnel-schritt { display: none; }
.funnel-schritt.aktiv { display: block; }
.funnel-erfolg {
  display: none;
  text-align: center;
  border: 2px solid var(--gruen);
  border-radius: 18px;
  background: linear-gradient(170deg, #FCFEF7, #F0F7E0);
  padding: 60px 40px;
}
.funnel-erfolg h3 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.funnel-fehler {
  display: none;
  color: #B3401A;
  background: #FDEEE6;
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .88rem;
  margin-top: 18px;
}
.funnel-fussnote {
  font-size: .78rem;
  line-height: 1.5;
  color: #5D5D5D; /* dezent über die Farbe, nicht über die Deckkraft — sonst sinkt der Kontrast mit */
  margin-top: 22px;
}
.funnel-fussnote a { color: #3F6606; }

/* Honeypot — für Menschen unsichtbar */
.hp-feld { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Galerie / Dein neuer Arbeitsplatz ---------- */
.arbeitsplatz {
  background:
    radial-gradient(ellipse 50% 55% at 85% 20%, rgba(145, 199, 61, .14), transparent 65%),
    linear-gradient(180deg, #FDFEFE, #F7FAF0); /* Mockup gemessen */
  padding: 100px 0 90px;
}
.arbeitsplatz-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}
.arbeitsplatz h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); text-align: right; }
.arbeitsplatz .pfeil-btn { border-color: var(--gruen); color: var(--gruen); }
.arbeitsplatz .pfeil-btn:hover { background: rgba(145, 199, 61, .12); }
.galerie-slider {
  display: flex;
  gap: 18px; /* Mockup gemessen */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.galerie-slider::-webkit-scrollbar { display: none; }
.galerie-slider img {
  flex: 0 0 auto;
  height: 220px; /* Mockup gemessen */
  width: auto;
  border-radius: 12px;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(85, 86, 90, .15);
}
.arbeitsplatz .slider-balken { background: #DCE8C2; }

/* ---------- Footer ---------- */
.site-footer {
  background: #E0EECA; /* Mockup gemessen */
  padding: 64px 0 48px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo img { height: 58px; width: auto; }
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #446B07; /* nicht --gruen-dunkel: #4E7B08 ergibt auf #E2ECC8 nur 4,1:1 */
  text-decoration: none;
}
.footer-nav a:hover { text-decoration: underline; }
.ai-hinweis {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: #5D5D5D;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(85, 86, 90, .18);
}
.ai-hinweis img { flex: none; width: 18px; height: 18px; opacity: .8; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .erwartet-grid, .team-grid, .bewerben-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-bild { order: -1; }
  .schritte-grid { grid-template-columns: 1fr; gap: 44px; max-width: 420px; }
  .vorteile-kopf, .arbeitsplatz-kopf { flex-direction: column; align-items: flex-start; }
  .arbeitsplatz h2 { text-align: left; }
  .team-cta { text-align: center; }
}
@media (max-width: 560px) {
  .formfeld-paar { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 760px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--creme);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(145, 199, 61, .2);
  }
  .main-nav.offen { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 40px 0 64px; }
  .erwartet, .team, .schritte, .bewerben { padding: 72px 0; }
  .zitat-karte { padding: 48px 24px 32px; }
  .zitat-karte .badge, .vorteile-karte .badge { white-space: normal; width: max-content; max-width: 90%; }
}

/* ============================================================
   Danke-Seite (danke.html)
   Bewusst dieselben Bausteine wie die Karriereseite: Hero-Anmutung,
   Schritt-Karten, Footer. Die Danke-Seite ist der Moment, in dem der
   Bewerber zum ersten Mal etwas von uns zurückbekommt — sie soll wie
   dieselbe Praxis aussehen, nicht wie eine Systemmeldung.
   ============================================================ */
.danke {
  background:
    radial-gradient(ellipse 55% 55% at 12% 50%, rgba(145, 199, 61, .10), transparent 65%),
    radial-gradient(ellipse 50% 60% at 92% 80%, rgba(145, 199, 61, .10), transparent 60%),
    #F8FCF1;
  padding: 92px 0 84px;
}
.danke-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.danke-karte { max-width: 700px; }
.danke-bild img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 30%;
}
.danke-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3F6606; /* dunkler als --gruen-dunkel: auf #F8FCF1 sind das 7,4:1 */
  background: rgba(145, 199, 61, .18);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 22px;
}
.danke h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 22px; }
.danke-text { font-size: 1.02rem; max-width: 620px; }
.danke-text strong { font-weight: 700; }

.danke-hilfe { background: #fff; padding: 64px 0 84px; }
.danke-hilfe p { font-size: .92rem; color: var(--grau-text); max-width: 640px; }
.danke-hilfe a { color: #3F6606; }

/* Zwei Knöpfe nebeneinander (Danke-Seite) — auf der Karriereseite steht dort nur einer. */
.schritte-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Fehlerseite des Handlers ohne JavaScript nutzt dieselben Bausteine. */
.danke-aktionen { margin-top: 28px; }

/* ============================================================
   Einwilligungsbanner (nur sichtbar, wenn in tracking.js eine ID steht)
   ============================================================ */
.consent-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 999;
  background: #fff;
  border: 2px solid var(--gruen);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(85, 86, 90, .22);
}
.consent-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 24px;
  max-width: 1018px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.consent-text {
  flex: 1 1 380px;
  font-size: .86rem;
  line-height: 1.55;
  color: var(--grau-text);
  margin: 0;
}
.consent-text a { color: #3F6606; }
.consent-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
/* Ablehnen muss gleichwertig erreichbar sein — kein versteckter Textlink. */
.consent-buttons .btn { white-space: nowrap; }

@media (max-width: 960px) {
  .danke-grid { grid-template-columns: 1fr; gap: 40px; }
  .danke-bild { order: -1; }
}
@media (max-width: 760px) {
  .danke { padding: 56px 0 56px; }
  .danke-hilfe { padding-top: 48px; }
  .danke-hilfe { padding-bottom: 56px; }
  .consent-inner { padding: 18px; gap: 16px; }
  .consent-buttons { width: 100%; }
  .consent-buttons .btn { flex: 1 1 auto; text-align: center; }
}
