/* ============================================================
   zeitconcept.de — Design-System / Styleguide
   ────────────────────────────────────────────────────────────
   ALLE GLOBALEN STELLSCHRAUBEN HIER OBEN IN :root :
     Farben     → --orange / --green / --brown / --gray-*
     Spacing    → --gap-lg / --gap-sm / --gap-xs
     Typografie → --fs-h1 / --fs-h2 / --fs-h3 / --fs-body / --fs-lead
     Buttons    → --btn-pad / --btn-fs / --btn-radius
     Hero       → --hero-full / --hero-tall / --hero-standard
     Container  → --w-prose (Fliesstext-Spalte)
   Aenderung an einer Variable wirkt ueberall, wo sie referenziert wird.
   Klassen-Aliase (z. B. .btn-cta-apply == .btn-orange) sind ueber
   Mehrfach-Selektoren gemappt — siehe Kapitel "BUTTONS" unten.
   ──────────────────────────────────────────────────────────── */

/* ── 0. RESET & TOKENS ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  /* Brand */
  --orange:        #f47c42;
  --orange-light:  #f47c42;
  --orange-pale:   #FDF3EC;
  --orange-mid:    #F8E8DB;

  /* Accent: Green (WhatsApp-Grün) */
  --green:         #25D366;
  --green-pale:    #EEFBF2;

  /* Accent: Brown (Kaffeebraun) */
  --brown:         #6B4F2E;
  --brown-pale:    #EDE3D5;

  /* Icon defaults (überschrieben durch .icon-green / .icon-brown) */
  --ic:            var(--orange);
  --ic-bg:         #f47c4220;

  /* Neutrals */
  --white:         #FFFFFF;
  --warm-white:    #FAF8F5;
  --cream:         #F4F1EC;
  --gray-1:        #EEEBE6;
  --gray-2:        #C4BFB8;
  --gray-3:        #8F8A84;
  --gray-4:        #5A5650;
  --dark:          #1E1B18;
  --footer-bg:     #2A2520;

  /* Typography — Familien */
  --font-heading: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Typography — Schriftgroessen (eine Stelle, alles steuern):
       --fs-body      : Standard-Fliesstext (p, li)
       --fs-body-sm   : Kleiner Text (Labels, Hinweise)
       --fs-h1        : Hero-Headline
       --fs-h2        : Sektion-Headline (.section-title)
       --fs-h3        : Sub-Headline / Card-Title
       --fs-lead      : Lead-Paragraph unter Headlines
       --fs-eyebrow   : Section-Label (uppercase)
     Aenderung hier wirkt ueberall, wo die Variable referenziert wird.
  */
  --fs-body:        1.0rem;
  --fs-body-sm:     0.875rem;
  --fs-lead:        1.1rem;
  --fs-eyebrow:     0.78rem;
  --fs-h3:          1.2rem;
  --fs-h2:          clamp(1.65rem, 1.2rem + 1.4vw, 2.4rem);
  --fs-h1:          clamp(2.0rem, 1.4rem + 2.4vw, 3.2rem);

  /* Buttons — Padding/Schrift gemeinsam:
       --btn-pad      : Standard-Padding (.btn)
       --btn-pad-lg   : grosse CTAs (.btn-lg)
       --btn-pad-sm   : kleine Pills (.btn-sm)
       --btn-fs       : Standard-Schrift
       --btn-fs-lg    : grosse Schrift
       --btn-radius   : Pill-Radius (alle Buttons gleich)
  */
  --btn-pad:        0.75rem 1.75rem;
  --btn-pad-lg:     1.0rem 2.25rem;
  --btn-pad-sm:     0.55rem 1.25rem;
  --btn-fs:         0.95rem;
  --btn-fs-lg:      1.1rem;
  --btn-fs-sm:      0.875rem;
  --btn-radius:     32px;

  /* Spacing */
  /* Spacing: 3 Stufen — hier ändern, überall wirkt's */
  --gap-lg:  3rem;     /* Sektionen, Headlines, große Trenner */
  --gap-sm:  1.25rem;  /* Innerhalb Sektionen, Cards, Margins */
  --gap-xs:  0.5rem;   /* Mini: Icon↔Text, kleine Lücken */

  /* Hero-Höhen: 3 Stufen — hier ändern, überall wirkt's */
  --hero-full:     92vh;    /* Homepage */
  --hero-tall:     70vh;    /* Unterseiten MIT Bild — einheitliche Hero-Hoehe (Desktop) */
  --hero-standard: 420px;   /* Braune Text-Heros ohne Bild (Datenschutz, Impressum, AGB...) */
  --hero-standard-mobile: 280px;

  /* Hero-Overlay: links dunkel (Text), rechts hell (Gesichter) */
  --hero-overlay: linear-gradient(100deg, rgba(20,10,5,0.45) 0%, rgba(20,10,5,0.25) 50%, rgba(20,10,5,0.05) 100%);

  /* Editorial reading width (Fliesstext-Spalte) */
  --w-prose: 680px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Shadow */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.13);
  --shadow-card: 0 4px 20px rgba(244,124,66,0.10);
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── 1. UTILITY ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gap-sm);
}

.section {
  padding: var(--gap-lg) 0;
}
/* Normalisierung: jede Sektion hat exakt 6rem oben + 6rem unten.
   Stray Margins vom ersten/letzten Kind werden gekillt, damit kein
   Element zusaetzliche Abstaende zum Section-Rand erzeugt. */
.section > .container > *:first-child { margin-top: 0; }
.section > .container > *:last-child { margin-bottom: 0; }
.section > .container > *:last-child > *:last-child { margin-bottom: 0; }

/* Editorial headline block: alles auf 680px zentriert.
   .section-label (mit deko-Strich), .section-title, .section-sub
   sitzen als schmale Spalte mittig auf dem Bildschirm — egal ob
   darunter Fliesstext oder ein volles 1180px-Grid folgt. */
.section-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  max-width: var(--w-prose);
  margin: 0 auto var(--gap-xs);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  max-width: var(--w-prose);
  margin: 0 auto var(--gap-sm);
  text-align: center;
}

.section-sub {
  font-size: var(--fs-lead);
  color: var(--gray-4);
  max-width: var(--w-prose);
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

/* Fliesstext-Spalte: 680px mittig, Text aber linksbuendig.
   Um Paragraphen/Listen in einer Editorial-Sektion wrappen. */
.prose {
  max-width: var(--w-prose);
  margin: 0 auto;
  text-align: left;
}
.prose > * + * { margin-top: 1rem; }
.prose p { font-size: 1.1rem; line-height: 1.75; color: var(--gray-4); }
.prose h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-top: 1.5rem; color: var(--dark); }

/* ── 2. BUTTONS ─────────────────────────────────────────── */
/* Basis-Button — alle Varianten erben hiervon.
   Aliase fuer historische Klassen (.btn-cta-*) sind unten gemappt,
   damit existierende HTMLs weiter funktionieren ohne Mehrfach-Stylesheet. */
.btn,
.btn-cta-apply, .btn-cta-whatsapp, .btn-cta-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--btn-pad);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: var(--btn-fs);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg {
  padding: var(--btn-pad-lg);
  font-size: var(--btn-fs-lg);
  border-radius: var(--btn-radius);
}
.btn-sm {
  padding: var(--btn-pad-sm);
  font-size: var(--btn-fs-sm);
}

/* ── Gender-Tag in Headlines ─────────────────────────────────
   Verwenden in <h1>..<h6> als Klein-Auszeichnung neben Begriffen
   wie "Mitarbeiter (m/w/d)". Schriftgroesse = Fliesstext, normale
   Schriftstaerke, abgesetzte Farbe — laesst die Headline ruhig wirken. */
.gender-tag {
  font-size: var(--fs-body);
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--gray-3);
  letter-spacing: 0;
  white-space: nowrap;
  vertical-align: baseline;
}

/* ── Button-Variant: ORANGE (Haupt-CTA) ─────────────────────
   Alias: .btn-cta-apply (job.html), .btn-apply (Sub-CTA)
   Aenderung dieses Blocks aendert ALLE orangen CTAs ueberall. */
.btn-orange,
.btn-cta-apply,
.btn-apply {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,124,66,0.35);
}
.btn-orange:hover,
.btn-cta-apply:hover,
.btn-apply:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 22px rgba(244,124,66,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-2);
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── Button-Variant: OUTLINE-SECONDARY (E-Mail / Sekundaer) ─
   Alias: .btn-cta-email (job.html)
   Aenderung dieses Blocks aendert ALLE outline-Sekundaer-CTAs. */
.btn-secondary-outline,
.btn-cta-email {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-2);
}
.btn-secondary-outline:hover,
.btn-cta-email:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-cta-email svg { color: var(--orange); }

/* ── Button-Variant: WHATSAPP (Gruen) ───────────────────────
   Alias: .btn-cta-whatsapp (job.html)
   Aenderung dieses Blocks aendert ALLE WhatsApp-CTAs ueberall. */
.btn-whatsapp,
.btn-cta-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover,
.btn-cta-whatsapp:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  transform: translateY(-1px);
}

/* ── 3. NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-1);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--gap-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}
.nav-logo-wordmark {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.nav-logo-wordmark strong { color: var(--orange); }
.nav-logo-tagline {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-3);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > a,
.nav-links .nav-dropdown > a {
  padding: 0.5rem 0.875rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-4);
  border-radius: var(--r-sm);
  transition: all 0.18s;
}
.nav-links > a:hover, .nav-links > a.active,
.nav-links .nav-dropdown > a:hover,
.nav-links .nav-dropdown > a.active {
  color: var(--orange);
  background: var(--orange-pale);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 0.3rem;
  opacity: 0.5;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-1);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: var(--gap-xs) 0;
  z-index: 1001;
  margin-top: 0.25rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-4);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--orange);
  background: var(--orange-pale);
}
.nav-dropdown-menu a.active {
  color: var(--orange);
  font-weight: 600;
}

/* Sub-Navigation (sticky tabs on unterseiten) */
.sub-nav {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-1);
  position: sticky;
  top: 72px;
  z-index: 100;
}
.sub-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.sub-nav-inner a {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-3);
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: all 0.2s;
}
.sub-nav-inner a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.sub-nav-inner a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.sub-nav-inner a.sub-nav-cta {
  color: var(--orange);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-1);
  padding: var(--gap-sm) var(--gap-sm) var(--gap-sm);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-1);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-mobile-cta { color: var(--orange); font-weight: 600; }
.nav-mobile-heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.5rem 0 0.5rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--gray-1);
}
.nav-mobile.open { display: block; }

/* ── 4. HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: var(--hero-full);
  display: flex;
  /* Block sitzt am unteren Rand — Team-Foto oben grosszuegig sichtbar */
  align-items: flex-end;
  padding-top: 72px;
  padding-bottom: var(--gap-lg);
}
.hero .hero-badge { margin-bottom: var(--gap-xs); }
.hero h1 { margin-bottom: var(--gap-xs); }
.hero #hero-search-form { margin-top: 0; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/zeitconcept-zeitarbeit-bewerber.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Homepage-Hero: gleichmaessig dezenter Overlay — Bild durchgaengig sichtbar */
  background: rgba(20,10,5,0.15);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: var(--gap-lg) var(--gap-sm);
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,124,66,0.92);
  border: 1px solid var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-xl);
  margin-bottom: var(--gap-sm);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: var(--gap-sm);
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero h1 .highlight {
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  opacity: 0.7;
}

.hero-sub {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.75;
  margin-bottom: var(--gap-sm);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--gap-xs);
  flex-wrap: wrap;
  margin-bottom: var(--gap-lg);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
}
.hero-trust-icon {
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── 5. STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: var(--orange);
  padding: calc(var(--gap-lg) * 0.75) 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
  width: 100%;
}
.stat-item {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: var(--gap-sm);
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ── 6. LEISTUNGEN ──────────────────────────────────────── */
.services {
  background: var(--warm-white);
}
.services .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.services-intro { max-width: 480px; }
.services-intro .section-sub { margin-bottom: var(--gap-sm); }

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--gap-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-1);
  transition: all 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--gap-sm);
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-4);
  line-height: 1.6;
}

/* ── 7. WARUM ZEITCONCEPT ───────────────────────────────── */
.why {
  background: var(--white);
}
.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}
.why-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.why-image img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.why-badge {
  position: absolute;
  bottom: var(--gap-sm);
  left: var(--gap-sm);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--gap-sm) var(--gap-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
}
.why-badge-icon { font-size: 1.75rem; }
.why-badge-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font-heading);
}
.why-badge-text span { font-size: 0.8rem; color: var(--gray-3); }

.why-content { }
.why-features {
  margin-top: var(--gap-sm);
  max-width: var(--w-prose);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.why-feature {
  display: flex;
  gap: var(--gap-sm);
  align-items: flex-start;
}
.why-feature-icon {
  width: 96px; height: 96px; min-width: 96px;
  background: var(--orange-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.why-feature-text p {
  font-size: 1.1rem;
  color: var(--gray-4);
  line-height: 1.6;
}

/* ── 8. JOB TEASER ──────────────────────────────────────── */
.jobs-teaser {
  background: var(--cream);
  padding-top: var(--gap-lg);
}
.jobs-teaser-header {
  margin-bottom: var(--gap-lg);
  text-align: center;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
  margin-bottom: var(--gap-lg);
}
.job-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--gap-sm);
  border: 1px solid var(--gray-1);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.job-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.job-card-category {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-xl);
}
.job-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.job-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.845rem;
  color: var(--gray-4);
}
.job-meta-item svg { flex-shrink: 0; color: var(--orange); }
.job-card-footer {
  margin-top: auto;
  padding-top: var(--gap-xs);
  border-top: 1px solid var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.job-card-salary {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
}
.job-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.job-card-link:hover { text-decoration: underline; }

/* Zuletzt angesehen + Suchergebnisse */
.jobs-section-label { font-size: 1.1rem; color: var(--orange); margin-bottom: var(--gap-xs); }
.recently-viewed-list { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; }
.recently-viewed-card { flex: 0 0 auto; min-width: 200px; max-width: 280px; padding: 0.75rem 1rem; background: var(--white); border: 1.5px solid var(--gray-1); border-radius: var(--r-md); text-decoration: none; color: inherit; border-bottom: 2.5px solid var(--orange); transition: box-shadow 0.2s; }
.recently-viewed-card:hover { box-shadow: var(--shadow-card); }
.recently-viewed-title { font-size: 0.9rem; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recently-viewed-place { font-size: 0.8rem; color: var(--gray-3); margin-top: 0.2rem; }

/* Job-Card Akzent + TopInfo (shared: Standortseiten + Jobbörse) */
.job-card--accent {
  border: none !important;
  border-bottom: 2.5px solid var(--orange) !important;
  background: #F5F5F5 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}
.job-card--zeitarbeit,
.job-card--temptoperm,
.job-card--vermittlung {
  background: #F5F5F5 !important;
  border-bottom-color: var(--orange) !important;
}
.job-card-topinfo {
  font-size: 0.82rem; font-weight: 600; color: var(--gray-4);
  letter-spacing: 0.02em;
}
.job-card-topinfo--salary {
  color: var(--orange); font-weight: 700; font-size: 0.9rem;
}
.job-card-hours {
  font-size: 0.8rem; color: var(--gray-3); font-weight: 500;
}
.jobs-teaser-cta { text-align: center; }
.jobs-count {
  font-size: 1.1rem;
  color: var(--gray-3);
  margin-top: 0.75rem;
}

/* ── 9. TEAM / MENSCHEN ─────────────────────────────────── */
.team-section {
  background: var(--white);
}
.team-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.team-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap-xs);
}
.team-img {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.team-img img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-img:first-child {
  grid-column: 1 / -1;
}
.team-img:first-child img { height: 260px; }
.team-img:hover img { transform: scale(1.03); }

.team-content .section-sub { margin-bottom: var(--gap-sm); }
.team-quote {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--gap-sm) var(--gap-sm);
  margin: var(--gap-sm) 0;
}
.team-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-4);
  line-height: 1.7;
}
.team-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
  color: var(--orange);
}

/* ── 9b. ANFRAGE-FORMULARE ──────────────────────────────── */
.form-section h2 { color: var(--orange); font-size: 1.3rem; margin-top: 2.5rem; border-bottom: 2px solid var(--orange); padding-bottom: 0.5rem; margin-bottom: 1.2rem; }
.form-section .required { color: var(--orange); }
a.orange-link, .orange-link { color: var(--orange); text-decoration: none; font-weight: 700; }
a.orange-link:hover, .orange-link:hover { text-decoration: underline; }
.form-input, .form-textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e2e0dd; border-radius: 8px; font-family: Inter, sans-serif; font-size: 0.95rem; transition: border-color 0.2s; }
.form-textarea { resize: vertical; }
.form-input:focus, .form-textarea:focus { border-color: var(--orange); outline: none; }
.form-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 1rem; }
.form-submit { background: var(--orange); color: white; padding: 1rem 2.5rem; border-radius: 12px; font-size: 1.1rem; font-weight: 700; border: none; cursor: pointer; width: 100%; margin-top: 1rem; transition: background 0.2s; }
.form-submit:hover { filter: brightness(1.1); }
.form-radio-label { border-color: #e2e0dd; transition: border-color 0.2s; }
.form-radio-label.checked { border-color: var(--orange); }
.initiatif-section { background: var(--orange); }

/* ── 10. CTA-BANNER ─────────────────────────────────────── */
.cta-banner {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: 8%; bottom: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--gap-sm);
}
.cta-banner p {
  font-size: 1.1rem;
  color: #fff;
  max-width: 540px;
  margin: 0 auto var(--gap-lg);
  line-height: 1.7;
}
.cta-banner .btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--r-xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.20);
}

/* ── 11. STANDORTE ──────────────────────────────────────── */
.standorte {
  background: var(--warm-white);
}
.standorte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
}
.standort-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--gap-sm);
  border: 1px solid var(--gray-1);
  text-align: center;
  transition: all 0.25s;
}
.standort-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.standort-emoji { font-size: 2rem; margin-bottom: var(--gap-xs); }
.standort-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.standort-card p {
  font-size: 0.85rem;
  color: var(--gray-4);
}

/* ── 12. FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 0 0 var(--gap-sm);
  position: relative;
  overflow: hidden;
}
/* keine dekorativen Kreise im Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--gap-sm);
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon span {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}
.footer-wordmark {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-wordmark strong { color: var(--orange); }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: var(--gap-sm);
}
.footer-social {
  display: flex;
  gap: var(--gap-xs);
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--gap-sm);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: #fff;
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  font-size: 0.82rem;
  color: #fff;
}
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: var(--orange); }

/* ── 13. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services .container { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .standorte-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gap-lg: 2rem; }
  .nav-links, .nav-actions .btn:not(.btn-orange) { display: none; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.25); padding-left: 0; padding-top: var(--gap-sm); }
  .services-cards { grid-template-columns: 1fr; }
  .why .container { grid-template-columns: 1fr; }
  .why-image img { height: 320px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .team-section .container { grid-template-columns: 1fr; }
  .standorte-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--gap-sm); }
  .jobs-teaser-header { text-align: center; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .standorte-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 14. SCROLL ANIMATION ───────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── 15. TYPEWRITER ──────────────────────────────────────── */
.typewriter-wrap {
  display: inline;
  white-space: nowrap;
}
.hero-h1 {
  min-height: 0;
}
.typewriter-wrap em {
  font-style: normal;
  color: var(--orange);
  border-bottom: 3px solid var(--orange);
}
.type-cursor {
  display: inline-block;
  color: var(--orange);
  font-weight: 300;
  animation: blink 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── 16. HERO SUCHFELD ───────────────────────────────────── */
.hero-search {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: var(--r-xl);
  margin-bottom: 0;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 10;
}
.hero-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,124,66,0.25);
  background: rgba(255,255,255,0.18);
}
.hero-search-input {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  padding: 1.15rem 1.25rem;
  color: #fff;
}
.hero-search-input svg { flex-shrink: 0; }
.hero-search-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-body);
  min-width: 0;
}
.hero-search-input input::placeholder { color: #fff; }
.hero-search-btn {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-search { border-radius: var(--r-lg); }
}

/* ── 17. PULSIERENDER CTA-BUTTON ─────────────────────────── */
.btn-orange {
  animation: pulse-orange 3s ease-in-out infinite;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 4px 16px rgba(244,124,66,0.35); }
  50% { box-shadow: 0 4px 28px rgba(244,124,66,0.65), 0 0 0 6px rgba(244,124,66,0.12); }
}
.btn-orange:hover {
  animation: none;
}

/* ── 18. WHATSAPP BUTTON ─────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}
.whatsapp-label {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .whatsapp-btn { padding: 0.85rem; border-radius: 50%; }
  .whatsapp-label { display: none; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
}

/* ── 19. SCROLL PROGRESS BAR ─────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--orange);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(244,124,66,0.6);
}

/* ── 20. DARK MODE TOGGLE ────────────────────────────────── */
.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
  line-height: 1;
}
.dark-mode-toggle:hover { background: var(--orange-pale); }

/* ── 21. DARK MODE STYLES ────────────────────────────────── */
body.dark-mode {
  background: #1a1714;
  color: #e8e4dc;
}
body.dark-mode .nav { background: rgba(26,23,20,0.96); border-color: #333; }
body.dark-mode .nav-links > a,
body.dark-mode .nav-links .nav-dropdown > a { color: #b0ab9f; }
body.dark-mode .nav-links > a:hover,
body.dark-mode .nav-links .nav-dropdown > a:hover { background: rgba(244,124,66,0.15); color: var(--orange); }
body.dark-mode .nav-dropdown-menu { background: #2a2520; border-color: #444; }
body.dark-mode .nav-dropdown-menu a { color: #b0ab9f; }
body.dark-mode .nav-dropdown-menu a:hover { background: rgba(244,124,66,0.15); color: var(--orange); }
body.dark-mode .sub-nav { background: #1a1714; border-color: #333; }
body.dark-mode .sub-nav-inner a { color: #8a857e; }
body.dark-mode .sub-nav-inner a:hover,
body.dark-mode .sub-nav-inner a.active { color: var(--orange); border-bottom-color: var(--orange); }
body.dark-mode .section, body.dark-mode .services, body.dark-mode .why,
body.dark-mode .team-section { background: #1a1714; }
body.dark-mode .jobs-teaser, body.dark-mode .standorte, body.dark-mode .salary-calc { background: #221f1c; }
body.dark-mode .service-card, body.dark-mode .job-card, body.dark-mode .standort-card,
body.dark-mode .salary-calc-widget { background: #2a2520; border-color: #3a3530; }
body.dark-mode .section-title, body.dark-mode h2, body.dark-mode h3 { color: #f0ece4; }
body.dark-mode .section-sub, body.dark-mode p { color: #9a9590; }
body.dark-mode .cta-banner { background: #b5642a; }
body.dark-mode .btn-outline-dark { color: #e0dbd3; border-color: #555; }
body.dark-mode .btn-outline-dark:hover { color: var(--orange); border-color: var(--orange); }
body.dark-mode .why-badge { background: #2a2520; }
body.dark-mode .calc-results { background: #332f2a; }
body.dark-mode .testimonial-card { background: #2a2520; border-color: #3a3530; }
body.dark-mode .testimonial-card blockquote { color: #b0ab9f; }
body.dark-mode .nav-mobile { background: #1a1714; border-color: #333; }
body.dark-mode .nav-mobile a { color: #e0dbd3; border-color: #333; }

/* ── 22. JOB FILTER PILLS ────────────────────────────────── */
.job-filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: var(--gap-sm);
}
.filter-pill {
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-xl);
  border: 2px solid var(--gray-2);
  background: var(--white);
  color: var(--gray-4);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.filter-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(244,124,66,0.35);
}

/* ── 23. GEHALTSRECHNER ──────────────────────────────────── */
.salary-calc { background: #DEE7ED; }
.salary-calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  width: 100%;
}
.salary-calc-widget {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--gap-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-1);
}
.calc-row {
  margin-bottom: var(--gap-sm);
}
.calc-row label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-4);
  margin-bottom: 0.5rem;
}
.calc-input-wrap {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}
input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-1);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(244,124,66,0.4);
  border: 3px solid white;
}
.calc-value {
  font-size: 1.1rem;
  color: var(--gray-4);
  white-space: nowrap;
  min-width: 130px;
  text-align: right;
}
.calc-results {
  background: var(--orange-pale);
  border-radius: var(--r-lg);
  padding: var(--gap-sm);
  margin: var(--gap-sm) 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap-xs);
}
.calc-result-item { text-align: center; }
.calc-result-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-3);
  margin-bottom: 0.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-result-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font-heading);
}
.calc-result-item.highlight .calc-result-value {
  color: var(--orange);
  font-size: 1.5rem;
}
.calc-hint { font-size: 0.78rem; color: var(--gray-3); margin-top: var(--gap-xs); }
@media (max-width: 768px) {
  .salary-calc-inner { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ── 24. TESTIMONIALS ────────────────────────────────────── */
.testimonials { background: var(--warm-white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
  align-items: stretch;
}
.testimonial-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--gap-sm);
  border: 1px solid var(--gray-1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: "\201E";
  position: absolute;
  top: -2.2rem;
  right: 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.12;
  pointer-events: none;
}
.testimonial-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: var(--gap-xs); }
.testimonial-score { color: var(--orange); font-weight: 700; font-size: 1rem; margin-left: 0.3rem; vertical-align: middle; }
.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-4);
  line-height: 1.6;
  margin: 0 0 var(--gap-sm);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  padding-top: var(--gap-xs);
  border-top: 1px solid var(--gray-1);
}
.testimonial-author span { font-size: 0.85rem; color: var(--gray-3); line-height: 1.4; }
@media (max-width: 960px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DROPDOWN NAVIGATION (claudia 4 – Erweiterung)
   ============================================================ */

/* Nav item wrapper for dropdown */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-item > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gray-3);
  transition: transform 0.2s;
  margin-top: 1px;
}
.nav-item:hover > a::after,
.nav-item.open > a::after { transform: rotate(180deg); border-top-color: var(--orange); }

/* (alte Dropdown-Panel-Styles entfernt — Konflikt mit .nav-dropdown in Nav-Bereich) */

/* ============================================================
   PAGE HERO (Inner pages — smaller than home hero)
   ============================================================ */
.page-hero {
  height: var(--hero-standard);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #2D2520 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(244,124,66,0.15) 0%, transparent 60%);
}
.page-hero--img { background-size: cover; background-position: center; }
.page-hero--img::before { background: var(--hero-overlay); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 124, 66, 0.92);
  border: 1px solid var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-xl);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #fff;
  max-width: 600px;
  margin-bottom: var(--gap-lg);
}
.page-hero--tall { height: auto; min-height: var(--hero-tall); }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 768px) { .page-hero { height: var(--hero-standard-mobile); padding-top: 60px; } .page-hero--tall { height: auto; min-height: 50vh; } }

/* Breadcrumb-Bar — eigene Zeile UNTER dem Hero, durchgängig auf allen Seiten.
   Auf Mobile passt der Breadcrumb sonst nicht ins schmale Hero-Layout (er
   bleibt zwischen Logo und Headline gequetscht und wird abgeschnitten).
   (26.04.2026) */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #ECEAE6;
  font-size: 0.85rem;
  color: var(--gray-4);
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.breadcrumb-bar a {
  color: var(--gray-4);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb-bar a:hover { color: var(--orange); }
.breadcrumb-bar .breadcrumb-sep { opacity: 0.4; }
.breadcrumb-bar > .container > span:last-child {
  color: var(--dark);
  font-weight: 600;
}

/* ============================================================
   STANDORT-JOBSUCHE (shared: Standortseiten + Jobbörse)
   ============================================================ */
.standort-jobsuche {
  display: flex; gap: 0.5rem; align-items: stretch; flex-wrap: wrap;
  background: var(--orange); border: none;
  border-radius: 16px; padding: 1.2rem;
}
.standort-jobsuche-input {
  width: 100%; box-sizing: border-box;
  flex: 2; min-width: 160px; padding: 0.7rem 1rem;
  border: none; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--white);
}
.standort-jobsuche-input.standort-jobsuche-ort { flex: 1; min-width: 120px; }
.standort-jobsuche-select {
  flex: 0 0 auto; min-width: 120px; padding: 0.7rem 2rem 0.7rem 0.8rem;
  border: none; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem;
  background: var(--white); cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
}
.standort-jobsuche-input:focus, .standort-jobsuche-select:focus { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,0.5); }
.standort-jobsuche .ac-dropdown { border-radius: 0 0 8px 8px; margin-top: -2px; }
.standort-jobsuche .ac-item { padding-left: 1rem; }
@media(max-width:768px) { .standort-jobsuche { flex-direction: column; }
  .standort-jobsuche-input, .standort-jobsuche-select { min-width: 100%; } }

/* ============================================================
   JOBBÖRSE
   ============================================================ */

/* Job list */
.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.jobs-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.jobs-count-label {
  font-size: 1.1rem;
  color: var(--gray-3);
  padding-left: 1.2rem;
}
.jobs-count-label strong { color: var(--dark); }

.job-list-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all 0.2s;
  color: var(--dark);
  align-items: flex-start;
}
.job-list-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.job-list-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.job-list-card-body { flex: 1; min-width: 0; }
.job-list-card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange);
  margin-bottom: 0.3rem;
}
.job-list-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job-list-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray-3);
}
.job-list-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.job-list-card-right {
  text-align: right;
  flex-shrink: 0;
}
.job-list-salary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.job-list-distance {
  font-size: 0.78rem;
  color: var(--gray-3);
  margin-bottom: 0.5rem;
}
.job-list-apply-btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.jobs-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-3);
}
.jobs-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-1);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   STANDORT KACHELN (Standorte Overview)
   ============================================================ */
.standorte-kacheln {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.standort-kachel {
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.standort-kachel:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.standort-kachel-emoji { font-size: 2.2rem; }
.standort-kachel h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.standort-kachel-address {
  font-size: 0.85rem;
  color: var(--gray-4);
  line-height: 1.5;
}
.standort-kachel-phone {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 600;
}
.standort-kachel-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  align-self: flex-start;
}
.standort-kachel-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
}

/* Work & Travel special card */
.wt-hero-card {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .wt-hero-card { grid-template-columns: 1fr; padding: 2rem; }
}

/* ============================================================
   MITARBEITER BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
}
.benefits-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
}
@media (max-width: 768px) {
  .benefits-grid, .benefits-grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.benefit-card {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-1);
  border-bottom: 3px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.2s;
}
.benefit-card:hover { border-color: var(--orange); box-shadow: var(--shadow-card); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; --ic: var(--orange); --ic-bg: #f47c4220; }
.benefit-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(20,10,5,0.10);
}

/* Branchen-Karten mit Video-Hintergrund (index, unternehmen) */
.branche-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.branche-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

/* Pill oben rechts: "Personalanfrage →" — nur auf .branchen-grid Karten (index) */
.branchen-grid .branche-card::after {
  content: "Personalanfrage →";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(244, 124, 66, 0.95);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(20, 10, 5, 0.30);
  transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.2s ease;
}
.branchen-grid .branche-card:hover::after {
  background: var(--orange);
  transform: translateX(3px);
  box-shadow: 0 6px 18px rgba(20, 10, 5, 0.40);
}

@media (max-width: 768px) {
  .branchen-grid { grid-template-columns: 1fr !important; }
  .branchen-grid .branche-card::after { font-size: 0.72rem; padding: 0.35rem 0.75rem; top: 0.75rem; right: 0.75rem; }
}

/* ── Icon-Farbvarianten (Orange / Grün / Braun im Wechsel) ── */
.icon-green { --ic: var(--green); --ic-bg: #25D36620; }
.icon-brown { --ic: var(--brown); --ic-bg: #6B4F2E30; }

/* Container-Icons mit Hintergrund-Fläche */
.icon-green.why-feature-icon,
.icon-green.kontakt-item-icon,
.icon-green.job-list-card-icon,
.icon-green.bewerber-kachel-icon { background: var(--green-pale); }
.icon-brown.why-feature-icon,
.icon-brown.kontakt-item-icon,
.icon-brown.job-list-card-icon,
.icon-brown.bewerber-kachel-icon { background: var(--brown-pale); }

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.benefit-card p { font-size: 1.1rem; color: var(--gray-4); line-height: 1.6; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: #EDEBE7;
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: background 0.25s;
}
.faq-item.open { background: var(--orange-pale); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 2rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark);
  gap: 1.5rem;
  text-align: left;
  transition: color 0.2s;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
}
.faq-question:hover { color: var(--orange); }
.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 1.1rem;
  color: var(--gray-4);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 2rem 1.75rem;
}

/* ============================================================
   UNTERNEHMEN / LEISTUNGEN
   ============================================================ */
.leistung-section {
  scroll-margin-top: 90px;
}
.leistung-card {
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}
.leistung-card.reverse { direction: rtl; }
.leistung-card.reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .leistung-card { grid-template-columns: 1fr; }
  .leistung-card.reverse { direction: ltr; }
}
.leistung-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.leistung-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.leistung-content p { color: var(--gray-4); margin-bottom: 1rem; line-height: 1.7; }
.leistung-list { list-style: none; margin-bottom: 1.5rem; }
.leistung-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1.1rem;
  color: var(--gray-4);
  margin-bottom: 0.6rem;
}
.leistung-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   RATGEBER / BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--gray-4);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-3);
}
.blog-card-date { margin-left: auto; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .kontakt-layout { grid-template-columns: 1fr; }
}
.kontakt-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.kontakt-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.kontakt-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kontakt-item-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-3);
  margin-bottom: 0.25rem;
}
.kontakt-item-text a,
.kontakt-item-text p {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 500;
}
.kontakt-item-text a:hover { color: var(--orange); }

.contact-form {
  background: var(--warm-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-3);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-1);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   KARRIERE
   ============================================================ */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.2s;
}
.team-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.team-card-body { padding: 1.25rem; }
.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.team-card-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 0.25rem; }
.team-card-loc { font-size: 0.8rem; color: var(--gray-3); }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.4rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-1);
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.7rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.timeline-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.timeline-item p { font-size: 0.88rem; color: var(--gray-4); line-height: 1.6; }

/* Mitglieder / Zertifikate */
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.member-badge {
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   MOBILE NAV DROPDOWNS
   ============================================================ */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  padding: var(--gap-xs) 0;
  text-align: left;
}
.mobile-dropdown-toggle::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--orange);
  transition: transform 0.2s;
}
.mobile-dropdown-toggle.open::after { transform: rotate(45deg); }
.mobile-sub-links {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid var(--orange-pale);
  margin-bottom: 0.5rem;
}
.mobile-sub-links.open { display: flex; }
.mobile-sub-links a {
  padding: 0.4rem 0;
  font-size: 1.1rem;
  color: var(--gray-4);
  border-bottom: none !important;
}
.mobile-sub-links a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 1020px) {
  .nav-links { display: none; }
}

/* ============================================================
   BEWERBER-STANDORTE (für fuer-bewerber.html + home)
   ============================================================ */
.bewerber-standorte {
  background: var(--warm-white);
}
/* .bewerber-standorte-header wurde nach Sektion 8 refactor entfernt */
.bewerber-kacheln-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
}
.bewerber-kachel {
  background: var(--white);
  border: 2px solid var(--gray-1);
  border-radius: var(--r-xl);
  padding: var(--gap-lg) var(--gap-sm) var(--gap-sm);
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xs);
}
.bewerber-kachel:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.bewerber-kachel-icon {
  width: 56px; height: 56px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.bewerber-kachel-city {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.bewerber-kachel-region {
  font-size: 0.82rem;
  color: var(--gray-3);
  line-height: 1.4;
}
.bewerber-kachel-link {
  margin-top: auto;
  padding-top: var(--gap-xs);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
}
.bewerber-kachel.work-travel {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange-pale), #fff);
}
@media (max-width: 900px) {
  .bewerber-kacheln-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bewerber-kacheln-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LOGOS DIASHOW (Kunden)
   ============================================================ */
.logos-section {
  background: var(--white);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  color: var(--orange) !important;
  margin-bottom: var(--gap-sm);
}
.logos-track-wrap {
  overflow: hidden;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gap-sm);
}
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.logos-track {
  display: flex;
  gap: var(--gap-lg);
  animation: scrollLogos 45s linear infinite;
  width: max-content;
}
/* kein Pause bei Hover — Laufband läuft immer durch */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--gray-1);
  border-radius: var(--r-md);
  border-bottom: 3px solid var(--orange);
  min-width: 140px;
  height: 60px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-4);
  white-space: nowrap;
  transition: all 0.2s;
}
/* kein Farbwechsel bei Hover */

/* ============================================================
   NEWS TEASER
   ============================================================ */
.news-teaser {
  background: var(--warm-white);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
}
.news-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-1);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.news-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gray-1);
}
.news-card-media-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) saturate(0.9);
  transform: scale(1.15);
}
.news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  pointer-events: none;
}
.news-card-media-fg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
}
.news-card-body {
  padding: var(--gap-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.news-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}
.news-card-date {
  font-size: 0.8rem;
  color: var(--gray-3);
  margin-top: auto;
  padding-top: var(--gap-xs);
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
}

.news-card { cursor: pointer; }

/* ── News-Detail Overlay ───────────────────────────────── */
.news-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.news-overlay.active { opacity: 1; visibility: visible; }
.news-overlay-box {
  background: var(--white); border-radius: 16px;
  width: 92%; max-width: 820px; max-height: 90vh;
  overflow-y: auto; position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}
.news-overlay.active .news-overlay-box { transform: translateY(0); }
.news-overlay-nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid #eee;
  border-radius: 16px 16px 0 0;
}
.news-overlay-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid #ddd; background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-size: 1.1rem; color: var(--dark);
}
.news-overlay-nav button:hover { border-color: var(--orange); color: var(--orange); }
.news-overlay-nav button:disabled { opacity: 0.3; cursor: default; border-color: #eee; }
.news-overlay-nav button:disabled:hover { color: var(--dark); border-color: #eee; }
.news-overlay-close {
  width: 40px !important; height: 40px !important;
  border: none !important; background: none !important;
  font-size: 1.6rem !important; color: var(--gray-4) !important;
}
.news-overlay-close:hover { color: var(--orange) !important; }
.news-overlay-counter { font-size: 0.85rem; color: var(--gray-4); }
.news-overlay-banner {
  position: relative;
  margin: 1rem 2rem 0;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-1);
}
.news-overlay-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(14px) saturate(0.9);
  transform: scale(1.15);
}
.news-overlay-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}
.news-overlay-banner-fg {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
}
.news-overlay-header {
  margin: 0 2rem;
  padding: 1.2rem 2rem;
  background: #F5F5F5;
  border-bottom: 2.5px solid var(--orange);
}
.news-overlay-cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.news-overlay-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--dark);
  line-height: 1.3;
}
.news-overlay-date {
  font-size: 0.9rem;
  color: var(--gray-4);
}
.news-overlay-content {
  padding: 1.8rem 2rem 2rem;
  margin: 0 2rem;
  color: var(--dark);
  line-height: 1.7;
  font-size: 1rem;
}
.news-overlay-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin: 1.8rem 0 0.6rem;
}
.news-overlay-content p { margin: 0 0 1rem; }
.news-overlay-content ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
  list-style: none;
}
.news-overlay-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.4rem;
}
.news-overlay-content ul li::before {
  content: "✔";
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: 700;
}
@media (max-width: 640px) {
  .news-overlay-box { width: 100%; max-width: 100%; max-height: 100vh; border-radius: 0; }
  .news-overlay-nav { border-radius: 0; }
  .news-overlay-banner { margin: 1rem 1rem 0; height: 200px; }
  .news-overlay-header { margin: 0 1rem; padding: 1rem 1.2rem; }
  .news-overlay-content { padding: 1.2rem; margin: 0 1rem; }
}

/* ============================================================
   ADRESSEN-ÜBERSICHT (Home)
   ============================================================ */
.adressen-section {
  background: var(--white);
}
.adressen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
}
.adress-card {
  background: var(--warm-white);
  border: 1px solid var(--gray-1);
  border-radius: var(--r-lg);
  padding: var(--gap-sm);
  transition: all 0.22s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.adress-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.adress-card-city {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.adress-card p {
  font-size: 0.82rem;
  color: var(--gray-4);
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.adress-card a.tel-link {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 900px) {
  .adressen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .adressen-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FOOTER STANDORT-KACHELN
   ============================================================ */
.footer-standorte-wrap {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: var(--gap-lg) 0;
  margin-bottom: var(--gap-lg);
}
.footer-standorte-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--gap-sm);
  text-align: center;
}
.footer-standorte-kacheln {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xs);
}
.footer-standort-kachel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 0.6rem 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-standort-kachel:hover {
  background: rgba(244,124,66,0.2);
  border-color: var(--orange);
}
.footer-standort-kachel strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.footer-standort-kachel span {
  font-size: 0.75rem;
  color: #fff;
}

/* ============================================================
   STANDORT-SEITE (lokale Detailseite)
   ============================================================ */
/* Standort-Hero-v2 (kein Overlay — Bilder in echten Farben) */
.standort-hero-v2 { position: relative; overflow: hidden; }
.standort-hero-v2 .container { position: relative; z-index: 1; }

.standort-hero {
  background: var(--dark);
  color: var(--white);
  height: var(--hero-standard);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.standort-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,124,66,0.15) 0%, transparent 60%);
}
.standort-hero .container {
  position: relative; z-index: 1;
}
.standort-hero-breadcrumb {
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: var(--gap-sm);
}
.standort-hero-breadcrumb a { color: var(--orange); }
.standort-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--gap-sm);
}
.standort-hero h1 em { font-style: normal; color: var(--orange); }
.standort-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-lg);
}
.standort-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: #fff;
}
.standort-contact-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  padding: var(--gap-lg);
  backdrop-filter: blur(8px);
}
.standort-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--gap-lg);
  align-items: start;
}
.standort-contact-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--gap-sm);
}
.standort-contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-xs);
  margin-bottom: var(--gap-sm);
  font-size: 1.1rem;
  color: #fff;
}
.standort-contact-row a { color: var(--orange); }
.standort-contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.standort-contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; }

.standort-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
}
.team-member-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-1);
  text-align: center;
  padding-bottom: var(--gap-sm);
  transition: all 0.22s;
}
.team-member-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-member-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.team-member-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin: var(--gap-xs) var(--gap-sm) 0.2rem;
}
.team-member-card p {
  font-size: 0.82rem;
  color: var(--gray-4);
}

.standort-jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-sm);
  margin-top: var(--gap-sm);
}

.standort-maps-wrap {
  width: 100%;
  height: 360px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-1);
  margin-top: var(--gap-sm);
}
.standort-maps-wrap iframe {
  width: 100%; height: 100%; border: 0;
}

@media (max-width: 768px) {
  .standort-hero-grid { grid-template-columns: 1fr; }
  .standort-team-grid { grid-template-columns: 1fr 1fr; }
  .standort-jobs-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BEWERBER-HERO (Bild-Hero wie Homepage)
   ============================================================ */
.bewerber-hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-tall);
  display: flex;
  align-items: center;
  padding-top: 72px;
  color: var(--white);
  overflow: hidden;
}
.bewerber-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/zeitconcept-zeitarbeit-personalvermittlung-bewerber.jpg');
  background-size: cover;
  background-position: center 30%;
}
.bewerber-hero-overlay {
  position: absolute;
  inset: 0;
  /* Dunklerer Overlay links/Mitte fuer Lesbarkeit der weissen Headline + Subline.
     Mobile-Override (display:none) bleibt unveraendert — wirkt also nur auf Desktop. */
  background: linear-gradient(100deg, rgba(20,10,5,0.60) 0%, rgba(20,10,5,0.45) 50%, rgba(20,10,5,0.10) 100%);
}
.bewerber-hero .container {
  position: relative;
  z-index: 2;
  padding: var(--gap-lg) var(--gap-sm);
  text-align: left;
}
.bewerber-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--gap-sm);
  color: #fff;
  text-align: left;
}
.bewerber-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
/* Mobile-Bilder: auf Desktop versteckt, werden im Mobile-Breakpoint eingeblendet */
.bewerber-hero-img-mobile,
.standort-hero-v2-img-mobile,
.page-hero-img-mobile,
.hero-img-mobile {
  display: none;
}

/* ============================================================
   INITIATIVBEWERBUNG / PERSONALANFRAGE
   ============================================================ */
.initiatif-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.initiatif-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: rgba(244,124,66,0.08);
  border-radius: 50%;
}
.initiatif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: stretch;
  position: relative; z-index: 1;
}
.initiatif-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--gap-lg);
  transition: all 0.25s;
}
.initiatif-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
}
.initiatif-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--gap-sm);
}
.initiatif-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--gap-xs);
}
.initiatif-card p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: var(--gap-sm);
}
@media (max-width: 768px) {
  .initiatif-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   KUNUNU-BEWERTUNGS-BADGE
   ============================================================ */
.kununu-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--r-xl);
  padding: var(--gap-xs) var(--gap-sm);
  text-decoration: none;
  transition: all 0.2s;
}
.kununu-badge:hover { box-shadow: var(--shadow-card); transform: translateY(-1px); }
.kununu-badge-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.kununu-badge-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
}
.kununu-badge-text span {
  font-size: 0.72rem;
  color: var(--gray-3);
}
.kununu-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 1px; }

/* ============================================================
   HERO JOBSUCHE — Zwei Felder (Beruf + Ort)
   ============================================================ */
.hero-search-two {
  flex-direction: column;
  gap: 0.75rem;
}
.hero-search-fields {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.hero-search-two .hero-search-input {
  flex: 1;
  min-width: 0;
}
.hero-search-two .hero-search-ort {
  flex: 0.7;
}
/* Button jetzt AUSSERHALB des Containers — eigene runde Ecken, kein Clipping-Problem */
.hero-search-two + .hero-search-btn {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 1.25rem;
  border-radius: 32px !important;
  -webkit-border-radius: 32px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}
/* Mobile: Felder untereinander */
@media (max-width: 600px) {
  .hero-search-fields {
    flex-direction: column;
  }
  .hero-search-two .hero-search-ort {
    flex: 1;
  }
}

/* Quick-Links unter der Suche */
.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.hero-quick-label {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
}
.hero-quick-pill {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-quick-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ============================================================
   AUTOCOMPLETE DROPDOWN — Beruf + Ort
   ============================================================ */
.ac-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--gray-1, #e2e0dd);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-lg);
  max-height: 260px;
  overflow-y: auto;
  z-index: 9999;
}
.ac-dropdown.active { display: block; }
.ac-item {
  padding: 0.65rem 1rem 0.65rem 2.75rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--dark);
  transition: background 0.12s;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover,
.ac-item.ac-active {
  background: var(--orange-pale, #FFF5EE);
  color: var(--orange);
}
.ac-item small {
  color: var(--gray-3, #999);
  font-size: 0.8rem;
  margin-left: 0.35rem;
}
@media (max-width: 600px) {
  .ac-dropdown { max-height: 200px; }
  .ac-item { padding: 0.75rem 1rem 0.75rem 2.75rem; font-size: 0.95rem; }
}
/* ============================================================
   FOOTER STANDORTE — Grid mit Regionen + Telefon
   ============================================================ */
.footer-standorte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap-sm);
}
.footer-standort-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--gap-sm) var(--gap-sm);
  text-decoration: none;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-standort-card:hover {
  background: rgba(244,124,66,0.12);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.footer-standort-link {
  color: #fff;
  text-decoration: none;
}
.footer-standort-link:hover { color: var(--orange); }
.footer-standort-card strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
}
.footer-standort-region {
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.4;
}
.footer-standort-addr {
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.4;
}
.footer-standort-tel {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 0.2rem;
  display: block;
  text-decoration: none;
}
.footer-standort-tel:hover { text-decoration: underline; }
.footer-standort-email {
  font-size: 0.78rem;
  color: #fff;
  display: block;
  text-decoration: none;
}
.footer-standort-email:hover { color: var(--orange); text-decoration: underline; }
@media (max-width: 600px) {
  .footer-standorte-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xs);
  }
  .footer-standort-card {
    padding: var(--gap-xs) var(--gap-sm);
  }
}

/* ── CLAUDIA 5: Neue Sektionen (03.04.2026) ──────────── */

/* Branchen-Kacheln */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
  margin-top: var(--gap-sm);
}
.branchen-kachel {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: var(--gap-sm) var(--gap-sm);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-1);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.branchen-kachel:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
}
.branchen-icon { font-size: 2rem; }
.branchen-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--dark); }
@media (max-width: 768px) { .branchen-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .branchen-grid { grid-template-columns: 1fr; } }

/* SEO-Stadttext */
.seo-stadttext {
  max-width: var(--w-prose);
  margin: 0 auto;
}
.seo-stadttext p {
  font-size: 1.1rem; line-height: 1.8; color: var(--gray-4);
}
.seo-stadttext .seo-stadttext-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--gap-sm);
}
.seo-stadttext .seo-stadttext-liste {
  list-style: none;
  padding: 0;
  margin: var(--gap-sm) 0;
}
.seo-stadttext .seo-stadttext-liste li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-4);
  margin-bottom: var(--gap-sm);
}
.seo-stadttext .seo-stadttext-liste li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1.8;
}
.seo-stadttext .seo-stadttext-liste strong {
  color: var(--dark);
  font-weight: 700;
}

/* Ansprechpartner */
.ansprechpartner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap-sm);
  margin-top: var(--gap-sm);
}
.ansprechpartner-card { text-align: center; }
.ansprechpartner-foto {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--orange);
  background: var(--gray-1);
  margin: 0 auto var(--gap-sm);
  overflow: hidden;
}
.ansprechpartner-foto img { width: 100%; height: 100%; object-fit: cover; }
.ansprechpartner-card h4 { font-family: var(--font-heading); font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.ansprechpartner-rolle { font-size: 1.1rem; color: var(--gray-4); margin-bottom: 0.3rem; }
.ansprechpartner-kontakt { font-size: 0.85rem; color: var(--gray-4); }
.ansprechpartner-kontakt a { color: var(--orange); font-weight: 500; }

/* Siegel/Auszeichnungen — Legacy (nicht mehr benutzt, siehe .siegel-cards) */
.siegel-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--gap-lg);
  margin-top: var(--gap-sm);
}
.siegel-grid img {
  height: 80px; width: auto;
  filter: grayscale(20%);
  transition: filter 0.2s;
}
.siegel-grid img:hover { filter: none; }

/* Siegel-Cards — 2 grosse Auszeichnungs-Cards mit Jahres-Pills */
.siegel-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
  margin-top: var(--gap-lg);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.siegel-card {
  background: var(--white);
  border: 1px solid var(--gray-1);
  border-radius: var(--r-md);
  padding: var(--gap-lg) var(--gap-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.siegel-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.siegel-card-logo {
  height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: var(--gap-sm);
}
.siegel-card-logo.placeholder {
  width: 220px;
  background: var(--warm-white);
  border: 2px dashed var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 0.9rem;
}
.siegel-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 var(--gap-sm) 0;
}
.siegel-card-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--gap-sm);
}
.siegel-card-pill {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.siegel-card-text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-4);
  margin: 0;
  max-width: 42ch;
}
.siegel-card-text strong {
  color: var(--orange);
  font-weight: 700;
}
@media (max-width: 860px) {
  .siegel-cards {
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
  }
  .siegel-card-logo { height: 140px; }
  .siegel-card-logo.placeholder { width: 180px; }
}

/* Kununu-Score */
.kununu-score {
  display: inline-flex; align-items: center; gap: var(--gap-sm);
  padding: var(--gap-sm) var(--gap-lg);
  background: var(--warm-white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-1);
  margin-top: var(--gap-sm);
}
.kununu-score-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--orange); }
.kununu-score-stars { color: var(--orange); font-size: 1.1rem; }
.kununu-score-text { font-size: 1.1rem; color: var(--gray-4); }

/* Verwurzelung-Text */
.verwurzelung-text {
  max-width: var(--w-prose);
  margin: 0 auto;
}
.verwurzelung-text p {
  font-size: 1.1rem; line-height: 1.8; color: var(--gray-4);
}
.verwurzelung-text .verwurzelung-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--gap-sm);
}
.verwurzelung-text .verwurzelung-subhead {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: var(--gap-sm) 0 var(--gap-sm) 0;
}
.verwurzelung-text .verwurzelung-liste {
  list-style: none;
  padding: 0;
  margin: var(--gap-sm) 0;
}
.verwurzelung-text .verwurzelung-liste li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-4);
  margin-bottom: var(--gap-sm);
}
.verwurzelung-text .verwurzelung-liste li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1.8;
}
.verwurzelung-text .verwurzelung-liste strong {
  color: var(--dark);
  font-weight: 700;
}
.verwurzelung-text .verwurzelung-ziel {
  background: var(--warm-white);
  border-left: 4px solid var(--orange);
  padding: var(--gap-sm) var(--gap-sm);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--gap-sm) 0;
  font-size: 1.1rem;
  line-height: 1.8;
}
.verwurzelung-text .verwurzelung-ziel strong {
  color: var(--dark);
  display: inline;
}
.verwurzelung-text .verwurzelung-cta {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
  margin-top: var(--gap-sm);
}

/* ════════════════════════════════════════════════════════════
   MOBILE + TABLET OPTIMIERUNG  (18.04.2026, v37)
   ════════════════════════════════════════════════════════════
   Dedizierter Feinschliff fuer Handy + Tablet. KEINE Inhalts-
   aenderungen — nur Layout, Spacing, Typo-Skalierung, sowie
   Schliessen einiger Luecken in der bestehenden Responsive-
   Kette (Nav-Gap 768–1020 px, 4er-Grids auf 320-px-Screens,
   harte Paddings auf kleinen Karten, iOS-Input-Zoom, WhatsApp-
   Abstand usw.).
   Diese Sektion steht BEWUSST am Ende — hier ueberschreiben
   wir sparsam, was oben weiter allgemeiner steht.
   ════════════════════════════════════════════════════════════ */

/* --- 0. Horizontalen Overflow global verhindern --- */
/* Nur auf body — html behaelt overflow:visible damit position:sticky
   in .sub-nav (Unterseiten) nicht bricht. */
body { overflow-x: hidden; max-width: 100%; width: 100%; }
img, video, iframe, embed { max-width: 100%; }
/* Breite Tabellen in Rechtsseiten horizontal scrollbar machen */
.prose table, .section table { display: block; width: 100%; overflow-x: auto; }

/* --- 1. Container enger ab 600 px --- */
@media (max-width: 600px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 400px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
}

/* --- 2. Navigation: Luecke 768–1020 px schliessen --- */
/* Bis zum 15.04. galt: .nav-links display:none ab 1020 px,
   aber .nav-toggle erscheint erst ab 768 px. Zwischen 769 und 1020 px
   war dadurch KEINE Nav sichtbar. Wir ziehen den Hamburger
   hoch, damit die Tablet-Portrait-Laender-Kombi immer eine Nav hat. */
@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .nav-actions .btn:not(.btn-orange) { display: none; }
}

/* Hamburger-Tap-Target auf 44x44 (Apple-Minimum) */
.nav-toggle { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

/* Nav-Hoehe auf Tablet und Handy etwas kompakter */
@media (max-width: 900px) {
  .nav .container { height: 64px; }
  .sub-nav { top: 64px; }
  .nav-mobile { top: 64px; }
  .hero, .bewerber-hero { padding-top: 64px; }
  .page-hero, .standort-hero { padding-top: 64px; }
}

/* Logo-Zeilen auf Handy nicht umbrechen lassen */
@media (max-width: 600px) {
  .nav-logo img { height: 40px !important; }
}

/* --- 3. Hero-Typografie auf Mobile beruhigen --- */
/* Desktop-line-height 1.5 wirkt bei 3-4 Zeilen Umbruch auf Handy
   ueberdehnt. Enger fahren, Typewriter-Reserve verkleinern. */
@media (max-width: 768px) {
  .hero { min-height: 78vh; padding-top: 72px; }
  .hero h1 { line-height: 1.25; font-size: clamp(1.8rem, 6.5vw, 2.4rem); }
  .hero-h1 { min-height: 0; }
  .hero .container { padding: 1.75rem 1rem; }
  .hero-sub { font-size: 1rem; }
}
@media (max-width: 480px) {
  .hero { min-height: 72vh; }
  .hero h1 { font-size: 1.75rem; line-height: 1.2; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; letter-spacing: 0.06em; }
}

/* --- 4. Section-Paddings und Section-Titel auf Mobile --- */
@media (max-width: 600px) {
  .section { padding: 2.25rem 0; }
  .section-title { font-size: clamp(1.35rem, 5.5vw, 1.8rem); line-height: 1.3; }
  .section-sub { font-size: 1rem; line-height: 1.65; }
}

/* --- 5. Stats-Bar auf sehr schmalen Screens --- */
@media (max-width: 480px) {
  .stats-bar { padding: 1.25rem 0; }
  .stats-bar-inner { gap: 0.5rem; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.78rem; line-height: 1.3; }
  .stat-item + .stat-item { padding-left: 0.5rem; padding-top: 0.5rem; }
}
@media (max-width: 360px) {
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.25); padding-left: 0; padding-top: 0.75rem; margin-top: 0.25rem; }
}

/* --- 6. Kunden-Laufband kompakter --- */
@media (max-width: 600px) {
  .logos-track { gap: 1.5rem; }
  .logo-item { min-width: 110px; height: 52px; font-size: 0.92rem; padding: 0.5rem 1rem; }
  .logos-track-wrap::before, .logos-track-wrap::after { width: 40px; }
}

/* --- 7. Grids: weitere Stufen fuer Handy + Tablet --- */
/* Ab 480 px runter: 4er-Grids auf 1-spaltig */
@media (max-width: 480px) {
  .standorte-grid,
  .adressen-grid,
  .footer-standorte-grid { grid-template-columns: 1fr; gap: var(--gap-xs); }
  .bewerber-kacheln-grid { grid-template-columns: 1fr 1fr; }
  .standort-team-grid { grid-template-columns: 1fr; }
}
/* Tablet-Portrait-Bereich (iPad 768 / iPad mini 744 / Galaxy Tab) */
@media (min-width: 601px) and (max-width: 1024px) {
  .bewerber-kacheln-grid { grid-template-columns: repeat(2, 1fr); }
  .standorte-grid { grid-template-columns: repeat(2, 1fr); }
  .adressen-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- 8. Karten mit viel Padding auf Mobile entlasten --- */
@media (max-width: 600px) {
  .contact-form,
  .leistung-card,
  .wt-hero-card,
  .standort-contact-box,
  .initiatif-card { padding: 1.25rem; }
  .benefit-card { padding: 1.25rem 1rem; }
  .benefit-card h3 { font-size: 1rem; }
  .benefit-card p { font-size: 0.95rem; }
  .cta-banner { padding: 2.5rem 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.98rem; }
  .cta-banner .btn-white { padding: 0.8rem 1.75rem; font-size: 0.98rem; }
  .footer-grid { gap: 1rem; padding-bottom: 1.5rem; }
}

/* --- 9. Anfrage- und Beratungsformulare: Inline-Padding zaehmen --- */
@media (max-width: 600px) {
  form[action*="submit"],
  form[action*="amazonaws"] {
    padding: 1.25rem !important;
    border-radius: 12px !important;
  }
  .form-section h2 { font-size: 1.15rem; }
  .form-submit { padding: 0.9rem 1.5rem; font-size: 1rem; }
  .form-input, .form-textarea { padding: 0.65rem 0.9rem; font-size: 16px; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.65rem 0.9rem; font-size: 16px; }
}

/* --- 10. Personalanfrage-Branchenbuttons (index.html: Inline-Grid) --- */
/* Der 3x2-Grid per inline-style laesst sich mit Attribute-Selektor treffen */
@media (max-width: 768px) {
  .initiatif-section div[style*="grid-template-columns:repeat(3"],
  .initiatif-section div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }
}
@media (max-width: 420px) {
  .initiatif-section div[style*="grid-template-columns:repeat(3"],
  .initiatif-section div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  .initiatif-section .btn[style*="background:rgba(255,255,255,0.1)"] {
    font-size: 0.95rem !important;
    padding: 0.9rem 1rem !important;
  }
}

/* --- 11. Job-Cards (Jobboerse + Standortseiten) auf Handy --- */
@media (max-width: 600px) {
  .job-list-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
  }
  .job-list-card-title { white-space: normal; font-size: 1rem; }
  .job-list-card-right {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }
  .job-list-salary { font-size: 1rem; margin-bottom: 0; }
  .job-list-distance { margin-bottom: 0; }
  .job-list-apply-btn { margin-left: auto; }
}

/* --- 12. Unterseiten-Heros kuerzer auf Mobile --- */
@media (max-width: 600px) {
  /* Bewerber-Hero: Mobile-Stacked-Layout (Bild oben, Text darunter) */
  .bewerber-hero {
    display: block;
    min-height: auto;
    padding-top: 64px;          /* Platz fuer Sticky-Nav */
    background: #fff;
    overflow: visible;
  }
  .bewerber-hero-bg,
  .bewerber-hero-overlay {
    display: none !important;   /* kein Background + Overlay auf Mobile */
  }
  .bewerber-hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;               /* natuerliche Proportion */
  }
  .bewerber-hero .container {
    padding: 1.5rem 1rem;
    position: static;
  }
  .bewerber-hero h1 {
    color: var(--dark) !important;
    font-size: clamp(1.75rem, 7vw, 2.3rem);
    line-height: 1.2;
  }
  .bewerber-hero h1 em { color: var(--orange) !important; }
  .bewerber-hero p { color: var(--dark) !important; }
  .bewerber-hero .standort-hero-breadcrumb,
  .bewerber-hero .standort-hero-breadcrumb a {
    color: var(--dark) !important;
  }

  /* Standort-Hero-v2 (Stadtbild-Streifen): Bild bleibt, aber natuerliche Hoehe */
  .standort-hero-v2 {
    background: #fff !important;
    height: auto !important;
  }
  .standort-hero-v2-img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  /* page-hero--img (jobboerse, ueber-uns): Background aus, Bild oben, Text dunkel.
     Root-Cause 19.04.: .page-hero ist display:flex + align-items:center →
     auf Mobile standen Bild und Container nebeneinander statt untereinander,
     dadurch kleines Bild mit viel Weissraum. Fix: display:block erzwingen.
     Zusatz 19.04.: ::before Dark-Overlay auf Mobile ausschalten, weil
     der Background weg ist und sonst ein grauer Schleier uebrig blieb. */
  .page-hero--img {
    display: block !important;
    background-image: none !important;
    background-color: #fff !important;
    min-height: 0 !important;
    height: auto !important;
    padding-top: 64px;
    padding-bottom: 1.25rem;
  }
  .page-hero--img::before,
  .page-hero::before {
    display: none !important;
  }
  .page-hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .page-hero--img h1,
  .page-hero--img .breadcrumb,
  .page-hero--img .breadcrumb a,
  .page-hero--img p {
    color: var(--dark) !important;
    text-shadow: none !important;
  }
  .page-hero--img .breadcrumb-sep {
    color: var(--gray-3) !important;
  }

  /* Homepage .hero: Bild oben, Suche + Inhalt darunter */
  .hero {
    display: block !important;
    min-height: auto !important;
    padding-top: 64px;
    background: #fff !important;
    align-items: initial !important;
  }
  .hero-bg,
  .hero-overlay {
    display: none !important;
  }
  .hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero .container {
    position: static !important;
    padding: 1.5rem 1rem !important;
  }
  .hero-content {
    max-width: 100% !important;
  }
  /* Texte dunkel statt weiss */
  .hero h1,
  .hero-h1 {
    color: var(--dark) !important;
    min-height: auto !important;
    line-height: 1.25 !important;
  }
  .hero h1 em,
  .typewriter-wrap em { color: var(--orange) !important; }
  .hero-sub,
  .hero p,
  .hero-trust-item {
    color: var(--dark) !important;
  }
  .hero-badge {
    background: rgba(244,124,66,0.12) !important;
    border-color: var(--orange) !important;
    color: var(--orange) !important;
  }
  /* Suchfeld: sichtbar auf weissem Grund */
  .hero-search {
    background: #fff !important;
    border: 2px solid var(--orange) !important;
    backdrop-filter: none !important;
  }
  .hero-search-input { color: var(--dark) !important; }
  .hero-search-input input,
  .hero-search-input input::placeholder {
    color: var(--dark) !important;
  }
  .hero-search-input input::placeholder {
    color: var(--gray-3) !important;
    opacity: 1;
  }

  /* Standort- und Page-Heros (ohne Bild): Layout-Feinheiten bleiben */
  .standort-hero { height: auto; min-height: 260px; padding: 64px 0 1.5rem; }
  .standort-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); line-height: 1.2; }
  .standort-hero-meta-item { font-size: 0.95rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 6vw, 2.3rem); line-height: 1.2; }
  .page-hero--tall { min-height: 42vh; }
}

/* --- 13. FAQ-Akkordeon: Polster reduzieren --- */
@media (max-width: 600px) {
  .faq-question { padding: 1.1rem 1.25rem; font-size: 1.02rem; gap: 0.75rem; }
  .faq-question::after { font-size: 1.4rem; }
  .faq-item.open .faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.98rem; }
}

/* --- 14. Recently-Viewed: Scroll-Snap + bessere Touch-Breiten --- */
@media (max-width: 600px) {
  .recently-viewed-list {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
  .recently-viewed-card {
    scroll-snap-align: start;
    min-width: 72vw;
    max-width: 82vw;
  }
}

/* --- 15. Siegel / Maps / Ansprechpartner --- */
@media (max-width: 600px) {
  .standort-maps-wrap { height: 260px; }
  .siegel-card-logo { height: 110px; }
  .siegel-card { padding: 1.5rem 1rem; }
  .siegel-card h3 { font-size: 1.2rem; }
  .ansprechpartner-foto { width: 96px; height: 96px; }
  .kununu-score { padding: 0.85rem 1.25rem; flex-wrap: wrap; }
  .kununu-score-number { font-size: 2rem; }
}

/* --- 16. WhatsApp-Button: Abstand runter, Overlay-Konflikte vermeiden --- */
@media (max-width: 480px) {
  .whatsapp-btn { bottom: 16px; right: 16px; }
}

/* --- 17. iOS: Input-Mindestschrift 16 px (kein Auto-Zoom beim Fokus) --- */
/* NUR auf Tablet/Mobile, damit Desktop-Schriftgroessen unveraendert bleiben.
   !important wegen:
   a) Inline-<style>-Duplikate der .standort-jobsuche-*-Klassen in den
      Standortseiten, die nach style.css kommen und sonst gewinnen.
   b) style="font-size:0.95rem" Inline-Attribute auf der
      benefits_sonstige-Textarea (anfrage-*.html) und auf dem
      Newsletter-Input (ratgeber.html) — externes !important schlaegt
      Inline-Styles ohne !important. */
@media (max-width: 1024px) {
  input, select, textarea { font-size: 16px !important; }
  .standort-jobsuche-input,
  .standort-jobsuche-select { font-size: 16px !important; }
  /* Hero-Input darf optisch groesser bleiben — hat ohnehin schon 1.1rem */
  .hero-search-input input { font-size: 1.1rem !important; }
}

/* --- 18. Sub-Nav auf Mobile: scrollbar weicher --- */
@media (max-width: 768px) {
  .sub-nav-inner { -webkit-overflow-scrolling: touch; }
  .sub-nav-inner a { padding: 0.85rem 1rem; font-size: 0.82rem; }
}

/* --- 19. Hero-Suche (2-Feld): Abstaende beruhigen auf Mobile --- */
@media (max-width: 480px) {
  .hero-search-two + .hero-search-btn { padding: 0.85rem 1.25rem; font-size: 1rem; }
  .hero-search-input { padding: 0.95rem 1rem; }
  .hero-search-input input { font-size: 1rem; }
}

/* --- 20. Dropdown-Nav auf Mobile sauber geschlossen halten --- */
@media (max-width: 1020px) {
  .nav-links, .nav-dropdown-menu { display: none !important; }
}

/* --- 21. Footer-Standortkacheln auf sehr schmalen Screens luftiger --- */
@media (max-width: 360px) {
  .footer-standort-card { padding: 0.75rem 0.9rem; }
  .footer-standort-card strong { font-size: 0.98rem; }
  .footer-standort-region,
  .footer-standort-addr,
  .footer-standort-email { font-size: 0.72rem; line-height: 1.35; }
}

/* --- 22. Typografie-Finetuning Testimonials und Laufband --- */
@media (max-width: 600px) {
  .testimonial-card { padding: 1rem; }
  .testimonial-card blockquote { font-size: 0.95rem; }
}

/* --- 23. Breite Kenn-Bloecke (Spalten-Bruch bei schmalem Viewport) --- */
@media (max-width: 480px) {
  .standort-hero-grid { gap: var(--gap-sm); }
  .standort-hero-meta { gap: 0.5rem; }
  .kontakt-item { gap: 0.75rem; margin-bottom: 1rem; }
  .kontakt-item-icon { width: 36px; height: 36px; font-size: 1rem; }
}

/* --- 24. Anfrage-Checkbox-Labels (Personalloesung-Chips) auf Mobile --- */
@media (max-width: 600px) {
  .form-check { font-size: 0.88rem !important; padding: 0.45rem 0.85rem !important; }
}

/* --- 25. Feineres Branchen-Grid (Stadt-Seiten) --- */
@media (max-width: 380px) {
  .branchen-grid { grid-template-columns: 1fr; }
  .branchen-kachel { flex-direction: row; justify-content: flex-start; text-align: left; }
  .branchen-icon { font-size: 1.5rem; }
}

/* --- 26. Kostenkalkulations-Diagramm (unternehmen.html) --- */
/* Root-Cause: Inline grid-template-columns:1fr 1fr + min-height:380px +
   align-items:end liess auf Mobile zwei duenne Saeulen mit halber Seite
   weisser Leere stehen. Mobile/Tablet: einspaltig, Hoehe natuerlich. */
@media (max-width: 1020px) {
  .cost-chart {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    align-items: stretch !important;
    gap: var(--gap-sm) !important;
  }
  .cost-chart > div {
    height: auto !important;
    justify-content: stretch !important;
  }
  .cost-chart-labels {
    grid-template-columns: 1fr !important;
    gap: var(--gap-xs) !important;
  }
  /* Legende: Mobile/Tablet untereinander, nicht 3-spaltig */
  .cost-legend {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
    padding: 0 var(--gap-xs);
  }
  /* Inline-Grids (repeat(3,1fr) / repeat(4,1fr) / 1fr 1fr) auf Mobile 1-spaltig */
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- 27. Tap-Target-Minimum 44 px (Apple HIG) auf Mobile/Tablet --- */
/* Root-Cause: Mobile-Test am 18.04. meldete ~15 zu kleine Tap-Targets
   pro Seite — faktisch immer die Footer-Telefonnummern, E-Mail-Adressen,
   Buero-Ueberschriften und das Theme-Toggle (alle 21–29 px hoch).
   Fix: Diese Elemente bekommen auf Mobile min-height 44 px und werden
   als inline-flex zentriert, damit Text/Icons optisch nicht verrutschen. */
@media (max-width: 1024px) {
  /* Theme-Toggle in der Top-Bar */
  .theme-toggle,
  .nav-theme-toggle,
  button[aria-label*="Theme" i],
  button[aria-label*="Mode" i] {
    min-width: 44px; min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  /* Alle Footer-Links (Standort-Kacheln, Wissenswertes, Rechtliches,
     Telefon/Mail) bekommen Mindest-Tap-Hoehe. Bewusst breit gefasst,
     weil die Mobile-Tests auf viele 21–29 px hohe Zeilen hingewiesen
     haben — das Tap-Ziel ist aber immer der <a>. */
  .footer a,
  .footer-standort-card a,
  .footer-standort-link {
    min-height: 44px;
    display: flex; align-items: center;
    padding: 0.4rem 0;
    line-height: 1.35;
  }
  /* Innerhalb verlinkter Buero-Ueberschriften soll das <strong> den
     Container nicht nochmal wachsen lassen. */
  .footer-standort-card a strong,
  .footer-standort-link strong {
    line-height: 1.25;
  }
  /* Footer-Listen: Zeilenabstand leicht hoch fuer natuerliches Tap-Raster */
  .footer ul li { padding: 0.15rem 0; }
  /* Globale tel:/mailto:-Links (auch ausserhalb Footer, z.B. index-Personalanfrage-Block) */
  a[href^="tel:"],
  a[href^="mailto:"] {
    min-height: 44px;
    display: inline-flex; align-items: center;
    padding: 0.2rem 0;
  }
  /* Generische CTAs: nur Mindest-Tap-Hoehe, Layout nicht anfassen.
     Bewusst KEIN display-Override — Buttons haben im Projekt oft
     spezifische display:flex/block-Definitionen, die wir nicht
     umschiessen wollen. */
  .btn { min-height: 44px; }
  /* Breadcrumb-Links (Home, Fuer Unternehmen, …) */
  .breadcrumb a,
  .standort-hero-breadcrumb a {
    min-height: 44px;
    display: inline-flex; align-items: center;
    padding: 0.15rem 0.3rem;
  }
  /* Rechtsseiten: URL-Links im Fliesstext bekommen etwas mehr Luft
     (ueber echte 44 px wuerde die Satztypografie zerreissen). */
  .prose a,
  .legal-content a {
    line-height: 1.8;
    padding: 0.1rem 0;
  }
}

/* ────────────────────────────────────────────────────────────
   28. ueber-uns.html Mobile (19.04.):
       Geschaeftsleitung-Namen unter dem Gruppenfoto standen in
       einem inline-Flex-Container ohne flex-wrap — die 3 Spalten
       sprengten die Viewport-Breite, Seite bekam overflow-x,
       Bild und Text wirkten rechts angeschnitten.
       Fix via Attribut-Selektor (kein HTML-Touch).
       Mobile: untereinander, auf dem Foto von oben→unten =
       links→rechts, daher keine "v. l."-Beschriftung nötig.
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  [style*="display:flex"][style*="gap:2rem"][style*="justify-content:center"] {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
  }
  [style*="display:flex"][style*="gap:2rem"][style*="justify-content:center"] > div {
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════════
   ENDE  Mobile/Tablet-Optimierung v39
   ════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   Hero-CTA-Buttons auf Mobile: gleiche Breite (100%)
   Greift für .hero-cta-row auf Seiten wie fuer-bewerber.html
   ────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-cta-row .btn { flex: 1 1 100%; justify-content: center; text-align: center; }
}

/* ──────────────────────────────────────────────────────────────
   Initiativ-Buttons (WhatsApp/Anrufen/E-Mail) auf Standort-Seiten
   Sektion "Bewerben Sie sich initiativ" – orange-pale Hintergrund
   Auf Mobile wirkten die 3 Pills mit Box-Shadow + Pulse-Ring zu
   nah am Container-Rand und wurden visuell "angeschnitten" (26.04.)
   Fix: Stack vertikal, jeder Button auf max 320px gleichlang,
   Container bekommt zusätzliche horizontale Luft.
   Kein HTML-Touch — Attribut-Selektor auf den vorhandenen
   Inline-Style des Button-Wrappers in section[style*="orange-pale"].
   ────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  section[style*="orange-pale"] > .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  section[style*="orange-pale"] [style*="display:flex"][style*="justify-content:center"][style*="flex-wrap:wrap"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.5rem 0.25rem 0.25rem;
  }
  section[style*="orange-pale"] [style*="display:flex"][style*="justify-content:center"][style*="flex-wrap:wrap"] .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ═════════════════════════════════════════════════════════════════
   MIKRO-ENTERTAINMENT (effects.js) — siehe js/effects.js
   ═════════════════════════════════════════════════════════════════ */

/* Highlight-Stift unter "Job" */
.highlight-word {
  position: relative;
  display: inline-block;
  font-style: normal;
}
.highlight-word::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.05em;
  height: 0.35em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'><path d='M2,8 Q25,2 50,7 T98,5' stroke='%23f47c42' stroke-width='3.5' fill='none' stroke-linecap='round' opacity='0.85'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  animation: highlight-draw 1.2s 0.4s cubic-bezier(0.65, 0, 0.35, 1) both;
  pointer-events: none;
}
@keyframes highlight-draw {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* Hover-Magie auf runden Foto-Karten (.benefit-photo) */
.benefit-photo {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  position: relative;
}
.benefit-photo:hover {
  transform: scale(1.06) rotate(-1.5deg);
  box-shadow: 0 0 0 3px var(--orange), 0 12px 32px rgba(20, 10, 5, 0.22);
}

/* Live-Ticker (Toast unten links) */
.live-ticker {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  max-width: 360px;
  background: rgba(20, 10, 5, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.1rem 0.7rem 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s, box-shadow 0.2s;
  z-index: 9000;
  backdrop-filter: blur(8px);
  text-decoration: none;
  cursor: pointer;
}
.live-ticker:hover {
  box-shadow: 0 12px 36px rgba(244, 124, 66, 0.45);
}
.live-ticker.show {
  transform: translateX(0);
  opacity: 1;
}
.live-ticker-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.live-ticker-text { flex: 1; line-height: 1.3; }
.live-ticker-text em { font-style: normal; font-weight: 600; color: var(--orange-light); }
.live-ticker-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.live-ticker-close:hover { color: #fff; }
@media (max-width: 600px) {
  .live-ticker { left: 0.5rem; right: 0.5rem; max-width: none; font-size: 0.82rem; }
}

/* Easter Egg — winkende Hand (oben rechts, unter Navigation) */
.easter-wave {
  position: fixed;
  top: 5.5rem;
  right: -300px;
  z-index: 9999;
  animation: wave-peek 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  pointer-events: none;
}
.easter-wave.exit {
  animation: wave-leave 0.6s cubic-bezier(0.5, 0, 0.8, 0.4) forwards;
}
.easter-wave-bubble {
  background: var(--orange);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem 0.3rem 1.5rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: 0 12px 36px rgba(20, 10, 5, 0.35);
  animation: wave-rotate 1.6s ease-in-out 0.6s infinite;
  transform-origin: top right;
}
.easter-wave-bubble small {
  font-size: 0.8rem;
  font-weight: 400;
  display: block;
  margin-top: 0.3rem;
  opacity: 0.95;
}
@keyframes wave-peek {
  from { right: -300px; }
  to   { right: 1.5rem; }
}
@keyframes wave-leave {
  from { right: 1.5rem; }
  to   { right: -300px; }
}
@keyframes wave-rotate {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30%, 50% { transform: rotate(8deg); }
  20%, 40% { transform: rotate(-6deg); }
}
@media (max-width: 600px) {
  .easter-wave { top: 4.5rem; }
  .easter-wave-bubble { font-size: 1.1rem; padding: 0.75rem 1.1rem; }
  .easter-wave-bubble small { font-size: 0.7rem; }
}

/* ── Standortseiten: Buttons auf iPhone nicht abgeschnitten ─────────
   Auf iPhone (≤ 600px) werden die 3 CTAs (Route planen / Anrufen / E-Mail)
   am Maps-Block randbuendig oder abgeschnitten dargestellt, weil sie
   nowrap sind und die Telefonnummer breit baut. Loesung: gestapelt,
   jede in voller Breite. Auf Tablet/Desktop bleibt das inline-Flex-
   Layout unveraendert.                                       (26.04.) */
.standort-cta-row { gap: 0.6rem; }
@media (max-width: 600px) {
  .standort-cta-row {
    flex-direction: column !important;
  }
  .standort-cta-row .btn,
  .standort-cta-row .btn-orange,
  .standort-cta-row .btn-outline-dark {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    white-space: normal;
  }
}
